HumanoidCharacterProfileFix (#39333)

This commit is contained in:
Krosus777
2025-08-02 17:14:16 +02:00
committed by GitHub
parent c444db0e58
commit e307fd69b0

View File

@@ -693,10 +693,17 @@ namespace Content.Shared.Preferences
var namingSystem = IoCManager.Resolve<IEntitySystemManager>().GetEntitySystem<NamingSystem>();
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)
{
return ReferenceEquals(this, obj) || obj is HumanoidCharacterProfile other && Equals(other);
return obj is HumanoidCharacterProfile other && Equals(other);
}
public override int GetHashCode()