From 97493690d35bd2f0be93d680b9384cd7a1d1cbe2 Mon Sep 17 00:00:00 2001 From: Putnam Date: Wed, 6 Nov 2019 01:34:36 -0800 Subject: [PATCH] hmm, also important --- .../antagonists/wizard/equipment/spellbook.dm | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/code/modules/antagonists/wizard/equipment/spellbook.dm b/code/modules/antagonists/wizard/equipment/spellbook.dm index b8380c60a2..ab37997e50 100644 --- a/code/modules/antagonists/wizard/equipment/spellbook.dm +++ b/code/modules/antagonists/wizard/equipment/spellbook.dm @@ -484,7 +484,7 @@ return 0 if(istype(SSticker.mode,/datum/game_mode/dynamic)) var/datum/game_mode/dynamic/mode = SSticker.mode - if(mode.threat < CONFIG_GET(number/summon_guns_requirement)) + if(mode.threat < CONFIG_GET(number/dynamic_summon_guns_requirement)) return 0 return !CONFIG_GET(flag/no_summon_guns) @@ -496,7 +496,7 @@ to_chat(user, "You have cast summon guns!") if(istype(SSticker.mode,/datum/game_mode/dynamic)) var/datum/game_mode/dynamic/mode = SSticker.mode - mode.spend_threat(CONFIG_GET(number/summon_guns_cost)) + mode.spend_threat(CONFIG_GET(number/dynamic_summon_guns_cost)) return 1 /datum/spellbook_entry/summon/magic @@ -508,7 +508,7 @@ return 0 if(istype(SSticker.mode,/datum/game_mode/dynamic)) var/datum/game_mode/dynamic/mode = SSticker.mode - if(mode.threat < CONFIG_GET(number/summon_magic_requirement)) + if(mode.threat < CONFIG_GET(number/dynamic_summon_magic_requirement)) return 0 return !CONFIG_GET(flag/no_summon_magic) @@ -520,7 +520,7 @@ to_chat(user, "You have cast summon magic!") if(istype(SSticker.mode,/datum/game_mode/dynamic)) var/datum/game_mode/dynamic/mode = SSticker.mode - mode.spend_threat(CONFIG_GET(number/summon_magic_cost)) + mode.spend_threat(CONFIG_GET(number/dynamic_summon_magic_cost)) return 1 /datum/spellbook_entry/summon/events @@ -533,7 +533,7 @@ return 0 if(istype(SSticker.mode,/datum/game_mode/dynamic) && times == 0) var/datum/game_mode/dynamic/mode = SSticker.mode - if(mode.threat < CONFIG_GET(number/summon_events_requirement)) + if(mode.threat < CONFIG_GET(number/dynamic_summon_events_requirement)) return 0 return !CONFIG_GET(flag/no_summon_events) @@ -545,7 +545,7 @@ to_chat(user, "You have cast summon events.") if(istype(SSticker.mode,/datum/game_mode/dynamic) && times == 0) var/datum/game_mode/dynamic/mode = SSticker.mode - mode.spend_threat(CONFIG_GET(number/summon_events_cost)) + mode.spend_threat(CONFIG_GET(number/dynamic_summon_events_cost)) return 1 /datum/spellbook_entry/summon/events/GetInfo()