SPIGOT-5190: Superfluous EntityCombustEvent called when using fire aspect sword

By: md_5 <git@md-5.net>
This commit is contained in:
CraftBukkit/Spigot 2019-07-21 11:45:05 +10:00
parent 2e2062c8a6
commit 8eb196964d

View file

@ -290,7 +290,7 @@
+ org.bukkit.Bukkit.getPluginManager().callEvent(combustEvent);
+
+ if (!combustEvent.isCancelled()) {
+ entity.setOnFire(combustEvent.getDuration());
+ entity.setOnFire(combustEvent.getDuration(), false);
+ }
+ // CraftBukkit end
}