WIP vaults

modify all the maps, replace restaurant with icecream truck

add rewards to ice cream truck and satelite, defines

fix maps

remove cursed satelite of doom

Add hivebot factory to replace haunted satelite. Fix minimaps for good

maploader lighting

woops

Adds clown base

remove exclamation marks

nerd

Adds a ruined R-UST vault.

Remove vaults from z1, fix hivebot factory
This commit is contained in:
unid15
2016-03-06 15:37:12 +01:00
parent f9253904c5
commit 0d70cb3943
29 changed files with 2173 additions and 1409 deletions

View File

@@ -168,6 +168,7 @@
var/mommi_static = 0 //Scrambling mobs for mommis or not
var/skip_minimap_generation = 0 //If 1, don't generate minimaps
var/skip_vault_generation = 0 //If 1, don't generate vaults
/datum/configuration/New()
. = ..()
@@ -528,6 +529,8 @@
mommi_static = 1
if("skip_minimap_generation")
skip_minimap_generation = 1
if("skip_vault_generation")
skip_vault_generation = 1
else
diary << "Unknown setting in configuration: '[name]'"

View File

@@ -179,6 +179,14 @@ datum/controller/game_controller/proc/cachedamageicons()
populate_asset_cache()
log_startup_progress(" Populated [asset_cache.len] assets in [stop_watch(watch)]s.")
if(!config.skip_vault_generation)
watch = start_watch()
log_startup_progress("Placing random space structures...")
generate_vaults()
log_startup_progress(" Finished placing structures in [stop_watch(watch)]s.")
else
log_startup_progress("Not generating vaults - SKIP_VAULT_GENERATION found in config/config.txt")
watch = start_watch()
log_startup_progress("Initializing objects...")
//sleep(-1) // Why