SPIGOT-2191: Fix a missed diff from 1.8.8

This commit is contained in:
Thinkofname 2016-04-17 17:47:51 +01:00
parent f6313791d0
commit b70058afa2

View File

@ -542,7 +542,7 @@
return false; return false;
} }
@@ -900,6 +1127,14 @@ @@ -900,8 +1127,16 @@
} }
public boolean strikeLightning(Entity entity) { public boolean strikeLightning(Entity entity) {
@ -555,8 +555,11 @@
+ } + }
+ // CraftBukkit end + // CraftBukkit end
if (super.strikeLightning(entity)) { 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; return true;
} else {
return false;
@@ -917,10 +1152,20 @@ @@ -917,10 +1152,20 @@
} }