Fix RoleUnban referring to the wrong ban type (#6885)

This commit is contained in:
ShadowCommander
2022-02-24 15:59:38 -08:00
committed by GitHub
parent 4720ea9af0
commit b99b1f4008

View File

@@ -432,7 +432,7 @@ namespace Content.Server.Database
[Column("role_unban_id")] public int Id { get; set; }
public int BanId { get; set; }
public ServerBan Ban { get; set; } = null!;
public ServerRoleBan Ban { get; set; } = null!;
public Guid? UnbanningAdmin { get; set; }