summaryrefslogtreecommitdiffstats
path: root/nms-patches/EnchantmentFrostWalker.patch
diff options
context:
space:
mode:
authormd_5 <git@md-5.net>2018-12-13 11:00:00 +1100
committermd_5 <git@md-5.net>2018-12-13 11:00:00 +1100
commitc64fe5080c996e8ea29b3e113043dd0aa962aaee (patch)
treebdd0883450532288f4d4e1f4687bad7aca234019 /nms-patches/EnchantmentFrostWalker.patch
parenta3c2ec03148f9f38d4d27d045b1afee2fc6ff173 (diff)
downloadcraftbukkit-c64fe5080c996e8ea29b3e113043dd0aa962aaee.tar
craftbukkit-c64fe5080c996e8ea29b3e113043dd0aa962aaee.tar.gz
craftbukkit-c64fe5080c996e8ea29b3e113043dd0aa962aaee.tar.lz
craftbukkit-c64fe5080c996e8ea29b3e113043dd0aa962aaee.tar.xz
craftbukkit-c64fe5080c996e8ea29b3e113043dd0aa962aaee.zip
Mappings Update
Diffstat (limited to 'nms-patches/EnchantmentFrostWalker.patch')
-rw-r--r--nms-patches/EnchantmentFrostWalker.patch4
1 files changed, 2 insertions, 2 deletions
diff --git a/nms-patches/EnchantmentFrostWalker.patch b/nms-patches/EnchantmentFrostWalker.patch
index 5b87723d..ea98ad6a 100644
--- a/nms-patches/EnchantmentFrostWalker.patch
+++ b/nms-patches/EnchantmentFrostWalker.patch
@@ -16,10 +16,10 @@
if (iblockdata2.getMaterial() == Material.WATER && (Integer) iblockdata2.get(BlockFluids.LEVEL) == 0 && iblockdata.canPlace(world, blockposition_mutableblockposition1) && world.a(iblockdata, (BlockPosition) blockposition_mutableblockposition1)) {
- world.setTypeUpdate(blockposition_mutableblockposition1, iblockdata);
-- world.J().a(blockposition_mutableblockposition1.h(), Blocks.FROSTED_ICE, MathHelper.nextInt(entityliving.getRandom(), 60, 120));
+- world.getBlockTickList().a(blockposition_mutableblockposition1.h(), Blocks.FROSTED_ICE, MathHelper.nextInt(entityliving.getRandom(), 60, 120));
+ // CraftBukkit Start - Call EntityBlockFormEvent for Frost Walker
+ if (org.bukkit.craftbukkit.event.CraftEventFactory.handleBlockFormEvent(world, blockposition_mutableblockposition1, iblockdata, entityliving)) {
-+ world.J().a(blockposition_mutableblockposition1.h(), Blocks.FROSTED_ICE, MathHelper.nextInt(entityliving.getRandom(), 60, 120));
++ world.getBlockTickList().a(blockposition_mutableblockposition1.h(), Blocks.FROSTED_ICE, MathHelper.nextInt(entityliving.getRandom(), 60, 120));
+ }
+ // CraftBukkit End
}