mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-25 20:16:19 +01:00
SPIGOT-5455: Mobs do not ignite due to sun in extra worlds
This commit is contained in:
parent
61d4b09023
commit
e43416a342
@ -295,6 +295,20 @@
|
||||
if (isOutsideWorld(blockposition)) {
|
||||
return Blocks.VOID_AIR.getBlockData();
|
||||
} else {
|
||||
@@ -306,11 +510,11 @@
|
||||
}
|
||||
|
||||
public boolean J() {
|
||||
- return this.worldProvider.getDimensionManager() == DimensionManager.OVERWORLD && this.c < 4;
|
||||
+ return this.worldProvider.getDimensionManager().getType() == DimensionManager.OVERWORLD && this.c < 4; // CraftBukkit
|
||||
}
|
||||
|
||||
public boolean K() {
|
||||
- return this.worldProvider.getDimensionManager() == DimensionManager.OVERWORLD && !this.J();
|
||||
+ return this.worldProvider.getDimensionManager().getType() == DimensionManager.OVERWORLD && !this.J(); // CraftBukkit
|
||||
}
|
||||
|
||||
@Override
|
||||
@@ -432,9 +636,11 @@
|
||||
TileEntity tileentity1 = (TileEntity) this.tileEntityListPending.get(i);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user