diff --git a/Plugins/Mineplex.Hub/src/mineplex/hub/modules/WorldManager.java b/Plugins/Mineplex.Hub/src/mineplex/hub/modules/WorldManager.java index 6ed66f667..091d1d488 100644 --- a/Plugins/Mineplex.Hub/src/mineplex/hub/modules/WorldManager.java +++ b/Plugins/Mineplex.Hub/src/mineplex/hub/modules/WorldManager.java @@ -199,35 +199,12 @@ public class WorldManager extends MiniPlugin World world = UtilWorld.getWorld("world"); - if (Manager.Mode.equals("Halloween")) world.setTime(16000); - else world.setTime(6000); - - - if (Manager.Mode.equals("Christmas")) - { - if (_christmasSnow) - { - world.setStorm(true); - - if (UtilTime.elapsed(_christSnowTime, 60000)) - { - _christSnowTime = System.currentTimeMillis(); - _christmasSnow = false; - } - } - else - { - world.setStorm(false); - - if (UtilTime.elapsed(_christSnowTime, 120000)) - { - _christSnowTime = System.currentTimeMillis(); - _christmasSnow = true; - } - } - - } - else world.setStorm(false); + if (Manager.Mode.equals("Halloween")) + world.setTime(16000); + else + world.setTime(6000); + + world.setStorm(false); } @EventHandler