mirror of
				https://github.com/IntellectualSites/PlotSquared.git
				synced 2025-10-31 09:33:43 +01:00 
			
		
		
		
	Temporary fix for 1.9
This commit is contained in:
		| @@ -11,7 +11,6 @@ public class SlowChunk extends PlotChunk<Chunk> { | ||||
|  | ||||
|     public PlotBlock[][] result = new PlotBlock[16][]; | ||||
|     public int[][] biomes; | ||||
|     private PlotBlock lastBlock; | ||||
|     public SlowChunk(ChunkWrapper chunk) { | ||||
|         super(chunk); | ||||
|     } | ||||
| @@ -35,12 +34,8 @@ public class SlowChunk extends PlotChunk<Chunk> { | ||||
|         if (result[y >> 4] == null) { | ||||
|             result[y >> 4] = new PlotBlock[4096]; | ||||
|         } | ||||
|         if (id == lastBlock.id && data == lastBlock.data) { | ||||
|             result[MainUtil.CACHE_I[x][y][z]][MainUtil.CACHE_J[x][y][z]] = lastBlock; | ||||
|         } else { | ||||
|         result[MainUtil.CACHE_I[x][y][z]][MainUtil.CACHE_J[x][y][z]] = new PlotBlock((short) id, data); | ||||
|     } | ||||
|     } | ||||
|  | ||||
|     @Override | ||||
|     public PlotChunk clone() { | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Jesse Boyd
					Jesse Boyd