diff --git a/code/modules/admin/topic.dm b/code/modules/admin/topic.dm
index f1c911488a..6f25d8b05a 100644
--- a/code/modules/admin/topic.dm
+++ b/code/modules/admin/topic.dm
@@ -510,6 +510,12 @@
if(counter >= 5) //So things dont get squiiiiished!
jobs += "
"
counter = 0
+
+ if(jobban_isbanned(M, "Internal Affairs Agent"))
+ jobs += "| Internal Affairs Agent | "
+ else
+ jobs += "Internal Affairs Agent | "
+
jobs += "
"
//Non-Human (Green)
@@ -583,6 +589,13 @@
else
jobs += "[replacetext("Wizard", " ", " ")] | "
+ //ERT
+ if(jobban_isbanned(M, "Emergency Response Team") || isbanned_dept)
+ jobs += "Emergency Response Team | "
+ else
+ jobs += "Emergency Response Team | "
+
+
/* //Malfunctioning AI //Removed Malf-bans because they're a pain to impliment
if(jobban_isbanned(M, "malf AI") || isbanned_dept)
jobs += "[replacetext("Malf AI", " ", " ")] | "
@@ -2594,4 +2607,4 @@
show_player_info(ckey)
if("list")
PlayerNotesPage(text2num(href_list["index"]))
- return
\ No newline at end of file
+ return