diff --git a/code/game/machinery/podmen.dm b/code/game/machinery/podmen.dm index ec21be9d83e..06f6172fc34 100644 --- a/code/game/machinery/podmen.dm +++ b/code/game/machinery/podmen.dm @@ -98,6 +98,8 @@ Growing it to term with nothing injected will grab a ghost from the observers. * /obj/item/seeds/replicapod/proc/request_player() for(var/mob/O in respawnable_list) + if(jobban_isbanned(O, "Dionaea")) + continue if(O.client) // message_admins("Found client for nymph") if(O.client.prefs.be_special & BE_PLANT) diff --git a/code/modules/admin/topic.dm b/code/modules/admin/topic.dm index 5de8f1a939c..776ac5c9db2 100644 --- a/code/modules/admin/topic.dm +++ b/code/modules/admin/topic.dm @@ -636,6 +636,8 @@ else jobs += "[replacetext("Wizard", " ", " ")]" + + /* //Malfunctioning AI //Removed Malf-bans because they're a pain to impliment if(jobban_isbanned(M, "malf AI") || isbanned_dept) jobs += "[replacetext("Malf AI", " ", " ")]" @@ -654,11 +656,30 @@ else jobs += "[replacetext("Infested Monkey", " ", " ")]" */ + + jobs += "" + + //Other races (BLUE, because I have no idea what other color to make this) + jobs += "" + jobs += "" + + //NYMPH + if(jobban_isbanned(M, "Dionaea")) + jobs += "" + else + jobs += "" + + //ERT + if(jobban_isbanned(M, "Emergency Response Team") || isbanned_dept) + jobs += "" + else + jobs += "" + jobs += "
Other
Dionaea NymphDionaeaEmergency Response TeamEmergency Response Team
" body = "[jobs]" dat = "[header][body]" - usr << browse(dat, "window=jobban2;size=800x450") + usr << browse(dat, "window=jobban2;size=800x490") return //JOBBAN'S INNARDS