From 5fc52a145cb4caacfd1f579f9c5eac797822fac8 Mon Sep 17 00:00:00 2001 From: Simon Date: Mon, 11 May 2020 20:15:51 +0200 Subject: [PATCH] feat: change gamerules as discuessed in meeting --- varo/src/main/java/de/cliffbreak/varo/uitls/VaroUtils.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/varo/src/main/java/de/cliffbreak/varo/uitls/VaroUtils.java b/varo/src/main/java/de/cliffbreak/varo/uitls/VaroUtils.java index 594e852..872b9ef 100644 --- a/varo/src/main/java/de/cliffbreak/varo/uitls/VaroUtils.java +++ b/varo/src/main/java/de/cliffbreak/varo/uitls/VaroUtils.java @@ -26,7 +26,7 @@ public class VaroUtils { world.setGameRule(GameRule.ANNOUNCE_ADVANCEMENTS, false); world.setGameRule(GameRule.COMMAND_BLOCK_OUTPUT, true); world.setGameRule(GameRule.DISABLE_ELYTRA_MOVEMENT_CHECK, false); - world.setGameRule(GameRule.DISABLE_RAIDS, false); + world.setGameRule(GameRule.DISABLE_RAIDS, true); world.setGameRule(GameRule.DO_DAYLIGHT_CYCLE, true); world.setGameRule(GameRule.DO_ENTITY_DROPS, true); world.setGameRule(GameRule.DO_FIRE_TICK, true); @@ -35,7 +35,7 @@ public class VaroUtils { world.setGameRule(GameRule.DO_LIMITED_CRAFTING, false); world.setGameRule(GameRule.DO_MOB_LOOT, true); world.setGameRule(GameRule.DO_MOB_SPAWNING, true); - world.setGameRule(GameRule.DO_PATROL_SPAWNING, true); + world.setGameRule(GameRule.DO_PATROL_SPAWNING, false); world.setGameRule(GameRule.DO_TILE_DROPS, true); world.setGameRule(GameRule.DO_TRADER_SPAWNING, false); world.setGameRule(GameRule.DO_WEATHER_CYCLE, true);