From b99b1f40089c9a4b882222207149a0212247d350 Mon Sep 17 00:00:00 2001 From: ShadowCommander <10494922+ShadowCommander@users.noreply.github.com> Date: Thu, 24 Feb 2022 15:59:38 -0800 Subject: [PATCH] Fix RoleUnban referring to the wrong ban type (#6885) --- Content.Server.Database/Model.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Server.Database/Model.cs b/Content.Server.Database/Model.cs index 8119091553..769484ffd3 100644 --- a/Content.Server.Database/Model.cs +++ b/Content.Server.Database/Model.cs @@ -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; }