[SPIGOT-5562] Entering a boat triggers "VehicleExitEvent" Created: 02/Feb/20  Updated: 24/Jun/20  Resolved: 24/Jun/20

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: VehicleExitEvent, boat
Environment:

Windows 10 using latest Spigot


Version: This server is running CraftBukkit version git-Spigot-c574e08-d70084e (MC: 1.15.2) (Implementing API version 1.15.2-R0.1-SNAPSHOT)
Guidelines Read: Yes

 Description   

When you enter a boat, for some reason it instantly triggers a VehicleExitEvent. This behavior can be tested with the following (Kotlin) code:

 

@Plugin(name = "TestPlugin", version = "1.0")
class TestPlugin : JavaPlugin(), Listener {
    override fun onEnable() {
        super.onEnable()
        server.pluginManager.registerEvents(this, this)
    }

    @EventHandler
    fun onVehicleExit(event: VehicleExitEvent) {
            server.logger.info("Vehicle exit called for %s".format(event.exited.type.name))
    }
}

 

When you enter a boat, it instantly calls a VehicleExitEvent for some reason. This does not happen with entities like Minecarts, and I don't expect this to happen when entering a boat



 Comments   
Comment by md_5 [ 02/Feb/20 ]

It's not that simple and possibly not even a bug we can fix.
If you look you will also see there are two enter events.

This is because the client is trying to enter the boat with both its main hand and its off hand.
It first enters with the main hand, then attempts to enter with the off hand. This causes the client to exit and then re enter the boat.

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