Fix 60+ resist caps

This commit is contained in:
Michael Cook (mackal) 2016-01-05 02:54:09 -05:00
parent 9174ccd635
commit 20f5c42c3e

View File

@ -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;
}