mirror of
https://github.com/IntellectualSites/PlotSquared.git
synced 2024-11-22 13:16:45 +01:00
fixes
This commit is contained in:
parent
5395852cf0
commit
97b9198d77
@ -211,7 +211,7 @@ public enum C {
|
||||
|
||||
PLOT_INFO_HELPERS("&6Helpers&7: %helpers%"),
|
||||
PLOT_INFO_TRUSTED("&6Trusted&7: %trusted%"),
|
||||
PLOT_INFO_DENIED("&6DENIED&7: %denied%"),
|
||||
PLOT_INFO_DENIED("&6Denied&7: %denied%"),
|
||||
PLOT_INFO_FLAGS("&6Flags&7: %flags%"),
|
||||
PLOT_INFO_BIOME("&6Biome&7: %biome%"),
|
||||
PLOT_INFO_RATING("&6Rating&7: %rating%"),
|
||||
|
@ -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();
|
||||
|
Loading…
Reference in New Issue
Block a user