1
0
mirror of https://github.com/essentials/Essentials.git synced 2025-08-19 13:01:20 +02:00

Missing return in /time reset command

This commit is contained in:
snowleo
2011-07-18 04:42:10 +02:00
parent e37db99c56
commit 277c623a77

View File

@@ -106,6 +106,7 @@ public class Commandtime extends EssentialsCommand
if ("reset".equalsIgnoreCase(timeString))
{
user.resetPlayerTime();
return;
}
throw new Exception(Util.i18n("onlyDayNight"));
}