HumanoidCharacterProfileFix (#39333)
This commit is contained in:
parent
2b995b6be4
commit
dce074ec24
|
|
@ -758,10 +758,17 @@ namespace Content.Shared.Preferences
|
||||||
var namingSystem = IoCManager.Resolve<IEntitySystemManager>().GetEntitySystem<NamingSystem>();
|
var namingSystem = IoCManager.Resolve<IEntitySystemManager>().GetEntitySystem<NamingSystem>();
|
||||||
return namingSystem.GetName(species, gender);
|
return namingSystem.GetName(species, gender);
|
||||||
}
|
}
|
||||||
|
public bool Equals(HumanoidCharacterProfile? other)
|
||||||
|
{
|
||||||
|
if (other is null)
|
||||||
|
return false;
|
||||||
|
|
||||||
|
return ReferenceEquals(this, other) || MemberwiseEquals(other);
|
||||||
|
}
|
||||||
|
|
||||||
public override bool Equals(object? obj)
|
public override bool Equals(object? obj)
|
||||||
{
|
{
|
||||||
return ReferenceEquals(this, obj) || obj is HumanoidCharacterProfile other && Equals(other);
|
return obj is HumanoidCharacterProfile other && Equals(other);
|
||||||
}
|
}
|
||||||
|
|
||||||
public override int GetHashCode()
|
public override int GetHashCode()
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue