Core/MapManager: Fix logic in SetMapUpdateInterval()

This commit is contained in:
Chaplain
2012-05-21 13:28:37 +03:00
parent 69a4ac2209
commit 4e9de61e97

View File

@@ -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);