mirror of
https://github.com/islehorse/HISP.git
synced 2025-04-07 05:35:41 +12:00
Fix casing
This commit is contained in:
parent
084cf658d2
commit
831523da45
1 changed files with 2 additions and 2 deletions
|
@ -19,7 +19,7 @@ namespace HISP.Game.Chat
|
|||
continue;
|
||||
if (client.LoggedIn)
|
||||
{
|
||||
if (client.LoggedinUser.Username.ToLower().Contains(name))
|
||||
if (client.LoggedinUser.Username.ToLower().Contains(name.ToLower()))
|
||||
{
|
||||
return client.LoggedinUser;
|
||||
}
|
||||
|
@ -59,7 +59,7 @@ namespace HISP.Game.Chat
|
|||
return false;
|
||||
}
|
||||
}
|
||||
if (args[0].ToUpper() == "HORSE")
|
||||
else if (args[0].ToUpper() == "HORSE")
|
||||
{
|
||||
int horseId = 0;
|
||||
try
|
||||
|
|
Loading…
Add table
Reference in a new issue