summaryrefslogtreecommitdiffstats
path: root/nms-patches/WorldManager.patch
diff options
context:
space:
mode:
Diffstat (limited to 'nms-patches/WorldManager.patch')
-rw-r--r--nms-patches/WorldManager.patch28
1 files changed, 28 insertions, 0 deletions
diff --git a/nms-patches/WorldManager.patch b/nms-patches/WorldManager.patch
new file mode 100644
index 00000000..a7f97b03
--- /dev/null
+++ b/nms-patches/WorldManager.patch
@@ -0,0 +1,28 @@
+--- ../work/decompile-bb26c12b/net/minecraft/server/WorldManager.java 2014-11-27 08:59:46.937420807 +1100
++++ src/main/java/net/minecraft/server/WorldManager.java 2014-11-27 08:42:10.132850949 +1100
+@@ -23,11 +23,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) {}
+@@ -41,7 +43,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) {