From edb7ea4ee30f7bc43a586b7255d5520ca1953936 Mon Sep 17 00:00:00 2001 From: KimLS Date: Sat, 11 Sep 2021 21:21:50 -0700 Subject: [PATCH] Fix for build --- zone/client_mods.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; }