mirror of
https://github.com/islehorse/HISP.git
synced 2025-04-09 06:35:42 +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;
|
continue;
|
||||||
if (client.LoggedIn)
|
if (client.LoggedIn)
|
||||||
{
|
{
|
||||||
if (client.LoggedinUser.Username.ToLower().Contains(name))
|
if (client.LoggedinUser.Username.ToLower().Contains(name.ToLower()))
|
||||||
{
|
{
|
||||||
return client.LoggedinUser;
|
return client.LoggedinUser;
|
||||||
}
|
}
|
||||||
|
@ -59,7 +59,7 @@ namespace HISP.Game.Chat
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (args[0].ToUpper() == "HORSE")
|
else if (args[0].ToUpper() == "HORSE")
|
||||||
{
|
{
|
||||||
int horseId = 0;
|
int horseId = 0;
|
||||||
try
|
try
|
||||||
|
|
Loading…
Add table
Reference in a new issue