diff --git a/code/defines/obj/hydro.dm b/code/defines/obj/hydro.dm index bb58da8b2b4..d3f6df1d555 100644 --- a/code/defines/obj/hydro.dm +++ b/code/defines/obj/hydro.dm @@ -536,7 +536,7 @@ endurance = 30 maturation = 5 production = 1 - yield = 4 + yield = 1 potency = 0 oneharvest = 1 growthstages = 3 diff --git a/code/game/jobs/jobs.dm b/code/game/jobs/jobs.dm index 44bfd7b8a0e..c034bef3ac9 100644 --- a/code/game/jobs/jobs.dm +++ b/code/game/jobs/jobs.dm @@ -295,9 +295,14 @@ proc/assignment_algorithm(var/list/mob/new_player/players) var/list/occupations = list( //Civilian jobs "Head of Personnel" = 1, + //soul "Clown" = 1, "Mime" = 1, + "Chaplain" = 1, + "Librarian" = 1, + "Lawyer" = 1, + //body "Bartender" = 1, "Chef" = 1, @@ -310,6 +315,7 @@ var/list/occupations = list( "Chief Engineer" = 1, "Station Engineer" = 5, "Roboticist" = 1, + "Atmospheric Technician" = 4, //red shirts "Head of Security" = 1, diff --git a/code/game/objects/glowshroom.dm b/code/game/objects/glowshroom.dm index 991dfa6f084..0c3e4a5f037 100644 --- a/code/game/objects/glowshroom.dm +++ b/code/game/objects/glowshroom.dm @@ -61,10 +61,9 @@ if(prob(spreadIntoAdjacentChance)) spreadsIntoAdjacent = 1 - for(var/turf/turf in view(3,src)) - if(!turf.density && !istype(turf,/turf/space)) - if(spreadsIntoAdjacent || !locate(/obj/glowshroom) in view(1,turf)) - possibleLocs += turf + for(var/turf/simulated/floor/plating/airless/asteroid/earth in view(3,src)) + if(spreadsIntoAdjacent || !locate(/obj/glowshroom) in view(1,earth)) + possibleLocs += earth if(!possibleLocs.len) break diff --git a/icons/mob/head.dmi b/icons/mob/head.dmi index 5704c9e2200..c4c6a933d7c 100644 Binary files a/icons/mob/head.dmi and b/icons/mob/head.dmi differ diff --git a/icons/mob/suit.dmi b/icons/mob/suit.dmi index 9ffc5216b53..ccf424cceb8 100644 Binary files a/icons/mob/suit.dmi and b/icons/mob/suit.dmi differ