mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-16 07:30:42 +01:00
Core/MapManager: Fix logic in SetMapUpdateInterval()
This commit is contained in:
@@ -71,7 +71,7 @@ class MapManager
|
||||
|
||||
void SetMapUpdateInterval(uint32 t)
|
||||
{
|
||||
if (t > MIN_MAP_UPDATE_DELAY)
|
||||
if (t < MIN_MAP_UPDATE_DELAY)
|
||||
t = MIN_MAP_UPDATE_DELAY;
|
||||
|
||||
i_timer.SetInterval(t);
|
||||
|
||||
Reference in New Issue
Block a user