mirror of
https://github.com/plexusorg/Plex-FAWE.git
synced 2024-12-22 17:27:38 +00:00
correclty implement findFreePosition and setOnGround to fix navigation wand teleport issues
This commit is contained in:
parent
487e6c9fa3
commit
e23c76511d
@ -47,7 +47,7 @@ public class LocationMaskedPlayerWrapper extends AsyncPlayer {
|
||||
@Override
|
||||
public void findFreePosition(Location searchPos) {
|
||||
if (allowTeleport) {
|
||||
super.setPosition(searchPos);
|
||||
super.findFreePosition(searchPos);
|
||||
update();
|
||||
}
|
||||
}
|
||||
@ -55,7 +55,7 @@ public class LocationMaskedPlayerWrapper extends AsyncPlayer {
|
||||
@Override
|
||||
public void setOnGround(Location searchPos) {
|
||||
if (allowTeleport) {
|
||||
super.setPosition(searchPos);
|
||||
super.setOnGround(searchPos);
|
||||
update();
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user