mirror of
https://github.com/TotalFreedomMC/TF-PlotSquared.git
synced 2025-07-30 01:14:04 +00:00
Fixed purge
This commit is contained in:
parent
b20f13bc58
commit
dadab42575
2 changed files with 2 additions and 2 deletions
|
@ -91,7 +91,7 @@ public class Purge extends SubCommand {
|
|||
MainUtil.sendMessage(plr, C.PURGE_SYNTAX);
|
||||
return false;
|
||||
}
|
||||
final String worldname = args[0];
|
||||
final String worldname = args[1];
|
||||
if (!BlockManager.manager.isWorld(worldname) || !PlotSquared.isPlotWorld(worldname)) {
|
||||
MainUtil.sendMessage(plr, "INVALID WORLD");
|
||||
return false;
|
||||
|
|
|
@ -899,7 +899,7 @@ public class SQLManager implements AbstractDB {
|
|||
@Override
|
||||
public void purge(final String world, final Set<PlotId> plots) {
|
||||
for (final PlotId id : plots) {
|
||||
PlotSquared.removePlot(world, id, true);
|
||||
PlotSquared.removePlot(world, new PlotId(id.x, id.y), true);
|
||||
}
|
||||
PreparedStatement stmt;
|
||||
try {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue