mirror of
https://github.com/vgstation-coders/vgstation13.git
synced 2025-12-10 10:21:11 +00:00
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:
@@ -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]'"
|
||||
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user