[SPIGOT-4647] Cancelling VehicleDamage on boat doesn't prevent "knockback" velocity Created: 03/Mar/19  Updated: 05/Mar/19  Resolved: 05/Mar/19

Status: Resolved
Project: Spigot
Component/s: None
Affects Version/s: None
Fix Version/s: None

Type: Bug Priority: Minor
Reporter: KoekenMeneer Assignee: Unassigned
Resolution: Fixed Votes: 0
Labels: boats, damage
Environment:

Windows 10 Pro


Version: This server is running CraftBukkit version git-Spigot-3cb9dcb-0f708cb (MC: 1.13.2) (Implementing API version 1.13.2-R0.1-SNAPSHOT)
Guidelines Read: Yes

 Description   

When a sprinting player leftclicks a boat and the VehicleDamageEvent it calls gets cancelled, the boat doesn't receive any damage, but it does however get receive the "damage knockback" velocity.

I'm not exactly sure why this is caused, but I might have found the cause, which could be in the 

boolean damageEntity(DamageSource damagesource, float f)

of EntityBoat.

In this method, it basically calls the event:

VehicleDamageEvent event = new VehicleDamageEvent(vehicle, attacker, (double)f);
this.world.getServer().getPluginManager().callEvent(event);
if (event.isCancelled()) {
    return true;
} else // Handle stuff here

Hower, as you can see it returns true. I think it should actually return false there for the event to be cancelled correctly. If I use the IntelliJ java debugger to force return false here, the knockback is gone and it appears to work correctly. Though... I'm not sure if returning false has potentially other damaging effects on other plugins or whatsoever, for me it fixed the problem of this issue though


Generated at Thu Apr 03 16:47:41 UTC 2025 using Jira 10.3.3#10030003-sha1:d220e3fefc8dfc6d47f522d3b9a20c1455e12b7b.