MudEngine:

- Some minor changes to removal of unwanted characters in commands.
This commit is contained in:
Scionwest_cp 2010-08-01 19:26:26 -07:00
parent 29cdae3b1a
commit bc05eba56e
2 changed files with 11 additions and 3 deletions

View file

@ -42,8 +42,13 @@ namespace MudEngine.Commands
if (!foundName)
{
isLegal = true;
player.Name = input;
if (input == "")
continue;
else
{
isLegal = true;
player.Name = input;
}
}
}