From b7520abb1b2b2a467652aa43cf21f451c4df9ab4 Mon Sep 17 00:00:00 2001 From: yoyosource Date: Sat, 26 Jun 2021 16:49:05 +0200 Subject: [PATCH] Fix HellsBells distribution --- .../src/de/steamwar/fightsystem/event/HellsBells.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/FightSystem_Main/src/de/steamwar/fightsystem/event/HellsBells.java b/FightSystem_Main/src/de/steamwar/fightsystem/event/HellsBells.java index 82d93bd..578819f 100644 --- a/FightSystem_Main/src/de/steamwar/fightsystem/event/HellsBells.java +++ b/FightSystem_Main/src/de/steamwar/fightsystem/event/HellsBells.java @@ -43,8 +43,8 @@ public class HellsBells { public static final Random random = new Random(); private final World world = Bukkit.getWorlds().get(0); - private final int xLength = Config.RedPasteRegion.getMaxX() - Config.RedPasteRegion.getMinX(); - private final int zLength = Config.RedPasteRegion.getMaxZ() - Config.RedPasteRegion.getMinZ(); + private final int xLength = Config.RedExtendRegion.getMaxX() - Config.RedExtendRegion.getMinX(); + private final int zLength = Config.RedExtendRegion.getMaxZ() - Config.RedExtendRegion.getMinZ(); private State current = State.PRE; private int currentDrops = 0; private HellsBellsCountdown currentCountdown;