2015-05-25 12:37:24 +02:00
|
|
|
--- a/net/minecraft/server/EntityMonster.java
|
|
|
|
+++ b/net/minecraft/server/EntityMonster.java
|
2014-11-25 22:32:16 +01:00
|
|
|
@@ -1,5 +1,7 @@
|
|
|
|
package net.minecraft.server;
|
|
|
|
|
|
|
|
+import org.bukkit.event.entity.EntityCombustByEntityEvent; // CraftBukkit
|
|
|
|
+
|
|
|
|
public abstract class EntityMonster extends EntityCreature implements IMonster {
|
|
|
|
|
2015-02-26 23:41:06 +01:00
|
|
|
public EntityMonster(World world) {
|
2016-11-17 02:41:03 +01:00
|
|
|
@@ -75,7 +77,14 @@
|
2014-11-25 22:32:16 +01:00
|
|
|
int j = EnchantmentManager.getFireAspectEnchantmentLevel(this);
|
|
|
|
|
|
|
|
if (j > 0) {
|
|
|
|
- entity.setOnFire(j * 4);
|
|
|
|
+ // CraftBukkit start - Call a combust event when somebody hits with a fire enchanted item
|
|
|
|
+ EntityCombustByEntityEvent combustEvent = new EntityCombustByEntityEvent(this.getBukkitEntity(), entity.getBukkitEntity(), j * 4);
|
|
|
|
+ org.bukkit.Bukkit.getPluginManager().callEvent(combustEvent);
|
|
|
|
+
|
|
|
|
+ if (!combustEvent.isCancelled()) {
|
|
|
|
+ entity.setOnFire(combustEvent.getDuration());
|
|
|
|
+ }
|
|
|
|
+ // CraftBukkit end
|
|
|
|
}
|
|
|
|
|
2016-02-29 22:32:46 +01:00
|
|
|
if (entity instanceof EntityHuman) {
|