Merge remote-tracking branch 'upstream/dev' into TheGreatEvents

Conflicts:
	code/modules/events/radiation_storm.dm
This commit is contained in:
PsiOmega
2014-11-05 14:33:33 +01:00
104 changed files with 1394 additions and 647 deletions

View File

@@ -152,6 +152,7 @@
var/use_overmap = 0
var/list/station_levels = list(1) // Defines which Z-levels the station exists on.
var/list/admin_levels= list(2) // Defines which Z-levels which are for admin functionality, for example including such areas as Central Command and the Syndicate Shuttle
var/list/contact_levels = list(1, 5) // Defines which Z-levels which, for example, a Code Red announcement may affect
var/list/player_levels = list(1, 3, 4, 5, 6) // Defines all Z-levels a character can typically reach
@@ -532,6 +533,9 @@
if("station_levels")
config.station_levels = text2numlist(value, ";")
if("admin_levels")
config.admin_levels = text2numlist(value, ";")
if("contact_levels")
config.contact_levels = text2numlist(value, ";")