mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-23 11:06:29 +01:00
SPIGOT-2191: Fix a missed diff from 1.8.8
This commit is contained in:
parent
f6313791d0
commit
b70058afa2
@ -542,7 +542,7 @@
|
||||
return false;
|
||||
}
|
||||
|
||||
@@ -900,6 +1127,14 @@
|
||||
@@ -900,8 +1127,16 @@
|
||||
}
|
||||
|
||||
public boolean strikeLightning(Entity entity) {
|
||||
@ -555,8 +555,11 @@
|
||||
+ }
|
||||
+ // CraftBukkit end
|
||||
if (super.strikeLightning(entity)) {
|
||||
this.server.getPlayerList().sendPacketNearby((EntityHuman) null, entity.locX, entity.locY, entity.locZ, 512.0D, this.worldProvider.getDimensionManager().getDimensionID(), new PacketPlayOutSpawnEntityWeather(entity));
|
||||
- this.server.getPlayerList().sendPacketNearby((EntityHuman) null, entity.locX, entity.locY, entity.locZ, 512.0D, this.worldProvider.getDimensionManager().getDimensionID(), new PacketPlayOutSpawnEntityWeather(entity));
|
||||
+ this.server.getPlayerList().sendPacketNearby((EntityHuman) null, entity.locX, entity.locY, entity.locZ, 512.0D, dimension, new PacketPlayOutSpawnEntityWeather(entity)); // CraftBukkit - Use dimension
|
||||
return true;
|
||||
} else {
|
||||
return false;
|
||||
@@ -917,10 +1152,20 @@
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user