This commit is contained in:
boy0001 2015-04-06 22:20:24 +10:00
parent 53b8f8a0d0
commit 715c4ceaab
2 changed files with 1 additions and 2 deletions

View File

@ -68,7 +68,6 @@ public class Inbox extends SubCommand {
else {
color = "&7";
}
System.out.print("PLOT INBOX: " +c.id);
string.append("&8[&7#" + x + "&8][&7" + c.world + ";" + c.id + "&8][&7#" + c.senderName + "&8]" + color + c.senderName +"&7 : " + color + c.comment + "\n");
}
MainUtil.sendMessage(player, string.toString());

View File

@ -1194,8 +1194,8 @@ public class SQLManager implements AbstractDB {
comment = new PlotComment(world, id, msg, sender, inbox, timestamp);
comments.add(comment);
whenDone.value = comments;
TaskManager.runTask(whenDone);
}
TaskManager.runTask(whenDone);
statement.close();
set.close();
} catch (final SQLException e) {