diff --git a/code/modules/mob/dead/new_player/new_player.dm b/code/modules/mob/dead/new_player/new_player.dm index 1dd48f69af..7cdcae1281 100644 --- a/code/modules/mob/dead/new_player/new_player.dm +++ b/code/modules/mob/dead/new_player/new_player.dm @@ -355,6 +355,10 @@ var/mob/living/carbon/human/humanc if(ishuman(character)) + if(prob(10) && GLOB.master_mode != "extended") + humanc.generate_miscreant_objectives() + else + humanc.generate_individual_objectives() humanc = character //Let's retypecast the var to be human, if(humanc) //These procs all expect humans @@ -367,10 +371,6 @@ if(GLOB.highlander) to_chat(humanc, "THERE CAN BE ONLY ONE!!!") humanc.make_scottish() - if(prob(10) && GLOB.master_mode != "extended") - humanc.generate_miscreant_objectives() - else - humanc.generate_individual_objectives() GLOB.joined_player_list += character.ckey GLOB.latejoiners += character