From c27a8b03ad47f20ec9f539914da61439705402ce Mon Sep 17 00:00:00 2001 From: Fabrizio La Rosa Date: Tue, 16 Jun 2020 19:42:25 +0200 Subject: [PATCH] Some comments --- src/main/java/com/songoda/skyblock/listeners/Block.java | 1 + src/main/resources/config.yml | 6 ++++++ 2 files changed, 7 insertions(+) diff --git a/src/main/java/com/songoda/skyblock/listeners/Block.java b/src/main/java/com/songoda/skyblock/listeners/Block.java index f5dab715..54c34958 100644 --- a/src/main/java/com/songoda/skyblock/listeners/Block.java +++ b/src/main/java/com/songoda/skyblock/listeners/Block.java @@ -728,6 +728,7 @@ public class Block implements Listener { // placed. // This shouldn't cause any issues besides the task number being increased // insanely fast. + // TODO Do this only in 1.8.8 Bukkit.getScheduler().runTask(skyblock, () -> { org.bukkit.block.Block block = location.getBlock(); CompatibleMaterial material = CompatibleMaterial.getMaterial(block); diff --git a/src/main/resources/config.yml b/src/main/resources/config.yml index e68afb67..ca6c6fa2 100644 --- a/src/main/resources/config.yml +++ b/src/main/resources/config.yml @@ -337,11 +337,16 @@ Island: # Should slime split bypass limits.yml AllowSlimeSplit: true Nether: + # Allow placing water in the Nether AllowNetherWater: false + # Water disappear when a nether mob walks into it WaterDisappearWithNetherMobs: false + # Block water from flowing near nether mobs EXPERIMENTAL! WaterDoNotFlowNearNetherMobs: false + # Make blaze immune from water in the Nether BlazeImmuneToWaterInNether: false Restrict: + # Blocks that can be placed only if the island has nether unlocked NetherBlocks: NETHERRACK: true SOUL_SAND: true @@ -364,6 +369,7 @@ Island: NETHER_WART_BLOCK: true WITHER_SKELETON_SKULL: true WITHER_ROSE: true + # Blocks that can be placed only if the island has The End unlocked EndBlocks: END_STONE: true END_STONE_BRICKS: true