diff --git a/src/game/Wintergrasp.cpp b/src/game/Wintergrasp.cpp index 5a3157028e3..315e0b6e0ec 100644 --- a/src/game/Wintergrasp.cpp +++ b/src/game/Wintergrasp.cpp @@ -1255,9 +1255,9 @@ void OPvPWintergrasp::UpdateTenacityStack() if (allianceNum && hordeNum) { if (allianceNum < hordeNum) - newStack = int32((hordeNum / (float)allianceNum - 1)*4); // positive, should cast on alliance + newStack = int32(((float)hordeNum / (float)allianceNum - 1)*4); // positive, should cast on alliance else if (allianceNum > hordeNum) - newStack = int32((1 - allianceNum / (float)hordeNum)*4); // negative, should cast on horde + newStack = int32((1 - (float)allianceNum / (float)hordeNum)*4); // negative, should cast on horde } if (newStack == m_tenacityStack)