mirror of
				https://github.com/IntellectualSites/PlotSquared.git
				synced 2025-11-04 11:13:45 +01:00 
			
		
		
		
	Fixed purge
This commit is contained in:
		@@ -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 {
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user