diff --git a/code/game/gamemodes/cult/runes.dm b/code/game/gamemodes/cult/runes.dm index b2972d2ff2a..f8b743eb701 100644 --- a/code/game/gamemodes/cult/runes.dm +++ b/code/game/gamemodes/cult/runes.dm @@ -107,7 +107,7 @@ var/list/sacrificed = list() M.visible_message("\red [M] writhes in pain as the markings below him glow a bloody red.", \ "\red AAAAAAHHHH!.", \ "\red You hear an anguished scream.") - if(is_convertable_to_cult(M.mind)) + if(is_convertable_to_cult(M.mind) && !jobban_isbanned(M, "cultist"))//putting jobban check here because is_convertable uses mind as argument ticker.mode.add_cultist(M.mind) M.mind.special_role = "Cultist" M << "Your blood pulses. Your head throbs. The world goes red. All at once you are aware of a horrible, horrible truth. The veil of reality has been ripped away and in the festering wound left behind something sinister takes root." @@ -370,6 +370,8 @@ var/list/sacrificed = list() break if(!ghost) return this_rune.fizzle() + if(jobban_isbanned(ghost, "cultist")) + return this_rune.fizzle() usr.say("Gal'h'rfikk harfrandid mud[pick("'","`")]gib!") var/mob/living/carbon/human/dummy/D = new(this_rune.loc) diff --git a/code/modules/mob/living/simple_animal/friendly/mouse.dm b/code/modules/mob/living/simple_animal/friendly/mouse.dm index ff45d972013..774810be306 100644 --- a/code/modules/mob/living/simple_animal/friendly/mouse.dm +++ b/code/modules/mob/living/simple_animal/friendly/mouse.dm @@ -74,6 +74,9 @@ // if(!istype(V,/obj/machinery/atmoalter/siphs/fullairsiphon/air_vent)) // return + + if(src.stat != CONSCIOUS) return + var/obj/machinery/atmospherics/unary/vent_pump/vent_found var/welded = 0 for(var/obj/machinery/atmospherics/unary/vent_pump/v in range(1,src)) diff --git a/code/modules/research/designs.dm b/code/modules/research/designs.dm index fa0c2b39359..b231729fa13 100644 --- a/code/modules/research/designs.dm +++ b/code/modules/research/designs.dm @@ -595,7 +595,7 @@ datum/design/posibrain build_type = PROTOLATHE materials = list("$metal" = 2000, "$glass" = 1000, "$silver" = 1000, "$gold" = 500, "$plasma" = 500, "$diamond" = 100) - build_path = "/obj/item/device/posibrain" + build_path = "/obj/item/device/mmi/posibrain" /////////////////////////////////// //////////Mecha Module Disks///////