summaryrefslogtreecommitdiffstats
path: root/nms-patches/BlockReed.patch
diff options
context:
space:
mode:
authorThinkofdeath <thinkofdeath@spigotmc.org>2014-12-11 00:44:30 +0000
committerThinkofdeath <thinkofdeath@spigotmc.org>2014-12-11 00:44:30 +0000
commitfe41b017ca7b4ec872a4e5a7681750fad545868f (patch)
treee75c407b66f3233cf69d183920eab6480890b68f /nms-patches/BlockReed.patch
parent14d69f15139058170cba855c99af059bc62b3b85 (diff)
downloadcraftbukkit-fe41b017ca7b4ec872a4e5a7681750fad545868f.tar
craftbukkit-fe41b017ca7b4ec872a4e5a7681750fad545868f.tar.gz
craftbukkit-fe41b017ca7b4ec872a4e5a7681750fad545868f.tar.lz
craftbukkit-fe41b017ca7b4ec872a4e5a7681750fad545868f.tar.xz
craftbukkit-fe41b017ca7b4ec872a4e5a7681750fad545868f.zip
Fixed mis-placed CraftBukkit comments
Diffstat (limited to 'nms-patches/BlockReed.patch')
-rw-r--r--nms-patches/BlockReed.patch8
1 files changed, 4 insertions, 4 deletions
diff --git a/nms-patches/BlockReed.patch b/nms-patches/BlockReed.patch
index 1409d40a..5a84ef63 100644
--- a/nms-patches/BlockReed.patch
+++ b/nms-patches/BlockReed.patch
@@ -1,13 +1,13 @@
---- ../work/decompile-8eb82bde/net/minecraft/server/BlockReed.java 2014-12-11 00:12:28.088272530 +0000
-+++ src/main/java/net/minecraft/server/BlockReed.java 2014-12-11 00:10:59.832273488 +0000
+--- ../work/decompile-8eb82bde/net/minecraft/server/BlockReed.java 2014-12-11 00:44:17.804251801 +0000
++++ src/main/java/net/minecraft/server/BlockReed.java 2014-12-11 00:43:36.504252249 +0000
@@ -29,8 +29,13 @@
int j = ((Integer) iblockdata.get(BlockReed.AGE)).intValue();
if (j == 15) {
- world.setTypeUpdate(blockposition.up(), this.getBlockData());
+ // CraftBukkit start
-+ // world.setTypeUpdate(blockposition.up(), this.getBlockData());
-+ BlockPosition upPos = blockposition.up();
++ // world.setTypeUpdate(blockposition.up(), this.getBlockData()); // CraftBukkit
++ BlockPosition upPos = blockposition.up();
+ org.bukkit.craftbukkit.event.CraftEventFactory.handleBlockGrowEvent(world, upPos.getX(), upPos.getY(), upPos.getZ(), this, 0);
world.setTypeAndData(blockposition, iblockdata.set(BlockReed.AGE, Integer.valueOf(0)), 4);
+ // CraftBukkit end