diff options
author | MiniDigger | Martin <[email protected]> | 2024-01-14 11:04:49 +0100 |
---|---|---|
committer | MiniDigger | Martin <[email protected]> | 2024-01-14 11:04:49 +0100 |
commit | bee74680e607c2e29b038329f62181238911cd83 (patch) | |
tree | 708fd1a4a0227d9071243adf2a42d5e9e96cde4a /patch-remap/mache-vineflower-stripped/net/minecraft/world/level/block/SugarCaneBlock.java.patch | |
parent | 0a44692ef6ff6e255d48eb3ba1bb114166eafda9 (diff) | |
download | Paper-softspoon.tar.gz Paper-softspoon.zip |
add remapped patches as a testsoftspoon
Diffstat (limited to 'patch-remap/mache-vineflower-stripped/net/minecraft/world/level/block/SugarCaneBlock.java.patch')
-rw-r--r-- | patch-remap/mache-vineflower-stripped/net/minecraft/world/level/block/SugarCaneBlock.java.patch | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/patch-remap/mache-vineflower-stripped/net/minecraft/world/level/block/SugarCaneBlock.java.patch b/patch-remap/mache-vineflower-stripped/net/minecraft/world/level/block/SugarCaneBlock.java.patch new file mode 100644 index 0000000000..519b55072d --- /dev/null +++ b/patch-remap/mache-vineflower-stripped/net/minecraft/world/level/block/SugarCaneBlock.java.patch @@ -0,0 +1,18 @@ +--- a/net/minecraft/world/level/block/SugarCaneBlock.java ++++ b/net/minecraft/world/level/block/SugarCaneBlock.java +@@ -57,10 +60,11 @@ + } + + if (i < 3) { +- int i1 = state.getValue(AGE); +- if (i1 == 15) { +- level.setBlockAndUpdate(pos.above(), this.defaultBlockState()); +- level.setBlock(pos, state.setValue(AGE, Integer.valueOf(0)), 4); ++ int j = (Integer) state.getValue(SugarCaneBlock.AGE); ++ ++ if (j == 15) { ++ org.bukkit.craftbukkit.event.CraftEventFactory.handleBlockGrowEvent(level, pos.above(), this.defaultBlockState()); // CraftBukkit ++ level.setBlock(pos, (IBlockData) state.setValue(SugarCaneBlock.AGE, 0), 4); + } else { + level.setBlock(pos, state.setValue(AGE, Integer.valueOf(i1 + 1)), 4); + } |