2013-12-09 08:00:58 +01:00
|
|
|
From 90c7728aa37e43c8710c2821790405763d9bd92e Mon Sep 17 00:00:00 2001
|
2013-01-19 09:22:07 +01:00
|
|
|
From: Mike Primm <mike@primmhome.com>
|
|
|
|
Date: Wed, 16 Jan 2013 15:27:22 -0600
|
2013-06-11 06:11:48 +02:00
|
|
|
Subject: [PATCH] Sync Free Chunk Reference Cache
|
2013-01-19 09:22:07 +01:00
|
|
|
|
|
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/World.java b/src/main/java/net/minecraft/server/World.java
|
2013-12-09 08:00:58 +01:00
|
|
|
index aca2455..e580460 100644
|
2013-01-19 09:22:07 +01:00
|
|
|
--- a/src/main/java/net/minecraft/server/World.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/World.java
|
2013-12-09 08:00:58 +01:00
|
|
|
@@ -292,20 +292,18 @@ public abstract class World implements IBlockAccess {
|
2013-12-01 04:40:53 +01:00
|
|
|
return this.getChunkAt(i >> 4, j >> 4);
|
|
|
|
}
|
2013-01-19 09:22:07 +01:00
|
|
|
|
2013-12-01 04:40:53 +01:00
|
|
|
+ // Spigot start
|
2013-01-19 09:22:07 +01:00
|
|
|
public Chunk getChunkAt(int i, int j) {
|
2013-12-01 04:40:53 +01:00
|
|
|
- // CraftBukkit start
|
2013-01-19 09:22:07 +01:00
|
|
|
- Chunk result = null;
|
|
|
|
- synchronized (this.chunkLock) {
|
|
|
|
- if (this.lastChunkAccessed == null || this.lastXAccessed != i || this.lastZAccessed != j) {
|
|
|
|
- this.lastChunkAccessed = this.chunkProvider.getOrCreateChunk(i, j);
|
|
|
|
- this.lastXAccessed = i;
|
|
|
|
- this.lastZAccessed = j;
|
|
|
|
- }
|
|
|
|
- result = this.lastChunkAccessed;
|
|
|
|
+ //synchronized (this.chunkLock) {
|
|
|
|
+ Chunk result = this.lastChunkAccessed; // Exploit fact that read is atomic
|
2013-12-01 05:36:32 +01:00
|
|
|
+ if (result == null || result.locX != i || result.locZ != j) {
|
2013-01-19 09:22:07 +01:00
|
|
|
+ result = this.chunkProvider.getOrCreateChunk(i, j);
|
|
|
|
+ this.lastChunkAccessed = result; // Exploit fact that write is atomic
|
|
|
|
}
|
|
|
|
+ //}
|
|
|
|
return result;
|
2013-12-01 04:40:53 +01:00
|
|
|
- // CraftBukkit end
|
2013-01-19 09:22:07 +01:00
|
|
|
}
|
2013-12-01 04:40:53 +01:00
|
|
|
+ // Spigot end
|
|
|
|
|
|
|
|
public boolean setTypeAndData(int i, int j, int k, Block block, int l, int i1) {
|
|
|
|
if (i >= -30000000 && k >= -30000000 && i < 30000000 && k < 30000000) {
|
2013-01-19 09:22:07 +01:00
|
|
|
--
|
2013-12-01 04:40:53 +01:00
|
|
|
1.8.3.2
|
2013-01-19 09:22:07 +01:00
|
|
|
|