This commit is contained in:
boy0001 2014-10-30 22:32:04 +11:00
parent 5395852cf0
commit 97b9198d77
2 changed files with 2 additions and 2 deletions

View file

@ -1034,7 +1034,7 @@ public class SQLManager extends AbstractDB {
public void run() {
try {
PreparedStatement statement =
connection.prepareStatement("DELETE FROM `"+PREFIX+"+plot_helpers` WHERE `plot_plot_id` = ? AND `user_uuid` = ?");
connection.prepareStatement("DELETE FROM `"+PREFIX+"plot_helpers` WHERE `plot_plot_id` = ? AND `user_uuid` = ?");
statement.setInt(1, getId(world, plot.id));
statement.setString(2, player.getUniqueId().toString());
statement.executeUpdate();