Made Snowmen use a DamageCause MELTING for melting in hot biomes. Addresses BUKKIT-1244
This commit is contained in:
parent
f6bcaa6b0a
commit
ccbb4b479a
@ -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…
x
Reference in New Issue
Block a user