mirror of
https://github.com/PaperMC/Paper.git
synced 2024-12-03 21:44:40 +01:00
Fixed fire spread hook providing the wrong block.
This commit is contained in:
parent
61c37bd369
commit
0daa2420da
1 changed files with 1 additions and 1 deletions
|
@ -91,7 +91,7 @@ public class BlockFire extends Block {
|
|||
Server server = ((WorldServer)world).getServer();
|
||||
CraftWorld cworld = ((WorldServer)world).getWorld();
|
||||
|
||||
org.bukkit.block.Block theBlock = (cworld.getBlockAt(i1, j1, k1));
|
||||
org.bukkit.block.Block theBlock = (cworld.getBlockAt(i1, k1, j1));
|
||||
IgniteCause igniteCause = BlockIgniteEvent.IgniteCause.SPREAD;
|
||||
Player thePlayer = null;
|
||||
|
||||
|
|
Loading…
Reference in a new issue