2022-04-21 06:48:24 +08:00
|
|
|
package emu.grasscutter.command.commands;
|
|
|
|
|
|
|
|
import emu.grasscutter.command.Command;
|
|
|
|
import emu.grasscutter.command.CommandHandler;
|
2022-04-27 12:24:25 +08:00
|
|
|
import emu.grasscutter.game.player.Player;
|
2022-05-04 17:16:42 +08:00
|
|
|
import emu.grasscutter.utils.Position;
|
2022-04-21 06:48:24 +08:00
|
|
|
|
|
|
|
import java.util.List;
|
|
|
|
|
2022-05-06 12:57:45 +08:00
|
|
|
import static emu.grasscutter.utils.Language.translate;
|
|
|
|
|
2022-06-13 10:32:36 +08:00
|
|
|
@Command(label = "position", usage = "position", aliases = {"pos"}, description = "commands.position.description")
|
2022-04-21 06:48:24 +08:00
|
|
|
public final class PositionCommand implements CommandHandler {
|
|
|
|
|
|
|
|
@Override
|
2022-05-04 14:32:09 +08:00
|
|
|
public void execute(Player sender, Player targetPlayer, List<String> args) {
|
2022-05-04 17:16:42 +08:00
|
|
|
Position pos = targetPlayer.getPos();
|
2022-05-10 20:33:45 +08:00
|
|
|
CommandHandler.sendMessage(sender, translate(sender, "commands.position.success",
|
2022-05-06 12:57:45 +08:00
|
|
|
Float.toString(pos.getX()), Float.toString(pos.getY()), Float.toString(pos.getZ()),
|
|
|
|
Integer.toString(targetPlayer.getSceneId())));
|
2022-04-21 06:48:24 +08:00
|
|
|
}
|
|
|
|
}
|