diff --git a/com/Acrobot/ChestShop/Listeners/pluginEnable.java b/com/Acrobot/ChestShop/Listeners/pluginEnable.java index e5fb3ee..0234062 100644 --- a/com/Acrobot/ChestShop/Listeners/pluginEnable.java +++ b/com/Acrobot/ChestShop/Listeners/pluginEnable.java @@ -44,7 +44,7 @@ public class pluginEnable extends ServerListener { if (!methods.hasMethod()) { if (methods.setMethod(event.getPlugin())) { Economy.economy = methods.getMethod(); - System.out.println("[ChestShop] " + Economy.economy.getName() + ' ' + Economy.economy.getVersion() + " loaded."); + System.out.println(lineStart + Economy.economy.getName() + ' ' + Economy.economy.getVersion() + " loaded."); } } diff --git a/com/Acrobot/ChestShop/Listeners/signChange.java b/com/Acrobot/ChestShop/Listeners/signChange.java index b37e3f7..71f7203 100644 --- a/com/Acrobot/ChestShop/Listeners/signChange.java +++ b/com/Acrobot/ChestShop/Listeners/signChange.java @@ -103,7 +103,7 @@ public class signChange extends BlockListener { } Block chestBlock = chest.getBlock(); - boolean canAccess = !Security.isProtected(chestBlock) || !Security.canAccess(player, chestBlock); + boolean canAccess = !Security.isProtected(chestBlock) || Security.canAccess(player, chestBlock); if (!(Security.protection instanceof Default) && canAccess) { Default protection = new Default(); diff --git a/plugin.yml b/plugin.yml index 636fcc4..5f03454 100644 --- a/plugin.yml +++ b/plugin.yml @@ -2,7 +2,7 @@ name: ChestShop main: com.Acrobot.ChestShop.ChestShop -version: 3.00 +version: 3.01 author: Acrobot