This commit is contained in:
boy0001 2015-03-31 16:48:07 +11:00
parent dabc551cc1
commit 1c0c28f5b1
5 changed files with 8 additions and 5 deletions

View file

@ -1084,7 +1084,7 @@ public class SQLManager implements AbstractDB {
while (set.next()) {
final String sender = set.getString("sender");
final String msg = set.getString("comment");
comment = new PlotComment(msg, sender, tier);
comment = new PlotComment(plot.id, msg, sender, tier);
comments.add(comment);
}
statement.close();