From efdb19ac7ec0f4b3a8efaee02f0d75f176f074d4 Mon Sep 17 00:00:00 2001 From: Contrabang <91113370+Contrabang@users.noreply.github.com> Date: Sun, 9 Feb 2025 00:09:09 -0500 Subject: [PATCH] Fix cult dynamic cost (#28304) --- code/game/gamemodes/dynamic/antag_rulesets.dm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/code/game/gamemodes/dynamic/antag_rulesets.dm b/code/game/gamemodes/dynamic/antag_rulesets.dm index 8918c7d20a2..ce30a5aa50e 100644 --- a/code/game/gamemodes/dynamic/antag_rulesets.dm +++ b/code/game/gamemodes/dynamic/antag_rulesets.dm @@ -270,7 +270,8 @@ /datum/ruleset/team/automatic_deduct(budget) antag_amount = team_size - . = ..() + . = antag_cost + log_dynamic("Automatic deduction: +[antag_amount] [name]\s. Remaining budget: [budget - .].") /datum/ruleset/team/antagonist_possible(budget) if(unique_team) // we're given our size at the start, no more please!