🐛 Fix class mixup
continuous-integration/drone/push Build is passing Details

pull/104/head
Alexis Drai 2 years ago
parent fc6a71801f
commit ca6b62574e

@ -17,11 +17,11 @@ namespace Data.EF.Players
public override bool Equals(object? obj) public override bool Equals(object? obj)
{ {
if (obj is not Player) if (obj is not PlayerEntity)
{ {
return false; return false;
} }
return Equals(obj as Player); return Equals(obj as PlayerEntity);
} }
public bool Equals(PlayerEntity? other) public bool Equals(PlayerEntity? other)

Loading…
Cancel
Save