mirror of
https://github.com/Melledy/Grasscutter.git
synced 2024-11-23 21:47:39 +00:00
Adding /pos
Some people want to get the coordinate, here you go!
This commit is contained in:
parent
968693b84d
commit
1e7d537965
@ -573,6 +573,17 @@ public final class PlayerCommands {
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@Command(label = "pos",
|
||||
usage = "Usage: pos", description = "Get coordinates.",
|
||||
execution = Command.Execution.PLAYER)
|
||||
public static class CordCommand implements CommandHandler {
|
||||
|
||||
@Override
|
||||
public void execute(GenshinPlayer player, List<String> args) {
|
||||
player.dropMessage(String.format("Coord: %.3f, %.3f, %.3f", player.getPos().getX(), player.getPos().getY(), player.getPos().getZ()));
|
||||
}
|
||||
}
|
||||
|
||||
@Command(label = "restart", usage = "Usage: restart", description = "Restarts the current session", execution = Command.Execution.PLAYER, permission = "player.restart")
|
||||
public static class RestartCommand implements CommandHandler {
|
||||
|
Loading…
Reference in New Issue
Block a user