2020-05-06 11:48:49 +02:00
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
2018-07-15 03:53:17 +02:00
From: Aikar <aikar@aikar.co>
Date: Sun, 17 Apr 2016 17:27:09 -0400
2020-09-21 20:40:48 +02:00
Subject: [PATCH] Prevent Fire from loading chunks & wrongly spread
2018-07-15 03:53:17 +02:00
This causes the nether to spam unload/reload chunks, plus overall
bad behavior.
2020-09-21 20:40:48 +02:00
This also stops fire from spreading to illegal locations.
2021-03-16 08:19:45 +01:00
diff --git a/src/main/java/net/minecraft/world/level/block/BlockFire.java b/src/main/java/net/minecraft/world/level/block/BlockFire.java
index ee5400fd3e493e1f0518a9e47ddbc997e7a0fb92..c22fad0038fdb0769e23db782e3341206fbd80f9 100644
--- a/src/main/java/net/minecraft/world/level/block/BlockFire.java
+++ b/src/main/java/net/minecraft/world/level/block/BlockFire.java
@@ -135,7 +135,7 @@ public class BlockFire extends BlockFireAbstract {
2020-08-25 04:22:08 +02:00
BlockStateBoolean blockstateboolean = (BlockStateBoolean) BlockFire.h.get(enumdirection);
2020-04-17 06:29:53 +02:00
if (blockstateboolean != null) {
2020-06-25 13:00:35 +02:00
- iblockdata1 = (IBlockData) iblockdata1.set(blockstateboolean, this.e(iblockaccess.getType(blockposition.shift(enumdirection))));
+ iblockdata1 = (IBlockData) iblockdata1.set(blockstateboolean, this.e(iblockaccess.getTypeIfLoaded(blockposition.shift(enumdirection)))); // Paper - prevent chunk loads
2020-04-17 06:29:53 +02:00
}
}
2021-03-16 08:19:45 +01:00
@@ -215,6 +215,7 @@ public class BlockFire extends BlockFireAbstract {
2018-07-15 03:53:17 +02:00
}
2020-06-25 13:00:35 +02:00
blockposition_mutableblockposition.a((BaseBlockPosition) blockposition, l, j1, i1);
2020-09-21 20:40:48 +02:00
+ if (blockposition_mutableblockposition.isInvalidYLocation() || !worldserver.isLoaded(blockposition_mutableblockposition)) continue; // Paper
2019-12-11 03:43:21 +01:00
int l1 = this.a((IWorldReader) worldserver, (BlockPosition) blockposition_mutableblockposition);
2018-07-15 03:53:17 +02:00
if (l1 > 0) {
2021-03-16 08:19:45 +01:00
@@ -260,10 +261,16 @@ public class BlockFire extends BlockFireAbstract {
2018-07-15 03:53:17 +02:00
}
2020-06-25 13:00:35 +02:00
private void trySpread(World world, BlockPosition blockposition, int i, Random random, int j, BlockPosition sourceposition) { // CraftBukkit add sourceposition
- int k = this.getBurnChance(world.getType(blockposition));
2018-07-15 03:53:17 +02:00
+ // Paper start
+ final IBlockData iblockdata = world.getTypeIfLoaded(blockposition);
2019-04-27 05:05:36 +02:00
+ if (iblockdata == null) {
+ return;
+ }
2020-06-25 13:00:35 +02:00
+ int k = this.getBurnChance(iblockdata);
2018-07-15 03:53:17 +02:00
+ // Paper end
if (random.nextInt(i) < k) {
- IBlockData iblockdata = world.getType(blockposition);
+ //IBlockData iblockdata = world.getType(blockposition); // Paper
// CraftBukkit start
org.bukkit.block.Block theBlock = world.getWorld().getBlockAt(blockposition.getX(), blockposition.getY(), blockposition.getZ());
2021-03-16 08:19:45 +01:00
@@ -309,7 +316,7 @@ public class BlockFire extends BlockFireAbstract {
2020-04-17 06:29:53 +02:00
for (int j = 0; j < i; ++j) {
EnumDirection enumdirection = aenumdirection[j];
2020-06-25 13:00:35 +02:00
- if (this.e(iblockaccess.getType(blockposition.shift(enumdirection)))) {
+ if (this.e(iblockaccess.getTypeIfLoaded(blockposition.shift(enumdirection)))) { // Paper - prevent chunk loads
2020-04-17 06:29:53 +02:00
return true;
}
}
2021-03-16 08:19:45 +01:00
@@ -327,7 +334,12 @@ public class BlockFire extends BlockFireAbstract {
2019-04-27 05:05:36 +02:00
2018-07-15 03:53:17 +02:00
for (int k = 0; k < j; ++k) {
EnumDirection enumdirection = aenumdirection[k];
2019-04-27 05:05:36 +02:00
- IBlockData iblockdata = iworldreader.getType(blockposition.shift(enumdirection));
2018-07-15 03:53:17 +02:00
+ // Paper start
2019-04-27 05:05:36 +02:00
+ IBlockData iblockdata = iworldreader.getTypeIfLoaded(blockposition.shift(enumdirection));
+ if (iblockdata == null) {
+ continue;
+ }
2018-07-15 03:53:17 +02:00
+ // Paper end
2020-06-25 13:00:35 +02:00
i = Math.max(this.getFlameChance(iblockdata), i);
}
2021-03-16 08:19:45 +01:00
@@ -338,7 +350,7 @@ public class BlockFire extends BlockFireAbstract {
2020-04-17 06:29:53 +02:00
2020-06-25 13:00:35 +02:00
@Override
protected boolean e(IBlockData iblockdata) {
- return this.getFlameChance(iblockdata) > 0;
+ return iblockdata != null && this.getFlameChance(iblockdata) > 0; // Paper - iblockdata can be nullable if chunk is unloaded now
2020-04-17 06:29:53 +02:00
}
@Override