mirror of
https://github.com/plexusorg/Plex-FAWE.git
synced 2024-12-23 09:47: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
|
@Override
|
||||||
public void findFreePosition(Location searchPos) {
|
public void findFreePosition(Location searchPos) {
|
||||||
if (allowTeleport) {
|
if (allowTeleport) {
|
||||||
super.setPosition(searchPos);
|
super.findFreePosition(searchPos);
|
||||||
update();
|
update();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -55,7 +55,7 @@ public class LocationMaskedPlayerWrapper extends AsyncPlayer {
|
|||||||
@Override
|
@Override
|
||||||
public void setOnGround(Location searchPos) {
|
public void setOnGround(Location searchPos) {
|
||||||
if (allowTeleport) {
|
if (allowTeleport) {
|
||||||
super.setPosition(searchPos);
|
super.setOnGround(searchPos);
|
||||||
update();
|
update();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user