mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-22 18:45:54 +01:00
SPIGOT-4647: Properly cancel VehicleDamageEvent
This commit is contained in:
parent
ec17d07def
commit
f102d88299
@ -43,7 +43,7 @@
|
|||||||
+ this.world.getServer().getPluginManager().callEvent(event);
|
+ this.world.getServer().getPluginManager().callEvent(event);
|
||||||
+
|
+
|
||||||
+ if (event.isCancelled()) {
|
+ if (event.isCancelled()) {
|
||||||
+ return true;
|
+ return false;
|
||||||
+ }
|
+ }
|
||||||
+ // f = event.getDamage(); // TODO Why don't we do this?
|
+ // f = event.getDamage(); // TODO Why don't we do this?
|
||||||
+ // CraftBukkit end
|
+ // CraftBukkit end
|
||||||
|
@ -46,7 +46,7 @@
|
|||||||
+ this.world.getServer().getPluginManager().callEvent(event);
|
+ this.world.getServer().getPluginManager().callEvent(event);
|
||||||
+
|
+
|
||||||
+ if (event.isCancelled()) {
|
+ if (event.isCancelled()) {
|
||||||
+ return true;
|
+ return false;
|
||||||
+ }
|
+ }
|
||||||
+
|
+
|
||||||
+ f = (float) event.getDamage();
|
+ f = (float) event.getDamage();
|
||||||
|
Loading…
Reference in New Issue
Block a user