2021-03-15 23:00:00 +01:00
|
|
|
--- a/net/minecraft/world/entity/animal/EntitySnowman.java
|
|
|
|
+++ b/net/minecraft/world/entity/animal/EntitySnowman.java
|
2021-11-24 22:00:00 +01:00
|
|
|
@@ -41,6 +41,10 @@
|
2021-06-11 07:00:00 +02:00
|
|
|
import net.minecraft.world.level.gameevent.GameEvent;
|
|
|
|
import net.minecraft.world.phys.Vec3D;
|
2021-03-08 22:47:33 +01:00
|
|
|
|
2014-11-25 22:32:16 +01:00
|
|
|
+// CraftBukkit start
|
|
|
|
+import org.bukkit.craftbukkit.event.CraftEventFactory;
|
|
|
|
+// CraftBukkit end
|
2021-03-08 22:47:33 +01:00
|
|
|
+
|
2020-06-25 02:00:00 +02:00
|
|
|
public class EntitySnowman extends EntityGolem implements IShearable, IRangedEntity {
|
2014-11-25 22:32:16 +01:00
|
|
|
|
2021-11-21 23:00:00 +01:00
|
|
|
private static final DataWatcherObject<Byte> DATA_PUMPKIN_ID = DataWatcher.defineId(EntitySnowman.class, DataWatcherRegistry.BYTE);
|
2023-03-14 17:30:00 +01:00
|
|
|
@@ -97,7 +101,7 @@
|
|
|
|
super.aiStep();
|
2023-06-07 17:30:00 +02:00
|
|
|
if (!this.level().isClientSide) {
|
|
|
|
if (this.level().getBiome(this.blockPosition()).is(BiomeTags.SNOW_GOLEM_MELTS)) {
|
2023-03-14 17:30:00 +01:00
|
|
|
- this.hurt(this.damageSources().onFire(), 1.0F);
|
|
|
|
+ this.hurt(this.damageSources().melting, 1.0F); // CraftBukkit - DamageSource.BURN -> CraftEventFactory.MELTING
|
2014-11-25 22:32:16 +01:00
|
|
|
}
|
|
|
|
|
2023-06-07 17:30:00 +02:00
|
|
|
if (!this.level().getGameRules().getBoolean(GameRules.RULE_MOBGRIEFING)) {
|
2023-03-14 17:30:00 +01:00
|
|
|
@@ -113,7 +117,11 @@
|
|
|
|
BlockPosition blockposition = new BlockPosition(j, k, l);
|
2015-02-26 23:41:06 +01:00
|
|
|
|
2023-06-07 17:30:00 +02:00
|
|
|
if (this.level().getBlockState(blockposition).isAir() && iblockdata.canSurvive(this.level(), blockposition)) {
|
|
|
|
- this.level().setBlockAndUpdate(blockposition, iblockdata);
|
2022-06-07 18:00:00 +02:00
|
|
|
+ // CraftBukkit start
|
2023-06-07 17:30:00 +02:00
|
|
|
+ if (!org.bukkit.craftbukkit.event.CraftEventFactory.handleBlockFormEvent(this.level(), blockposition, iblockdata, this)) {
|
2022-06-07 18:00:00 +02:00
|
|
|
+ continue;
|
|
|
|
+ }
|
|
|
|
+ // CraftBukkit end
|
2023-06-07 17:30:00 +02:00
|
|
|
this.level().gameEvent(GameEvent.BLOCK_PLACE, blockposition, GameEvent.a.of(this, iblockdata));
|
2014-11-25 22:32:16 +01:00
|
|
|
}
|
|
|
|
}
|
2023-03-14 17:30:00 +01:00
|
|
|
@@ -145,6 +153,11 @@
|
2021-11-21 23:00:00 +01:00
|
|
|
ItemStack itemstack = entityhuman.getItemInHand(enumhand);
|
2017-07-15 01:53:22 +02:00
|
|
|
|
2021-11-21 23:00:00 +01:00
|
|
|
if (itemstack.is(Items.SHEARS) && this.readyForShearing()) {
|
2020-06-25 02:00:00 +02:00
|
|
|
+ // CraftBukkit start
|
|
|
|
+ if (!CraftEventFactory.handlePlayerShearEntityEvent(entityhuman, this, itemstack, enumhand)) {
|
|
|
|
+ return EnumInteractionResult.PASS;
|
|
|
|
+ }
|
|
|
|
+ // CraftBukkit end
|
|
|
|
this.shear(SoundCategory.PLAYERS);
|
2022-06-07 18:00:00 +02:00
|
|
|
this.gameEvent(GameEvent.SHEAR, entityhuman);
|
2023-06-07 17:30:00 +02:00
|
|
|
if (!this.level().isClientSide) {
|
2023-03-14 17:30:00 +01:00
|
|
|
@@ -164,7 +177,9 @@
|
2023-06-07 17:30:00 +02:00
|
|
|
this.level().playSound((EntityHuman) null, (Entity) this, SoundEffects.SNOW_GOLEM_SHEAR, soundcategory, 1.0F, 1.0F);
|
|
|
|
if (!this.level().isClientSide()) {
|
2021-11-21 23:00:00 +01:00
|
|
|
this.setPumpkin(false);
|
2021-07-22 09:51:53 +02:00
|
|
|
+ this.forceDrops = true; // CraftBukkit
|
2021-11-21 23:00:00 +01:00
|
|
|
this.spawnAtLocation(new ItemStack(Items.CARVED_PUMPKIN), 1.7F);
|
2021-07-22 09:51:53 +02:00
|
|
|
+ this.forceDrops = false; // CraftBukkit
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|