RangeManager: Fix off-by-one bounds check in GetLosRevealWholeMap()

This commit is contained in:
Fabio Pedretti
2026-08-23 17:32:06 +02:00
committed by Ralph Sennhauser
parent 3836f4ea8e
commit 4d721fdab2
@@ -2140,7 +2140,7 @@ public:
if (m_LosRevealWholeMapForAll || player == -1)
return true;
ENSURE(player >= 0 && player <= MAX_LOS_PLAYER_ID+1);
ENSURE(player >= 0 && player < MAX_LOS_PLAYER_ID+1);
if (m_LosRevealWholeMap[player])
return true;