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!"); + } } } }