fix: Cleans up create guild gump (#1326)
This commit is contained in:
parent
b11ca29987
commit
8b3a2f9f5f
2 changed files with 20 additions and 32 deletions
|
|
@ -71,7 +71,7 @@ public abstract class BaseGuild : ISerializable
|
|||
{
|
||||
foreach (var g in World.Guilds.Values)
|
||||
{
|
||||
if (g.Name == name)
|
||||
if (g.Name.InsensitiveEquals(name))
|
||||
{
|
||||
return g;
|
||||
}
|
||||
|
|
@ -84,7 +84,7 @@ public abstract class BaseGuild : ISerializable
|
|||
{
|
||||
foreach (var g in World.Guilds.Values)
|
||||
{
|
||||
if (g.Abbreviation == abbr)
|
||||
if (g.Abbreviation.InsensitiveEquals(abbr))
|
||||
{
|
||||
return g;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue