diff --git a/src/main/java/world/bentobox/caveblock/listeners/CustomHeightLimitations.java b/src/main/java/world/bentobox/caveblock/listeners/CustomHeightLimitations.java index b26e14b..c9d60b3 100644 --- a/src/main/java/world/bentobox/caveblock/listeners/CustomHeightLimitations.java +++ b/src/main/java/world/bentobox/caveblock/listeners/CustomHeightLimitations.java @@ -53,7 +53,7 @@ public class CustomHeightLimitations implements Listener // Prevent to get over world height if (nextY >= this.worldHeight) { - User.getInstance(player).sendMessage("caveblock.cave-limit-reached"); + User.getInstance(player).sendMessage("caveblock.general.errors.cave-limit-reached"); event.setCancelled(true); } }