mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-25 09:41:29 +01:00
Two more cases for BlockFire
By: Thinkofdeath <thinkofdeath@spigotmc.org>
This commit is contained in:
parent
48d9be8bf4
commit
7d56b1a543
@ -1,5 +1,5 @@
|
|||||||
--- ../work/decompile-8eb82bde//net/minecraft/server/BlockFire.java 2015-02-17 13:46:14.372294849 +0000
|
--- ../work/decompile-8eb82bde//net/minecraft/server/BlockFire.java 2015-02-17 14:05:03.475599681 +0000
|
||||||
+++ src/main/java/net/minecraft/server/BlockFire.java 2015-02-17 13:46:14.372294849 +0000
|
+++ src/main/java/net/minecraft/server/BlockFire.java 2015-02-17 14:05:03.475599681 +0000
|
||||||
@@ -4,6 +4,12 @@
|
@@ -4,6 +4,12 @@
|
||||||
import java.util.Map;
|
import java.util.Map;
|
||||||
import java.util.Random;
|
import java.util.Random;
|
||||||
@ -31,6 +31,23 @@
|
|||||||
} else {
|
} else {
|
||||||
int i = ((Integer) iblockdata.get(BlockFire.AGE)).intValue();
|
int i = ((Integer) iblockdata.get(BlockFire.AGE)).intValue();
|
||||||
|
|
||||||
|
@@ -133,14 +139,14 @@
|
||||||
|
if (!flag) {
|
||||||
|
if (!this.e(world, blockposition)) {
|
||||||
|
if (!World.a((IBlockAccess) world, blockposition.down()) || i > 3) {
|
||||||
|
- world.setAir(blockposition);
|
||||||
|
+ fireExtinguished(world, blockposition); // CraftBukkit
|
||||||
|
}
|
||||||
|
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!this.e((IBlockAccess) world, blockposition.down()) && i == 15 && random.nextInt(4) == 0) {
|
||||||
|
- world.setAir(blockposition);
|
||||||
|
+ fireExtinguished(world, blockposition); // CraftBukkit
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -186,7 +192,26 @@
|
@@ -186,7 +192,26 @@
|
||||||
l1 = 15;
|
l1 = 15;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user