diff --git a/code/modules/admin/player_panel.dm b/code/modules/admin/player_panel.dm index a2a04b36ee3..f65634c70ba 100644 --- a/code/modules/admin/player_panel.dm +++ b/code/modules/admin/player_panel.dm @@ -65,8 +65,11 @@ dat += "[M.mind.assigned_role] (No ID)" else if(isnull(id.assignment)) // Preventing runtime errors blocking the player panel - usr << "ERROR: Inform the coders that an [id.name] was checked for its assignment variable, and it was null." - dat += "ERROR" + if(istype(id, /obj/item/weapon/card/id/syndicate)) + dat += "Antagonist" + else + usr << "ERROR: Inform the coders that an [id.name] was checked for its assignment variable, and it was null." + dat += "ERROR" else if(M.mind.assigned_role == id.assignment) // Polymorph