Fixes expressions that are always true, null, or flase.

This commit is contained in:
Kamron Batman 2018-09-15 10:08:25 -07:00
parent 970fd563b2
commit 7321fa1b63
6 changed files with 14 additions and 29 deletions

View file

@ -53,14 +53,14 @@ namespace Server.Engines.Chat
accountChatName = accountChatName?.Trim();
if (accountChatName != null && accountChatName.Length > 0)
if (!string.IsNullOrEmpty(accountChatName))
{
if (chatName.Length > 0 && chatName != accountChatName)
from.SendMessage("You cannot change chat nickname once it has been set.");
}
else
{
if (chatName == null || chatName.Length == 0)
if (chatName.Length == 0)
{
SendCommandTo(from, ChatCommand.AskNewNickname);
return;