mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-24 17:22:55 +01:00
SPIGOT-2405: Better event for combust due to fire
By: md_5 <git@md-5.net>
This commit is contained in:
parent
b2c01f26da
commit
bdf0aef528
1 changed files with 1 additions and 1 deletions
|
@ -204,7 +204,7 @@
|
|||
- if (this.fireTicks == 0) {
|
||||
+ // CraftBukkit start - Not on fire yet
|
||||
+ if (this.fireTicks <= 0) { // Only throw events on the first combust, otherwise it spams
|
||||
+ EntityCombustEvent event = new EntityCombustEvent(getBukkitEntity(), 8);
|
||||
+ EntityCombustEvent event = new org.bukkit.event.entity.EntityCombustByBlockEvent(null, getBukkitEntity(), 8);
|
||||
+ world.getServer().getPluginManager().callEvent(event);
|
||||
+
|
||||
+ if (!event.isCancelled()) {
|
||||
|
|
Loading…
Add table
Reference in a new issue