Merge pull request #8123 from Ikarrus/randomspawns

Randomizes Order of Job Spawn Points
This commit is contained in:
Cheridan
2015-03-03 22:57:16 -06:00
4 changed files with 4 additions and 1 deletions
+1 -1
View File
@@ -330,7 +330,7 @@ var/datum/subsystem/job/SSjob
//If we joined at roundstart we should be positioned at our workstation
if(!joined_late)
var/obj/S = null
for(var/obj/effect/landmark/start/sloc in landmarks_list)
for(var/obj/effect/landmark/start/sloc in start_landmarks_list)
if(sloc.name != rank) continue
if(locate(/mob/living) in sloc.loc) continue
S = sloc
+1
View File
@@ -177,6 +177,7 @@ var/datum/subsystem/ticker/ticker
auto_toggle_ooc(0) // Turn it off
round_start_time = world.time
start_landmarks_list = shuffle(start_landmarks_list) //Shuffle the order of spawn points so they dont always predictably spawn bottom-up and right-to-left
create_characters() //Create player characters and transfer them
collect_minds()
equip_characters()