Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/com/codisimus/plugins/phatloots/PhatLootChest.java
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ private PhatLootChest(String world, int x, int y, int z) {
World w = Bukkit.getWorld(world);
if (w == null) { //The world is not currently loaded
PhatLoots.logger.warning("The world '" + world + "' is not currently loaded, all linked chests in this world are being unlinked.");
PhatLoots.logger.warning("THIS CHEST UNLINKING IS PERMANANT IF YOU LINK/UNLINK ANY OTHER CHESTS IN THIS PHATLOOT!");
PhatLoots.logger.warning("THIS CHEST UNLINKING IS PERMANANT IF YOU LINK/UNLINK ANY OTHER CHESTS IN THIS PHATLOOT! (" + this.chestName + ")");
} else {
Block block = w.getBlockAt(x, y, z);
switch (block.getType()) {
Expand Down