mirror of
https://github.com/vgstation-coders/vgstation13.git
synced 2025-12-09 07:57:50 +00:00
@@ -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]'"
|
||||
|
||||
|
||||
@@ -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))
|
||||
|
||||
@@ -396,4 +396,4 @@ BRANCH_HEAD .git/refs/heads/Bleeding-Edge
|
||||
# RSCLIST
|
||||
|
||||
## Location of rsc string
|
||||
# RSCSTRING
|
||||
# RSCSTRING
|
||||
|
||||
@@ -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
|
||||
Reference in New Issue
Block a user