mirror of
https://github.com/PaperMC/Paper.git
synced 2025-03-20 14:08:57 +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);
|
int j = MathHelper.floor(this.locZ);
|
||||||
|
|
||||||
if (this.world.getBiome(i, j).i() > 1.0F) {
|
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);
|
this.world.getServer().getPluginManager().callEvent(event);
|
||||||
|
|
||||||
if (!event.isCancelled()) {
|
if (!event.isCancelled()) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue