[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. This is because the client is trying to enter the boat with both its main hand and its off hand. |