diff --git a/code/controllers/subsystem/SSjobs.dm b/code/controllers/subsystem/SSjobs.dm index c3df11a2980..8d62e4cd188 100644 --- a/code/controllers/subsystem/SSjobs.dm +++ b/code/controllers/subsystem/SSjobs.dm @@ -534,6 +534,7 @@ SUBSYSTEM_DEF(jobs) // Key: name | Value: Amount var/datum/job/J = GetJob(job) if(!J) + stack_trace("`[job]` not found while setting max slots. Check for misspellings or alternate titles") continue J.total_positions = text2num(joblist[job]) J.spawn_positions = text2num(joblist[job]) diff --git a/code/modules/mob/living/simple_animal/hostile/retaliate/clown.dm b/code/modules/mob/living/simple_animal/hostile/retaliate/clown.dm index c5cbbcca516..1dacf1a5b39 100644 --- a/code/modules/mob/living/simple_animal/hostile/retaliate/clown.dm +++ b/code/modules/mob/living/simple_animal/hostile/retaliate/clown.dm @@ -43,7 +43,7 @@ mob_biotypes = MOB_ORGANIC response_help = "honks the" speak = list("Honk!") - speak_emote = list("sqeaks") + speak_emote = list("squeaks") emote_see = list("honks") maxHealth = 100 health = 100 diff --git a/config/example/config.toml b/config/example/config.toml index fa1b37dd16e..801c2fd7b86 100644 --- a/config/example/config.toml +++ b/config/example/config.toml @@ -409,7 +409,7 @@ job_slot_amounts = [ {name = "Research Director", lowpop = 1, highpop = 1}, {name = "Chief Medical Officer", lowpop = 1, highpop = 1}, # Engineering - {name = "Atmospheric Technician", lowpop = 3, highpop = 4}, + {name = "Life Support Specialist", lowpop = 3, highpop = 4}, {name = "Station Engineer", lowpop = 5, highpop = 6}, # Medical {name = "Chemist", lowpop = 2, highpop = 2}, @@ -417,19 +417,19 @@ job_slot_amounts = [ {name = "Medical Doctor", lowpop = 5, highpop = 6}, {name = "Virologist", lowpop = 1, highpop = 1}, # Science - {name = "Robotocist", lowpop = 2, highpop = 2}, + {name = "Roboticist", lowpop = 2, highpop = 2}, {name = "Scientist", lowpop = 6, highpop = 7}, # Security {name = "Detective", lowpop = 1, highpop = 1}, {name = "Security Officer", lowpop = 8, highpop = 9}, {name = "Warden", lowpop = 1, highpop = 1}, + {name = "Internal Affairs Agent", lowpop = 2, highpop = 2}, # Service {name = "Bartender", lowpop = 1, highpop = 1}, {name = "Botanist", lowpop = 2, highpop = 2}, {name = "Chaplain", lowpop = 1, highpop = 1}, {name = "Chef", lowpop = 1, highpop = 1}, {name = "Janitor", lowpop = 1, highpop = 2}, - {name = "Lawyer", lowpop = 2, highpop = 2}, {name = "Librarian", lowpop = 1, highpop = 1}, # Cargo/Supply {name = "Quartermaster", lowpop = 1, highpop = 1},