Fix for build

This commit is contained in:
KimLS 2021-09-11 21:21:50 -07:00
parent 66cf4b546c
commit edb7ea4ee3

View File

@ -340,7 +340,7 @@ int32 Client::CalcMaxHP()
}
}
this->max_hp = std::min(max_hp, 2147483647LL);
this->max_hp = std::min(max_hp, (int64)2147483647);
return this->max_hp;
}