mirror of
https://github.com/Grasscutters/Grasscutter.git
synced 2026-05-18 17:30:11 +08:00
29 lines
849 B
Java
29 lines
849 B
Java
package emu.grasscutter.command.commands;
|
|
|
|
import emu.grasscutter.command.*;
|
|
import emu.grasscutter.game.player.Player;
|
|
import emu.grasscutter.game.world.Position;
|
|
import java.util.List;
|
|
|
|
@Command(
|
|
label = "position",
|
|
aliases = {"pos"})
|
|
public final class PositionCommand implements CommandHandler {
|
|
|
|
@Override
|
|
public void execute(Player sender, Player targetPlayer, List<String> args) {
|
|
Position pos = targetPlayer.getPosition();
|
|
Position rot = targetPlayer.getRotation();
|
|
CommandHandler.sendTranslatedMessage(
|
|
sender,
|
|
"commands.position.success",
|
|
pos.getX(),
|
|
pos.getY(),
|
|
pos.getZ(),
|
|
rot.getX(),
|
|
rot.getY(),
|
|
rot.getZ(),
|
|
targetPlayer.getSceneId());
|
|
}
|
|
}
|