From 8ac0246998dd8261aa47123e2277c41dc59cb310 Mon Sep 17 00:00:00 2001 From: Pieter-Jan Briers Date: Wed, 14 Aug 2024 13:56:45 +0200 Subject: [PATCH] Enable worldgen by default in non-wizden config (#30996) Enable worldgen by default If somebody can explain to me WHY this isn't enabled by default, that would be epic. Otherwise we're merging this --- Content.Shared/CCVar/CCVars.cs | 2 +- Resources/ConfigPresets/WizardsDen/wizardsDen.toml | 3 --- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/Content.Shared/CCVar/CCVars.cs b/Content.Shared/CCVar/CCVars.cs index c3307c53fb..7e61ec8a58 100644 --- a/Content.Shared/CCVar/CCVars.cs +++ b/Content.Shared/CCVar/CCVars.cs @@ -2134,7 +2134,7 @@ namespace Content.Shared.CCVar /// Whether or not world generation is enabled. /// public static readonly CVarDef WorldgenEnabled = - CVarDef.Create("worldgen.enabled", false, CVar.SERVERONLY); + CVarDef.Create("worldgen.enabled", true, CVar.SERVERONLY); /// /// The worldgen config to use. diff --git a/Resources/ConfigPresets/WizardsDen/wizardsDen.toml b/Resources/ConfigPresets/WizardsDen/wizardsDen.toml index 4f1b616fb2..bf10f6c837 100644 --- a/Resources/ConfigPresets/WizardsDen/wizardsDen.toml +++ b/Resources/ConfigPresets/WizardsDen/wizardsDen.toml @@ -38,6 +38,3 @@ see_own_notes = true deadmin_on_join = true new_player_threshold = 600 alert.min_players_sharing_connection = 2 - -[worldgen] -enabled = true -- 2.52.0