mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-08-23 03:57:48 +01:00
Merge branch 'master' of https://github.com/PolarisSS13/Polaris into aro-sync-04252018
# Conflicts: # README.md # code/game/jobs/job/job.dm # code/modules/client/preference_setup/loadout/loadout_utility.dm # code/modules/mob/living/carbon/human/examine.dm # code/modules/mob/living/carbon/human/npcs.dm # code/modules/mob/living/carbon/human/species/station/prometheans.dm # html/changelogs/.all_changelog.yml # maps/RandomZLevels/Academy.dmm # maps/RandomZLevels/beach.dmm # maps/RandomZLevels/blackmarketpackers.dmm # maps/RandomZLevels/challenge.dmm # maps/RandomZLevels/example.dmm # maps/RandomZLevels/jungle.dmm # maps/RandomZLevels/listeningpost.dmm # maps/RandomZLevels/spacebattle.dmm # maps/RandomZLevels/stationCollision.dmm # maps/RandomZLevels/wildwest.dmm # maps/RandomZLevels/zresearchlabs.dmm # maps/northern_star/polaris-1.dmm # maps/southern_cross/southern_cross-1.dmm # maps/southern_cross/southern_cross-3.dmm # maps/southern_cross/southern_cross-6.dmm # maps/southern_cross/southern_cross-7.dmm # maps/submaps/surface_submaps/mountains/CrashedMedShuttle1.dmm # maps/submaps/surface_submaps/plains/Boathouse.dmm # maps/submaps/surface_submaps/wilderness/Blackshuttledown.dmm # maps/submaps/surface_submaps/wilderness/Boombase.dmm # maps/submaps/surface_submaps/wilderness/DJOutpost1.dmm # maps/submaps/surface_submaps/wilderness/DecoupledEngine.dmm # maps/submaps/surface_submaps/wilderness/Drugden.dmm # maps/submaps/surface_submaps/wilderness/Rockybase.dmm # maps/submaps/surface_submaps/wilderness/Shack1.dmm # maps/virgo/virgo-6.dmm # vorestation.dme
This commit is contained in:
@@ -9,7 +9,7 @@
|
||||
SUBSYSTEM_DEF(air)
|
||||
name = "Air"
|
||||
init_order = INIT_ORDER_AIR
|
||||
priority = 35
|
||||
priority = FIRE_PRIORITY_AIR
|
||||
wait = 2 SECONDS // seconds (We probably can speed this up actually)
|
||||
flags = SS_BACKGROUND // TODO - Should this really be background? It might be important.
|
||||
runlevels = RUNLEVEL_GAME | RUNLEVEL_POSTGAME
|
||||
|
||||
@@ -14,7 +14,7 @@ SUBSYSTEM_DEF(airflow)
|
||||
wait = 2
|
||||
flags = SS_NO_INIT
|
||||
runlevels = RUNLEVEL_GAME | RUNLEVEL_POSTGAME
|
||||
priority = 30
|
||||
priority = FIRE_PRIORITY_AIRFLOW
|
||||
|
||||
var/list/processing = list()
|
||||
var/list/currentrun = list()
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
//
|
||||
SUBSYSTEM_DEF(garbage)
|
||||
name = "Garbage"
|
||||
priority = 15
|
||||
priority = FIRE_PRIORITY_GARBAGE
|
||||
wait = 2 SECONDS
|
||||
flags = SS_POST_FIRE_TIMING|SS_BACKGROUND|SS_NO_INIT
|
||||
runlevels = RUNLEVELS_DEFAULT | RUNLEVEL_LOBBY
|
||||
|
||||
@@ -12,7 +12,7 @@
|
||||
|
||||
SUBSYSTEM_DEF(machines)
|
||||
name = "Machines"
|
||||
priority = 100
|
||||
priority = FIRE_PRIORITY_MACHINES
|
||||
init_order = INIT_ORDER_MACHINES
|
||||
flags = SS_KEEP_TIMING
|
||||
runlevels = RUNLEVEL_GAME|RUNLEVEL_POSTGAME
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
SUBSYSTEM_DEF(orbit)
|
||||
name = "Orbits"
|
||||
priority = 8 // FIRE_PRIORITY_ORBIT
|
||||
priority = FIRE_PRIORITY_ORBIT
|
||||
wait = 2
|
||||
flags = SS_NO_INIT|SS_TICKER
|
||||
|
||||
|
||||
@@ -8,7 +8,7 @@ var/global/datum/controller/subsystem/shuttles/shuttle_controller
|
||||
SUBSYSTEM_DEF(shuttles)
|
||||
name = "Shuttles"
|
||||
wait = 2 SECONDS
|
||||
priority = 5
|
||||
priority = FIRE_PRIORITY_SHUTTLES
|
||||
init_order = INIT_ORDER_SHUTTLES
|
||||
flags = SS_KEEP_TIMING|SS_NO_TICK_CHECK
|
||||
runlevels = RUNLEVEL_GAME|RUNLEVEL_POSTGAME
|
||||
|
||||
Reference in New Issue
Block a user