Fix blank name in /command

This commit is contained in:
Bluzume 2021-11-06 03:53:31 -04:00
parent 7ced894158
commit 66162d2490

View file

@ -5798,7 +5798,9 @@ namespace HISP.Server
channel = Chat.ChatChannel.Dm;
string find = channelString.Substring(1);
nameTo = "";
// Search for closest user
if (find == "")
break;
// Search for closest-matching user
foreach (GameClient client in GameClient.ConnectedClients)
{
if (client.LoggedIn)