From 3d273600224ae58aac5a3f4e4961dc6f56a7e40f Mon Sep 17 00:00:00 2001 From: evilew Date: Tue, 24 Sep 2024 21:15:28 +0200 Subject: [PATCH] respawning config tweaks not quite the full thing but yeah --- .../controllers/configuration/entries/respawns.dm | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/code/controllers/configuration/entries/respawns.dm b/code/controllers/configuration/entries/respawns.dm index 7c8e3b7789..5e8cf2dc1d 100644 --- a/code/controllers/configuration/entries/respawns.dm +++ b/code/controllers/configuration/entries/respawns.dm @@ -1,28 +1,29 @@ +//GS13 - lot of changes were included here, mostly allowing people to respawn very easily, even as the same characters /// Allows usage of respawn system /datum/config_entry/flag/respawns_enabled - default = FALSE + default = TRUE /// Minutes before allowing respawns. /datum/config_entry/number/respawn_delay - default = 15.0 + default = 1.0 integer = FALSE /// Minutes before allowing respawn, if user cryo'd. /datum/config_entry/number/respawn_delay_cryo - default = 5.0 + default = 1.0 integer = FALSE /// Allows respawning as non-assistant. Overrides all others of this type. /datum/config_entry/flag/allow_non_assistant_respawn - default = FALSE + default = TRUE /// Allows respawning as a combat role, defined as security/head. /datum/config_entry/flag/allow_combat_role_respawn - default = FALSE + default = FTRUE /// Allows respawning as the same character as a previous life /datum/config_entry/flag/allow_same_character_respawn - default = FALSE + default = TRUE /// Observing penalizes for respawns, not just joining. /datum/config_entry/flag/respawn_penalty_includes_observe @@ -30,7 +31,7 @@ /// Minutes from roundstart before someone can respawn /datum/config_entry/number/respawn_minimum_delay_roundstart - default = 30.0 + default = 1.0 integer = FALSE /// Gamemode config tags that are banned from respawning