3
0
Mirror von https://github.com/PaperMC/Paper.git synchronisiert 2024-12-18 04:20:08 +01:00

SPIGOT-2191: Fix a missed diff from 1.8.8

Dieser Commit ist enthalten in:
Thinkofname 2016-04-17 17:47:51 +01:00
Ursprung f6313791d0
Commit b70058afa2

Datei anzeigen

@ -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 @@
}