Added -f flag to bypass findFreePosition in jumpto
This commit is contained in:
parent
2fef5e2e40
commit
7f659a8b4f
@ -168,7 +168,10 @@ public class NavigationCommands {
|
|||||||
@Command(
|
@Command(
|
||||||
aliases = {"jumpto", "j"},
|
aliases = {"jumpto", "j"},
|
||||||
usage = "[world,x,y,z]",
|
usage = "[world,x,y,z]",
|
||||||
desc = "Teleport to a location",
|
desc = "Teleport to a location" +
|
||||||
|
"Flags:\n" +
|
||||||
|
" -f forces the specified position to be used",
|
||||||
|
flags = "f",
|
||||||
min = 0,
|
min = 0,
|
||||||
max = 1
|
max = 1
|
||||||
)
|
)
|
||||||
@ -189,7 +192,7 @@ public class NavigationCommands {
|
|||||||
pos = player.getSolidBlockTrace(300);
|
pos = player.getSolidBlockTrace(300);
|
||||||
}
|
}
|
||||||
if (pos != null) {
|
if (pos != null) {
|
||||||
player.findFreePosition(pos);
|
if(args.hasFlag('f')) player.setPosition(pos); else player.findFreePosition(pos);
|
||||||
BBC.POOF.send(player);
|
BBC.POOF.send(player);
|
||||||
} else {
|
} else {
|
||||||
BBC.NO_BLOCK.send(player);
|
BBC.NO_BLOCK.send(player);
|
||||||
|
Loading…
Reference in New Issue
Block a user