diff --git a/Plugins/mineplex-game-gemhunters/src/mineplex/gemhunters/supplydrop/SupplyDropModule.java b/Plugins/mineplex-game-gemhunters/src/mineplex/gemhunters/supplydrop/SupplyDropModule.java index 60c07c11a..ff2b59a26 100644 --- a/Plugins/mineplex-game-gemhunters/src/mineplex/gemhunters/supplydrop/SupplyDropModule.java +++ b/Plugins/mineplex-game-gemhunters/src/mineplex/gemhunters/supplydrop/SupplyDropModule.java @@ -36,7 +36,7 @@ import mineplex.gemhunters.world.WorldDataModule; public class SupplyDropModule extends MiniPlugin { - private static final long SEQUENCE_TIMER = TimeUnit.MINUTES.toMillis(15); + private static final long SEQUENCE_TIMER = TimeUnit.MINUTES.toMillis(20); private static final String CHEST_COLOUR = "RED"; private static final String LOCATION_DATA = "SUPPLY_DROP"; @@ -78,7 +78,7 @@ public class SupplyDropModule extends MiniPlugin { return; } - + if (isActive()) { if (_current.advancePath()) @@ -106,7 +106,7 @@ public class SupplyDropModule extends MiniPlugin @EventHandler public void fallingBlockChange(EntityChangeBlockEvent event) { - if (event.getEntity() instanceof FallingBlock && event.getTo() == Material.WOOD && isActive() && UtilMath.offsetSquared(_current.getChestLocation(), event.getBlock().getLocation()) < 4) + if (event.getEntity() instanceof FallingBlock && event.getTo() == Material.WOOD && isActive() && UtilMath.offsetSquared(_current.getChestLocation(), event.getBlock().getLocation()) < 16) { Block block = event.getBlock();