mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-06 02:35:49 +01:00
Made Snowmen use a DamageCause MELTING for melting in hot biomes. Addresses BUKKIT-1244
This commit is contained in:
parent
f6bcaa6b0a
commit
ccbb4b479a
1 changed files with 1 additions and 1 deletions
|
@ -45,7 +45,7 @@ public class EntitySnowman extends EntityGolem {
|
|||
int j = MathHelper.floor(this.locZ);
|
||||
|
||||
if (this.world.getBiome(i, j).i() > 1.0F) {
|
||||
EntityDamageEvent event = new EntityDamageEvent(this.getBukkitEntity(), EntityDamageEvent.DamageCause.FIRE_TICK, 1);
|
||||
EntityDamageEvent event = new EntityDamageEvent(this.getBukkitEntity(), EntityDamageEvent.DamageCause.MELTING, 1);
|
||||
this.world.getServer().getPluginManager().callEvent(event);
|
||||
|
||||
if (!event.isCancelled()) {
|
||||
|
|
Loading…
Reference in a new issue