mirror of
				https://github.com/IntellectualSites/PlotSquared.git
				synced 2025-11-04 03:03:43 +01:00 
			
		
		
		
	Incremented version number / removed debug
This commit is contained in:
		
							
								
								
									
										2
									
								
								pom.xml
									
									
									
									
									
								
							
							
						
						
									
										2
									
								
								pom.xml
									
									
									
									
									
								
							@@ -8,7 +8,7 @@
 | 
			
		||||
	    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
 | 
			
		||||
	</properties>
 | 
			
		||||
    <artifactId>PlotSquared</artifactId>
 | 
			
		||||
    <version>2.12.15</version>
 | 
			
		||||
    <version>2.12.16</version>
 | 
			
		||||
    <name>PlotSquared</name>
 | 
			
		||||
    <packaging>jar</packaging>
 | 
			
		||||
    <build>
 | 
			
		||||
 
 | 
			
		||||
@@ -137,12 +137,9 @@ public class Trim extends SubCommand {
 | 
			
		||||
                    int ccx2 = (pos2.getX() >> 9);
 | 
			
		||||
                    int ccz2 = (pos2.getZ() >> 9);
 | 
			
		||||
                    
 | 
			
		||||
                    System.out.print(pos1);
 | 
			
		||||
                    
 | 
			
		||||
                    for(int x = ccx1; x <= ccx2; x++) {
 | 
			
		||||
                        for(int z = ccz1; z <= ccz2; z++) {
 | 
			
		||||
                            chunks.remove(new ChunkLoc(x, z));
 | 
			
		||||
                            System.out.print(x + "," + z);
 | 
			
		||||
                        }
 | 
			
		||||
                    }
 | 
			
		||||
                }
 | 
			
		||||
 
 | 
			
		||||
@@ -378,7 +378,6 @@ public class BukkitChunkManager extends ChunkManager {
 | 
			
		||||
                    CURRENT_PLOT_CLEAR = null;
 | 
			
		||||
                    Chunk chunkObj = worldObj.getChunkAt(x, z);
 | 
			
		||||
                    if (!chunkObj.load(false)) {
 | 
			
		||||
                        System.out.print("FAILED TO LOAD CHUNK!!!: " + x + "," + z);
 | 
			
		||||
                        continue;
 | 
			
		||||
                    }
 | 
			
		||||
                    CURRENT_PLOT_CLEAR = new RegionWrapper(pos1.getX(), pos2.getX(), pos1.getZ(), pos2.getZ());
 | 
			
		||||
@@ -446,13 +445,9 @@ public class BukkitChunkManager extends ChunkManager {
 | 
			
		||||
                        saveRegion(worldObj, xxb , xxb2, zzb, zzb2); // 
 | 
			
		||||
                    }
 | 
			
		||||
                    if (checkX2 && checkZ1) {
 | 
			
		||||
                        System.out.print("CX2 && CZ1");
 | 
			
		||||
                        System.out.print(xxt2 +',' + xxt + " | " + zzb + "," + zzb2);
 | 
			
		||||
                        saveRegion(worldObj, xxt2 , xxt, zzb, zzb2); // ?
 | 
			
		||||
                    }
 | 
			
		||||
                    if (checkX1 && checkZ2) {
 | 
			
		||||
                        System.out.print("CX1 && CZ2");
 | 
			
		||||
                        System.out.print(xxb +',' + xxb2 + " | " + zzt2 + "," + zzt);
 | 
			
		||||
                        saveRegion(worldObj, xxb , xxb2, zzt2, zzt); // ?
 | 
			
		||||
                    }
 | 
			
		||||
                    if (checkX2 && checkZ2) {
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user