chaseoes / FirstJoinPlus

Customize all aspects of new players joining for the first time.
http://dev.bukkit.org/bukkit-plugins/firstjoinplus/
11 stars 16 forks source link

teleport-position: "pitch" & "yaw" inverse #55

Closed RedstoneFuture closed 7 years ago

chaseoes commented 7 years ago

You're going to have to be a bit more specific.

RedstoneFuture commented 7 years ago

correctly "pitch" = "yaw" in the config and correctly "yaw" = "pitch" in the config

chaseoes commented 7 years ago

It's already correct though. According to the Bukkit JavaDocs this is the format for a Location object:

Location(World world, double x, double y, double z, float yaw, float pitch)

If you look at line 49 that's exactly how it's formatted, it uses "yaw" from the config for the yaw and the "pitch" from the config for the pitch.

RedstoneFuture commented 7 years ago

Yes. Sorry. My warpplugin are wrong.

chaseoes commented 7 years ago

You can also just stand where you want it to be and use /fjp setspawn.

RedstoneFuture commented 7 years ago

Ah ... yes, its a good idea! :) Thanks.