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

Dieser Commit ist enthalten in:
md_5 2019-07-21 11:45:05 +10:00
Ursprung 9c887d4d80
Commit 8b09d98319

Datei anzeigen

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