start of work moving commands to lua

This commit is contained in:
Tahir Akhlaq 2016-06-16 01:50:13 +01:00
parent 1159c75ab8
commit 57b9d5ab99
20 changed files with 703 additions and 67 deletions

View file

@ -292,7 +292,7 @@ namespace FFXIVClassic_Map_Server.Actors
{
if (a is Player)
{
if (((Player)a).customDisplayName.Equals(name))
if (((Player)a).customDisplayName.ToLower().Equals(name.ToLower()))
return (Player)a;
}
}