mirror of
https://github.com/Grasscutters/Grasscutter.git
synced 2026-02-07 02:26:43 +01:00
30 lines
897 B
Java
30 lines
897 B
Java
package emu.grasscutter.command.commands;
|
|
|
|
import emu.grasscutter.command.Command;
|
|
import emu.grasscutter.command.CommandHandler;
|
|
import emu.grasscutter.game.player.Player;
|
|
import emu.grasscutter.utils.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());
|
|
}
|
|
}
|