From d0a5d04c4c8f17ecd0ba6efaa114da051d303155 Mon Sep 17 00:00:00 2001 From: Gosha <284210+Lordron@users.noreply.github.com> Date: Wed, 14 Sep 2022 17:08:02 +0300 Subject: Core/Battlegrounds: Corrected unit of PLAYER_POSITION_UPDATE_INTERVAL, should be milliseconds not seconds (#28247) --- src/server/game/Battlegrounds/Battleground.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/server/game/Battlegrounds/Battleground.h b/src/server/game/Battlegrounds/Battleground.h index a065d49462f..8096026b840 100644 --- a/src/server/game/Battlegrounds/Battleground.h +++ b/src/server/game/Battlegrounds/Battleground.h @@ -129,7 +129,7 @@ enum BattlegroundTimeIntervals BUFF_RESPAWN_TIME = 180, // secs BATTLEGROUND_COUNTDOWN_MAX = 120, // secs ARENA_COUNTDOWN_MAX = 60, // secs - PLAYER_POSITION_UPDATE_INTERVAL = 5 // secs + PLAYER_POSITION_UPDATE_INTERVAL = 5000, // ms }; enum BattlegroundStartTimeIntervals -- cgit v1.2.3