Debug PlotMe conversion (temporary)

This commit is contained in:
Jesse Boyd 2016-03-29 19:13:41 +11:00
parent 8244086840
commit d9c6d04b46
3 changed files with 2 additions and 4 deletions

View File

@ -45,6 +45,7 @@ public class ClassicPlotMeConnector extends APlotMeConnector {
} }
} catch (SQLException | ClassNotFoundException ignored) { } catch (SQLException | ClassNotFoundException ignored) {
//ignored //ignored
ignored.printStackTrace();
} }
return null; return null;
} }

View File

@ -44,6 +44,7 @@ public class PlotMeConnector_017 extends APlotMeConnector {
} }
} catch (SQLException | ClassNotFoundException ignored) { } catch (SQLException | ClassNotFoundException ignored) {
//ignored //ignored
ignored.printStackTrace();
} }
return null; return null;
} }

View File

@ -55,10 +55,6 @@ public class Kick extends SubCommand {
MainUtil.sendMessage(plr, C.NO_PLOT_PERMS); MainUtil.sendMessage(plr, C.NO_PLOT_PERMS);
return false; return false;
} }
if (args.length != 1) {
MainUtil.sendMessage(plr, "&c/plot kick <player>");
return false;
}
PlotPlayer player = UUIDHandler.getPlayer(args[0]); PlotPlayer player = UUIDHandler.getPlayer(args[0]);
if (player == null) { if (player == null) {
MainUtil.sendMessage(plr, C.INVALID_PLAYER, args[0]); MainUtil.sendMessage(plr, C.INVALID_PLAYER, args[0]);