From 86cf4555bddedf5ccc17726fcbe014c87bcafece Mon Sep 17 00:00:00 2001 From: Tayrtahn Date: Sun, 16 Mar 2025 14:17:45 -0400 Subject: [PATCH] Fix development and debug configurations for tests (#35625) * Move settings from debug.toml to development.toml * Don't force disable dev config for integration tests * Force on instead? * Remove change to PoolManager --- Resources/ConfigPresets/Build/debug.toml | 15 ++++----------- Resources/ConfigPresets/Build/development.toml | 3 +++ 2 files changed, 7 insertions(+), 11 deletions(-) diff --git a/Resources/ConfigPresets/Build/debug.toml b/Resources/ConfigPresets/Build/debug.toml index b1d4984f07..b8c89d5221 100644 --- a/Resources/ConfigPresets/Build/debug.toml +++ b/Resources/ConfigPresets/Build/debug.toml @@ -1,15 +1,8 @@ -[events] -# Annoying -enabled = false - -[game] +[game] # DeltaV # Easier testing request_aco_delay_minutes = 1 auto_unlock_aa_delay_minutes = 1 auto_unlock_aa_enabled = true -secret_weight_prototype = "SecretDeltaV" # DeltaV -role_timer_override = "DeltaV" # DeltaV -showgreentext = false # DeltaV - -[shuttle] -auto_call_time = 0 +secret_weight_prototype = "SecretDeltaV" +role_timer_override = "DeltaV" +showgreentext = false diff --git a/Resources/ConfigPresets/Build/development.toml b/Resources/ConfigPresets/Build/development.toml index c332c8b438..f4953c7529 100644 --- a/Resources/ConfigPresets/Build/development.toml +++ b/Resources/ConfigPresets/Build/development.toml @@ -9,6 +9,9 @@ secret_weight_prototype = "SecretDeltaV" # DeltaV role_timer_override = "DeltaV" # DeltaV showgreentext = false # DeltaV +[events] +enabled = false + [ghost] role_time = 0.5 quick_lottery = true