From 4d0ed298343cdf485ef62359a6e21e03f34dafd1 Mon Sep 17 00:00:00 2001 From: "Alexander V." Date: Wed, 11 Sep 2024 09:49:56 +0300 Subject: [PATCH] Default game confings (#13526) * Default game configs * Update game_options.txt --- code/controllers/configuration.dm | 6 +++--- config/example/game_options.txt | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/code/controllers/configuration.dm b/code/controllers/configuration.dm index bd40c0a082c6..d91db387f411 100644 --- a/code/controllers/configuration.dm +++ b/code/controllers/configuration.dm @@ -114,11 +114,11 @@ var/global/bridge_secret = null //game_options.txt configs var/health_threshold_softcrit = 0 - var/health_threshold_crit = 0 + var/health_threshold_crit = -50 var/health_threshold_dead = -100 var/organ_health_multiplier = 1 - var/organ_regeneration_multiplier = 1 + var/organ_regeneration_multiplier = 0.75 var/revival_pod_plants = 1 var/revival_cloning = 1 @@ -195,7 +195,7 @@ var/global/bridge_secret = null // The object used for the clickable stat() button. var/obj/effect/statclick/statclick - var/craft_recipes_visibility = FALSE // If false, then users won't see crafting recipes in personal crafting menu until they have all required components and then it will show up. + var/craft_recipes_visibility = TRUE // Show all recipes (TRUE) or only these that have all required components around (FALSE) in craft menu. var/nightshift = FALSE var/list/maplist = list() diff --git a/config/example/game_options.txt b/config/example/game_options.txt index 941e8b3f5548..43534530db24 100644 --- a/config/example/game_options.txt +++ b/config/example/game_options.txt @@ -53,9 +53,9 @@ ANIMAL_DELAY 0 ### CRAFTING ### ## Controls if players can see recipes in menu, even if they don't have required components (this does not affect crafting itself, just visibility). -#CRAFT_RECIPES_VISIBILITY +CRAFT_RECIPES_VISIBILITY ### ETC ### ## If server time is beetween 11 pm and 8 am, lights will become more dim and easy on the eyes, comment to disable -NIGHTSHIFT +#NIGHTSHIFT