mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-03 09:19:38 +01:00
Fix NPE in recheckGaps when using async lighting
This commit is contained in:
parent
4eadccd3e2
commit
4021394904
@ -1,4 +1,4 @@
|
||||
From 91555b67e652b6e5797f45ddc4090b0f01f81371 Mon Sep 17 00:00:00 2001
|
||||
From 8c3d7a7362a12d51282681fb5db2e24c2faedce7 Mon Sep 17 00:00:00 2001
|
||||
From: Byteflux <byte@byteflux.net>
|
||||
Date: Wed, 1 Jul 2015 00:18:10 -0700
|
||||
Subject: [PATCH] Configurable async light updates
|
||||
@ -88,7 +88,7 @@ index 975d666..ae0f276 100644
|
||||
if (!this.world.c(i, j)) {
|
||||
// CraftBukkit start
|
||||
diff --git a/src/main/java/net/minecraft/server/World.java b/src/main/java/net/minecraft/server/World.java
|
||||
index 915a02d..ed0b63d 100644
|
||||
index 915a02d..1779a5b 100644
|
||||
--- a/src/main/java/net/minecraft/server/World.java
|
||||
+++ b/src/main/java/net/minecraft/server/World.java
|
||||
@@ -18,6 +18,12 @@ import org.bukkit.generator.ChunkGenerator;
|
||||
@ -108,7 +108,7 @@ index 915a02d..ed0b63d 100644
|
||||
public static boolean haveWeSilencedAPhysicsCrash;
|
||||
public static String blockLocation;
|
||||
private int tileTickPosition;
|
||||
+ public ExecutorService lightingExecutor; // PaperSpigot - Asynchronous lighting updates
|
||||
+ public ExecutorService lightingExecutor = Executors.newSingleThreadExecutor(new ThreadFactoryBuilder().setNameFormat("PaperSpigot - Lighting Thread").build()); // PaperSpigot - Asynchronous lighting updates
|
||||
|
||||
public static long chunkToKey(int x, int z)
|
||||
{
|
||||
@ -148,7 +148,7 @@ index 915a02d..ed0b63d 100644
|
||||
// CraftBukkit end
|
||||
return false;
|
||||
} else {
|
||||
@@ -2479,11 +2486,70 @@ public abstract class World implements IBlockAccess {
|
||||
@@ -2479,11 +2486,66 @@ public abstract class World implements IBlockAccess {
|
||||
}
|
||||
}
|
||||
|
||||
@ -182,10 +182,6 @@ index 915a02d..ed0b63d 100644
|
||||
+ return this.c(enumskyblock, position, chunk, null);
|
||||
+ }
|
||||
+
|
||||
+ if (lightingExecutor == null) {
|
||||
+ lightingExecutor = Executors.newSingleThreadExecutor(new ThreadFactoryBuilder().setNameFormat("PaperSpigot - Lighting Thread").build());
|
||||
+ }
|
||||
+
|
||||
+ chunk.pendingLightUpdates.incrementAndGet();
|
||||
+ chunk.lightUpdateTime = chunk.world.getTime();
|
||||
+
|
||||
@ -220,7 +216,7 @@ index 915a02d..ed0b63d 100644
|
||||
return false;
|
||||
}
|
||||
diff --git a/src/main/java/org/github/paperspigot/PaperSpigotWorldConfig.java b/src/main/java/org/github/paperspigot/PaperSpigotWorldConfig.java
|
||||
index bcd8b65..fa9ae6c 100644
|
||||
index 8421e3b..fa5066b 100644
|
||||
--- a/src/main/java/org/github/paperspigot/PaperSpigotWorldConfig.java
|
||||
+++ b/src/main/java/org/github/paperspigot/PaperSpigotWorldConfig.java
|
||||
@@ -244,4 +244,11 @@ public class PaperSpigotWorldConfig
|
||||
|
@ -1,4 +1,4 @@
|
||||
From 6e5dae727f6c1841733255c643684dd8631ee850 Mon Sep 17 00:00:00 2001
|
||||
From d1a32ea2d12b2932234fa650ca538f9d7634c90e Mon Sep 17 00:00:00 2001
|
||||
From: Byteflux <byte@byteflux.net>
|
||||
Date: Tue, 16 Jun 2015 05:52:58 -0700
|
||||
Subject: [PATCH] Optimize explosions
|
||||
@ -122,19 +122,19 @@ index 76ba101..c9a2ed7 100644
|
||||
|
||||
// this.i[i][this.ticks % 100] = System.nanoTime() - j; // CraftBukkit
|
||||
diff --git a/src/main/java/net/minecraft/server/World.java b/src/main/java/net/minecraft/server/World.java
|
||||
index b3e77d5..39cf1a3 100644
|
||||
index 4bb6feb..30d94f5 100644
|
||||
--- a/src/main/java/net/minecraft/server/World.java
|
||||
+++ b/src/main/java/net/minecraft/server/World.java
|
||||
@@ -133,6 +133,7 @@ public abstract class World implements IBlockAccess {
|
||||
public static String blockLocation;
|
||||
private int tileTickPosition;
|
||||
public ExecutorService lightingExecutor; // PaperSpigot - Asynchronous lighting updates
|
||||
public ExecutorService lightingExecutor = Executors.newSingleThreadExecutor(new ThreadFactoryBuilder().setNameFormat("PaperSpigot - Lighting Thread").build()); // PaperSpigot - Asynchronous lighting updates
|
||||
+ public final Map<Explosion.CacheKey, Float> explosionDensityCache = new HashMap<Explosion.CacheKey, Float>(); // PaperSpigot - Optimize explosions
|
||||
|
||||
public static long chunkToKey(int x, int z)
|
||||
{
|
||||
diff --git a/src/main/java/org/github/paperspigot/PaperSpigotWorldConfig.java b/src/main/java/org/github/paperspigot/PaperSpigotWorldConfig.java
|
||||
index 0b75e16..4596e9d 100644
|
||||
index 88e0644..f3228d9 100644
|
||||
--- a/src/main/java/org/github/paperspigot/PaperSpigotWorldConfig.java
|
||||
+++ b/src/main/java/org/github/paperspigot/PaperSpigotWorldConfig.java
|
||||
@@ -338,4 +338,10 @@ public class PaperSpigotWorldConfig
|
||||
@ -149,5 +149,5 @@ index 0b75e16..4596e9d 100644
|
||||
+ }
|
||||
}
|
||||
--
|
||||
2.4.5.windows.1
|
||||
2.4.6.windows.1
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user