diff --git a/code/controllers/configuration.dm b/code/controllers/configuration.dm index 3a2ff120af3..5f3cc33c1ad 100644 --- a/code/controllers/configuration.dm +++ b/code/controllers/configuration.dm @@ -359,6 +359,12 @@ if("no_dead_vote") config.vote_no_dead = 1 + + if("vote_autotransfer_initial") + config.vote_autotransfer_initial = text2num(value) + + if("vote_autotransfer_interval") + config.vote_autotransfer_interval = text2num(value) if("default_no_vote") config.vote_no_default = 1 diff --git a/code/modules/shuttle/shuttle.dm b/code/modules/shuttle/shuttle.dm index dfa54f086d1..2983d6bf7d5 100644 --- a/code/modules/shuttle/shuttle.dm +++ b/code/modules/shuttle/shuttle.dm @@ -714,6 +714,8 @@ possible_destinations = C.possible_destinations shuttleId = C.shuttleId +/obj/machinery/computer/shuttle/Initialize() + ..() connect() /obj/machinery/computer/shuttle/proc/connect() diff --git a/config/example/config.txt b/config/example/config.txt index 40d9d870cf4..078d6bc006c 100644 --- a/config/example/config.txt +++ b/config/example/config.txt @@ -323,12 +323,6 @@ PLAYER_REROUTE_CAP 0 ## Disable the loading of space ruins #DISABLE_SPACE_RUINS -## Minimum number of space ruins levels to generate -EXTRA_SPACE_RUINS_LEVELS_MIN 2 - -## Maximum number of space ruins levels to generate -EXTRA_SPACE_RUINS_LEVELS_MAX 4 - ## Uncomment to disable the OOC/LOOC channel by default. #DISABLE_OOC