Disables Dynamic+ (#37930)

* dynamic plus configuration

* oops
This commit is contained in:
jwhitak
2025-07-14 07:58:06 -05:00
committed by GitHub
parent 0d0436aae8
commit 1f792078a1
4 changed files with 10 additions and 3 deletions

View File

@@ -230,6 +230,8 @@
// tg asset cdn via webroot systme. Currently unused.
var/asset_cdn_webroot = ""
var/asset_cdn_url = ""
//Is Dynamic+ Enabled
var/dynamic_plus = FALSE
/datum/configuration/New()
@@ -734,6 +736,8 @@
hardcore_mode = value
if("humans_speak")
voice_noises = 1
if("dynamic_plus")
config.dynamic_plus = TRUE
else
diary << "Unknown setting in configuration: '[name]'"

View File

@@ -166,7 +166,7 @@
result = previous_rounds_odds_reduction(result)
if (weight_category in mode.ruleset_category_weights)
if (config.dynamic_plus && (weight_category in mode.ruleset_category_weights))
result *= mode.ruleset_category_weights[weight_category]
if (mode.highlander_rulesets_favoured && (flags & HIGHLANDER_RULESET))

View File

@@ -396,4 +396,4 @@ BRANCH_HEAD .git/refs/heads/Bleeding-Edge
# RSCLIST
## Location of rsc string
# RSCSTRING
# RSCSTRING

View File

@@ -43,7 +43,7 @@ RESPAWN_DELAY 30
## These values get directly added to values and totals in-game. To speed things up make the number negative, to slow things down, make the number positive.
## These modify the run/walk speed of all mobs before the mob-specific modifiers are applied.
## These modify the run/walk speed of all mobs before the mob-specific modifiers are applied.
RUN_DELAY 0
WALK_DELAY 0
@@ -87,3 +87,6 @@ HARDCORE_MODE 0
# Whether when people talk, some voice noises are played
# HUMANS_SPEAK
# Is dynamic+ enabled, allowing persistence to adjust antag weights?
# DYNAMIC_PLUS