From a288472af7b7bb3e409fc4d0d714bec546e0b59d Mon Sep 17 00:00:00 2001 From: UnknownShadow200 Date: Sun, 17 Sep 2017 23:40:49 +1000 Subject: [PATCH] Fix /os map loaddelay displaying wrong max value. --- MCGalaxy/Levels/LevelOptions.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MCGalaxy/Levels/LevelOptions.cs b/MCGalaxy/Levels/LevelOptions.cs index 5db6454f2..1f9feca3d 100644 --- a/MCGalaxy/Levels/LevelOptions.cs +++ b/MCGalaxy/Levels/LevelOptions.cs @@ -149,7 +149,7 @@ namespace MCGalaxy { Player.Message(p, "Load delay cannot go below 0 milliseconds. (default is 0)"); return false; } if (raw > 2000) { - Player.Message(p, "Load delay cannot go above 3000 milliseconds."); return false; + Player.Message(p, "Load delay cannot go above 2000 milliseconds."); return false; } return true; }