mirror of
https://github.com/PaperMC/Paper.git
synced 2024-12-28 07:20:24 +01:00
Fix EntityCombustEvent cancellation issues (#8529)
This commit is contained in:
parent
13442cd5c9
commit
ffceefa32f
1 changed files with 37 additions and 0 deletions
|
@ -0,0 +1,37 @@
|
||||||
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
||||||
|
From: Denery <dorofeevij@gmail.com>
|
||||||
|
Date: Mon, 31 Oct 2022 14:20:52 +0300
|
||||||
|
Subject: [PATCH] Fix EntityCombustEvent cancellation cant fully prevent
|
||||||
|
entities from being set on fire
|
||||||
|
|
||||||
|
|
||||||
|
diff --git a/src/main/java/net/minecraft/world/entity/Entity.java b/src/main/java/net/minecraft/world/entity/Entity.java
|
||||||
|
index 0000000000000000000000000000000000000000..0000000000000000000000000000000000000000 100644
|
||||||
|
--- a/src/main/java/net/minecraft/world/entity/Entity.java
|
||||||
|
+++ b/src/main/java/net/minecraft/world/entity/Entity.java
|
||||||
|
@@ -0,0 +0,0 @@ public abstract class Entity implements Nameable, EntityAccess, CommandSource {
|
||||||
|
pluginManager.callEvent(entityCombustEvent);
|
||||||
|
if (!entityCombustEvent.isCancelled()) {
|
||||||
|
this.setSecondsOnFire(entityCombustEvent.getDuration(), false);
|
||||||
|
+ // Paper start - fix EntityCombustEvent cancellation.
|
||||||
|
+ } else {
|
||||||
|
+ this.setRemainingFireTicks(this.remainingFireTicks - 1);
|
||||||
|
+ // Paper end
|
||||||
|
}
|
||||||
|
// CraftBukkit end
|
||||||
|
}
|
||||||
|
diff --git a/src/main/java/net/minecraft/world/level/block/BaseFireBlock.java b/src/main/java/net/minecraft/world/level/block/BaseFireBlock.java
|
||||||
|
index 0000000000000000000000000000000000000000..0000000000000000000000000000000000000000 100644
|
||||||
|
--- a/src/main/java/net/minecraft/world/level/block/BaseFireBlock.java
|
||||||
|
+++ b/src/main/java/net/minecraft/world/level/block/BaseFireBlock.java
|
||||||
|
@@ -0,0 +0,0 @@ public abstract class BaseFireBlock extends Block {
|
||||||
|
|
||||||
|
if (!event.isCancelled()) {
|
||||||
|
entity.setSecondsOnFire(event.getDuration(), false);
|
||||||
|
+ // Paper start - fix EntityCombustEvent cancellation.
|
||||||
|
+ } else {
|
||||||
|
+ entity.setRemainingFireTicks(entity.getRemainingFireTicks() - 1);
|
||||||
|
+ // Paper end
|
||||||
|
}
|
||||||
|
// CraftBukkit end
|
||||||
|
}
|
Loading…
Reference in a new issue