[ChatCommand("rename")]
private void RenameCommand(IPlayer player, string command, string[] args)
{
if (player.IsAdmin)
{
player.Rename(args[0]);
}
}I'm trying to allow admins to change their names. Everything works if instead of args[0] i put a string like "TEST" but nothing works with args any ideas why?