mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-05 18:27:17 +01:00
Added EntityDamageEvent for caused by starving.
This commit is contained in:
parent
e6e9cec1e9
commit
217b414118
1 changed files with 10 additions and 1 deletions
|
@ -1,5 +1,7 @@
|
|||
package net.minecraft.server;
|
||||
|
||||
import org.bukkit.event.entity.EntityDamageEvent; // CraftBukkit
|
||||
|
||||
public class FoodMetaData {
|
||||
|
||||
// CraftBukkit start - all made public
|
||||
|
@ -44,7 +46,14 @@ public class FoodMetaData {
|
|||
++this.foodTickTimer;
|
||||
if (this.foodTickTimer >= 80) {
|
||||
if (entityhuman.health > 10 || i >= 3 || entityhuman.health > 1 && i >= 2) {
|
||||
entityhuman.damageEntity(DamageSource.STARVE, 1);
|
||||
// CraftBukkit start
|
||||
EntityDamageEvent event = new EntityDamageEvent(entityhuman.getBukkitEntity(), EntityDamageEvent.DamageCause.STARVATION, 1);
|
||||
entityhuman.world.getServer().getPluginManager().callEvent(event);
|
||||
|
||||
if (!event.isCancelled()) {
|
||||
entityhuman.damageEntity(DamageSource.STARVE, event.getDamage());
|
||||
}
|
||||
// CraftBukkit end
|
||||
}
|
||||
|
||||
this.foodTickTimer = 0;
|
||||
|
|
Loading…
Reference in a new issue