// player teleport target (optional)
String target = options.getOptionValue('t');
if (target != null && !target.isEmpty())
{
AutoRefPlayer apl = match.getPlayer(target);
if (apl != null) player.teleport(apl.getLocation());
}
// if no player is specified, show teleport menu
else showPlayerTeleportMenu(player);
}
// if no options are given, show practice menu