mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-12 05:21:29 +00:00
Fix 60+ resist caps
This commit is contained in:
parent
9174ccd635
commit
20f5c42c3e
@ -58,8 +58,8 @@ int32 Client::GetMaxResist() const
|
||||
{
|
||||
int level = GetLevel();
|
||||
int32 base = 500;
|
||||
if (level > 60) {
|
||||
base += ((level - 60) * 5);
|
||||
if (level > 65) {
|
||||
base += ((level - 65) * 5);
|
||||
}
|
||||
return base;
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user