}
}
@Command(shortDescription = "Teleports you to a location", runOnServer = true)
public void teleport(@CommandParam("x") float x, @CommandParam("y") float y, @CommandParam("z") float z, EntityRef client) {
ClientComponent clientComp = client.getComponent(ClientComponent.class);
LocationComponent location = clientComp.character.getComponent(LocationComponent.class);
if (location != null) {
location.setWorldPosition(new Vector3f(x, y, z));
clientComp.character.saveComponent(location);
}