From 71d7eb1de09fe2dc6334597c48ee7bc586d03fe1 Mon Sep 17 00:00:00 2001 From: Coolrune206 <71326864+Coolrune206@users.noreply.github.com> Date: Sat, 14 Jan 2023 02:06:01 +1000 Subject: [PATCH] Removes the Speed-boost from Cling Epi OD (#20127) * gives the wizard some more clownish options * removes speed boost from cling Epi OD * Revert "gives the wizard some more clownish options" This reverts commit 938b1c8ebd1f75cde80038779473f4517f9dee1e. * Lewcc review Whack Co-authored-by: Luc <89928798+lewcc@users.noreply.github.com> * Hal9001 Review Co-authored-by: Luc <89928798+lewcc@users.noreply.github.com> --- .../modules/antagonists/changeling/powers/epinephrine.dm | 2 +- code/modules/reagents/chemistry/reagents/medicine.dm | 9 +++++++++ 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/code/modules/antagonists/changeling/powers/epinephrine.dm b/code/modules/antagonists/changeling/powers/epinephrine.dm index c7f39228946..8263d694d11 100644 --- a/code/modules/antagonists/changeling/powers/epinephrine.dm +++ b/code/modules/antagonists/changeling/powers/epinephrine.dm @@ -23,7 +23,7 @@ user.setStaminaLoss(0) user.SetKnockDown(0) user.reagents.add_reagent("synaptizine", 15) - user.reagents.add_reagent("stimulative_agent", 1) + user.reagents.add_reagent("stimulative_cling", 1) SSblackbox.record_feedback("nested tally", "changeling_powers", 1, list("[name]")) return TRUE diff --git a/code/modules/reagents/chemistry/reagents/medicine.dm b/code/modules/reagents/chemistry/reagents/medicine.dm index 141bc76dab3..04f404cd7a1 100644 --- a/code/modules/reagents/chemistry/reagents/medicine.dm +++ b/code/modules/reagents/chemistry/reagents/medicine.dm @@ -933,6 +933,15 @@ M.AdjustLoseBreath(2 SECONDS) return list(0, update_flags) +/datum/reagent/medicine/stimulative_agent/changeling + id = "stimulative_cling" + +/datum/reagent/medicine/stimulative_agent/changeling/on_mob_add(mob/living/L) + return + +/datum/reagent/medicine/stimulative_agent/changeling/on_mob_delete(mob/living/L) + return + /datum/reagent/medicine/insulin name = "Insulin" id = "insulin"