Added handling for space travel/stragglers.

Now new empty space levels are created if needed.
Added config option to use overmap system, ticked files in.

Conflicts:
	code/setup.dm
This commit is contained in:
Chinsky
2014-07-15 16:01:04 +04:00
parent 68fc5d91c6
commit c7257c1bf2
7 changed files with 104 additions and 11 deletions

View File

@@ -147,6 +147,7 @@
var/admin_irc = ""
var/python_path = "" //Path to the python executable. Defaults to "python" on windows and "/usr/bin/env python2" on unix
var/use_lib_nudge = 0 //Use the C library nudge instead of the python nudge.
var/use_overmap = 0
/datum/configuration/New()
var/list/L = typesof(/datum/game_mode) - /datum/game_mode
@@ -502,6 +503,9 @@
if("max_maint_drones")
config.max_maint_drones = text2num(value)
if("use_overmap")
config.use_overmap = 1
else
log_misc("Unknown setting in configuration: '[name]'")