[SPIGOT-6660] player.teleport method doesn't work when initial teleport cause is chorus fruit Created: 19/Jul/21  Updated: 23/Jul/21

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

Type: Bug Priority: Minor
Reporter: Jiovanny Alejos Assignee: Unassigned
Resolution: Unresolved Votes: 0
Labels: bug, bukkit

Version: 1.17
Guidelines Read: Yes

 Description   

in my playerTeleport listener method i tried to execute player.teleport when the cause of the playerTeleport event is chorus fruit. there are no errors but the player does not teleport to my specified location After i canceled the chorus fruits teleport, but the player.teleport does work when the cause is an ender pearl



 Comments   
Comment by Jiovanny Alejos [ 23/Jul/21 ]

so i have no idea how to go about fixing it : (

Comment by Jiovanny Alejos [ 23/Jul/21 ]

I've also tried setTo and by delaying it by a tick but neither seems to work either

Comment by Marvin Rieple [ 20/Jul/21 ]

It is more the opposite the chorus fruit works as intended while the enderperl (as well as PLUGIN, NETHER_PORTAL, END_PORTAL and END_GATEWAY) teleportation is broken. Only CHORUS_FRUIT, SPECTATE and COMMAND work right.

If you look into the java docs of PlayerMoveEvent#setCancelled(boolean) it says that:

Sets the cancellation state of this event. A cancelled event will not be executed in the server, but will still pass to other plugins
 
If a move or teleport event is cancelled, the player will be moved or teleported back to the Location as defined by getFrom(). This will not fire an event

Which means after you teleport the player and cancelled the event the player got teleport back to the from location. Which is the intended behaviour of the event.

Comment by Black Hole [ 20/Jul/21 ]

There is a .setTo() method in the event object to set the target location.

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