From 92178ee696092b75f6d179d75cc1b37d1d020baa Mon Sep 17 00:00:00 2001 From: boy0001 Date: Sun, 19 Oct 2014 22:45:14 +1100 Subject: [PATCH] This should be a debug setting. --- .../src/com/intellectualcrafters/plot/database/DBFunc.java | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/PlotSquared/src/com/intellectualcrafters/plot/database/DBFunc.java b/PlotSquared/src/com/intellectualcrafters/plot/database/DBFunc.java index ee537e3ca..5d32e0588 100644 --- a/PlotSquared/src/com/intellectualcrafters/plot/database/DBFunc.java +++ b/PlotSquared/src/com/intellectualcrafters/plot/database/DBFunc.java @@ -485,8 +485,9 @@ public class DBFunc { plots.put(worldname, map); } else { - PlotMain.sendConsoleSenderMessage("&cPlot '" + p.id + "' in DB for world '" + p.world - + "' does not exist! Please create this world, or remove the plots from the DB!"); + if (PlotMain.config.getBoolean("debug" )) { + PlotMain.sendConsoleSenderMessage("&cPlot '" + p.id + "' in DB for world '" + p.world + "' does not exist! Please create this world, or remove the plots from the DB!"); + } } } }