mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-09 20:30:28 +01:00
29 lines
2.1 KiB
Diff
29 lines
2.1 KiB
Diff
--- /home/matt/mc-dev-private//net/minecraft/server/WorldManager.java 2015-02-26 22:40:23.223608132 +0000
|
|
+++ src/main/java/net/minecraft/server/WorldManager.java 2015-02-26 22:40:23.227608132 +0000
|
|
@@ -24,11 +24,13 @@
|
|
}
|
|
|
|
public void a(String s, double d0, double d1, double d2, float f, float f1) {
|
|
- this.a.getPlayerList().sendPacketNearby(d0, d1, d2, f > 1.0F ? (double) (16.0F * f) : 16.0D, this.world.worldProvider.getDimension(), new PacketPlayOutNamedSoundEffect(s, d0, d1, d2, f, f1));
|
|
+ // CraftBukkit - this.world.dimension
|
|
+ this.a.getPlayerList().sendPacketNearby(d0, d1, d2, f > 1.0F ? (double) (16.0F * f) : 16.0D, this.world.dimension, new PacketPlayOutNamedSoundEffect(s, d0, d1, d2, f, f1));
|
|
}
|
|
|
|
public void a(EntityHuman entityhuman, String s, double d0, double d1, double d2, float f, float f1) {
|
|
- this.a.getPlayerList().sendPacketNearby(entityhuman, d0, d1, d2, f > 1.0F ? (double) (16.0F * f) : 16.0D, this.world.worldProvider.getDimension(), new PacketPlayOutNamedSoundEffect(s, d0, d1, d2, f, f1));
|
|
+ // CraftBukkit - this.world.dimension
|
|
+ this.a.getPlayerList().sendPacketNearby(entityhuman, d0, d1, d2, f > 1.0F ? (double) (16.0F * f) : 16.0D, this.world.dimension, new PacketPlayOutNamedSoundEffect(s, d0, d1, d2, f, f1));
|
|
}
|
|
|
|
public void a(int i, int j, int k, int l, int i1, int j1) {}
|
|
@@ -42,7 +44,8 @@
|
|
public void a(String s, BlockPosition blockposition) {}
|
|
|
|
public void a(EntityHuman entityhuman, int i, BlockPosition blockposition, int j) {
|
|
- this.a.getPlayerList().sendPacketNearby(entityhuman, (double) blockposition.getX(), (double) blockposition.getY(), (double) blockposition.getZ(), 64.0D, this.world.worldProvider.getDimension(), new PacketPlayOutWorldEvent(i, blockposition, j, false));
|
|
+ // CraftBukkit - this.world.dimension
|
|
+ this.a.getPlayerList().sendPacketNearby(entityhuman, (double) blockposition.getX(), (double) blockposition.getY(), (double) blockposition.getZ(), 64.0D, this.world.dimension, new PacketPlayOutWorldEvent(i, blockposition, j, false));
|
|
}
|
|
|
|
public void a(int i, BlockPosition blockposition, int j) {
|