mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-10 03:52:45 +01:00
9ee989ea81
By: md_5 <git@md-5.net>
17 lines
779 B
Diff
17 lines
779 B
Diff
--- a/net/minecraft/world/entity/monster/EntityStrider.java
|
|
+++ b/net/minecraft/world/entity/monster/EntityStrider.java
|
|
@@ -320,7 +320,13 @@
|
|
IBlockData iblockdata1 = this.getBlockStateOn();
|
|
boolean flag = iblockdata.is(TagsBlock.STRIDER_WARM_BLOCKS) || iblockdata1.is(TagsBlock.STRIDER_WARM_BLOCKS) || this.getFluidHeight(TagsFluid.LAVA) > 0.0D;
|
|
|
|
- this.setSuffocating(!flag);
|
|
+ // CraftBukkit start
|
|
+ if (!flag ^ this.isSuffocating()) {
|
|
+ if (org.bukkit.craftbukkit.event.CraftEventFactory.callStriderTemperatureChangeEvent(this, !flag)) {
|
|
+ this.setSuffocating(!flag);
|
|
+ }
|
|
+ }
|
|
+ // CraftBukkit end
|
|
super.tick();
|
|
this.floatStrider();
|
|
this.checkInsideBlocks();
|