Few changes to how round start works.

Station Roles are picked before Syndie Roles unless it is nuke or wizard
People should no longer spawn in space because they did not get a job.
Heads and such should no longer get a role they should not have.
Rounds now have a minimum number of players required for it to start up.
Also the atmos pipes should stop exploding all over the place.


git-svn-id: http://tgstation13.googlecode.com/svn/trunk@1974 316c924e-a436-60f5-8080-3fe189b3f50e
This commit is contained in:
mport2004@gmail.com
2011-08-03 05:59:10 +00:00
parent 7c7252fab3
commit 0f15fd1567
18 changed files with 240 additions and 350 deletions

View File

@@ -21,9 +21,9 @@ datum/pipe_network
update = 0
reconcile_air() //equalize_gases(gases)
//Give pipelines their process call for pressure checking and what not
for(var/datum/pipeline/line_member in line_members)
line_member.process()
//Give pipelines their process call for pressure checking and what not. Have to remove pressure checks for the time being as pipes dont radiate heat - Mport
//for(var/datum/pipeline/line_member in line_members)
// line_member.process()
proc/build_network(obj/machinery/atmospherics/start_normal, obj/machinery/atmospherics/reference)
//Purpose: Generate membership roster

View File

@@ -18,7 +18,7 @@ datum/pipeline
..()
proc/process()
proc/process()//This use to be called called from the pipe networks
//Check to see if pressure is within acceptable limits
var/pressure = air.return_pressure()