diff --git a/zone/client_mods.cpp b/zone/client_mods.cpp index 78346fb43..35bac1849 100644 --- a/zone/client_mods.cpp +++ b/zone/client_mods.cpp @@ -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; }