mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-05 10:20:53 +01:00
Don't hate me :(
This commit is contained in:
parent
743ff05b2e
commit
923ab54e38
@ -113,6 +113,17 @@ public class BlockFire extends Block {
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Craftbukkit start - won't be needed next port hopefully
|
||||
if(l == 15) {
|
||||
this.a(world, i + 1, j, k, 1, random);
|
||||
this.a(world, i - 1, j, k, 1, random);
|
||||
this.a(world, i, j - 1, k, 1, random);
|
||||
this.a(world, i, j + 1, k, 1, random);
|
||||
this.a(world, i, j, k - 1, 1, random);
|
||||
this.a(world, i, j, k + 1, 1, random);
|
||||
}
|
||||
// Craftbukkit end
|
||||
}
|
||||
|
||||
private void a(World world, int i, int j, int k, int l, Random random) {
|
||||
|
Loading…
Reference in New Issue
Block a user