mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-08 11:50:32 +01:00
SPIGOT-2405: Better event for combust due to fire
This commit is contained in:
parent
fb568fdc70
commit
71cd505d45
@ -204,7 +204,7 @@
|
|||||||
- if (this.fireTicks == 0) {
|
- if (this.fireTicks == 0) {
|
||||||
+ // CraftBukkit start - Not on fire yet
|
+ // CraftBukkit start - Not on fire yet
|
||||||
+ if (this.fireTicks <= 0) { // Only throw events on the first combust, otherwise it spams
|
+ 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);
|
+ world.getServer().getPluginManager().callEvent(event);
|
||||||
+
|
+
|
||||||
+ if (!event.isCancelled()) {
|
+ if (!event.isCancelled()) {
|
||||||
|
Loading…
Reference in New Issue
Block a user