Some command fixes

This commit is contained in:
hondacrx
2018-01-04 18:28:30 -05:00
parent 796fcd9242
commit 24c91cee05
2 changed files with 8 additions and 4 deletions
+2 -2
View File
@@ -289,7 +289,7 @@ namespace Game.Chat
handler.SendSysMessage(CypherStrings.SelectCreature);
return false;
}
string text = args.NextString();
string text = args.GetString();
creature.Say(text, Language.Universal);
// make some emotes
@@ -316,7 +316,7 @@ namespace Game.Chat
return false;
string receiver_str = args.NextString();
string text = args.NextString();
string text = args.NextString("");
if (string.IsNullOrEmpty(receiver_str) || string.IsNullOrEmpty(text))
{