Skip to content

Commit

Permalink
Merge pull request #588 from SeaPlusPlush/ban_panel_fix
Browse files Browse the repository at this point in the history
Added missing antags to ban panel
  • Loading branch information
dwasint authored Dec 20, 2023
2 parents 3888c90 + 8361825 commit 637fff4
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion code/modules/admin/sql_ban_system.dm
Original file line number Diff line number Diff line change
Expand Up @@ -346,29 +346,36 @@
ROLE_ALIEN,
ROLE_BLOB,
ROLE_BROTHER,
ROLE_BLOODSUCKER,
ROLE_BLOODSUCKERBREAKOUT,
ROLE_CHANGELING,
ROLE_CLOCK_CULTIST,
ROLE_CULTIST,
ROLE_HERETIC,
ROLE_HIVE,
ROLE_INFILTRATOR,
ROLE_MALF,
ROLE_MONSTERHUNTER,
ROLE_NINJA,
ROLE_OPERATIVE,
ROLE_OVERTHROW,
ROLE_REV,
ROLE_REVENANT,
ROLE_REV_HEAD,
ROLE_SENTIENT_DISEASE,
ROLE_SLASHER,
ROLE_SPIDER,
ROLE_SYNDICATE,
ROLE_TRAITOR,
ROLE_VAMPIRICACCIDENT,
ROLE_WIZARD,
),
)
for(var/department in long_job_lists)
output += "<div class='column'><label class='rolegroup long [ckey(department)]'>[tgui_fancy ? "<input type='checkbox' name='[department]' class='hidden' onClick='header_click_all_checkboxes(this)'>" : ""][department]</label><div class='content'>"
break_counter = 0
for(var/job in long_job_lists[department])
if(break_counter > 0 && (break_counter % 10 == 0))
if(break_counter > 0 && (break_counter % 8 == 0))
output += "<br>"
output += {"<label class='inputlabel checkbox'>[job]
<input type='checkbox' name='[job]' class='[department]' value='1'>
Expand Down

0 comments on commit 637fff4

Please sign in to comment.