diff --git a/code/game/gamemodes/changeling/implements/powers/stings.dm b/code/game/gamemodes/changeling/implements/powers/stings.dm index 49bcb1e83e6..d43d4d1e322 100644 --- a/code/game/gamemodes/changeling/implements/powers/stings.dm +++ b/code/game/gamemodes/changeling/implements/powers/stings.dm @@ -74,7 +74,7 @@ /mob/proc/changeling_hallucinate_sting() set category = "Changeling" set name = "Hallucination Sting (15)" - set desc = "Causes target to begin hallucinating after five to fifteen seconds." + set desc = "Causes target to begin hallucinating after a few seconds." changeling_sting(15, /mob/proc/changeling_hallucinate_sting, /datum/changeling_sting/hallucinate, TRUE) @@ -84,7 +84,8 @@ /datum/changeling_sting/hallucinate/do_sting(mob/living/target) ..() - addtimer(CALLBACK(target, /mob/living.proc/add_hallucinate, 200), rand(5 SECONDS, 15 SECONDS)) + if(target.reagents) + addtimer(target.reagents.add_reagent(/decl/reagent/mindbreaker, 3), rand(5 SECONDS, 15 SECONDS)) /mob/proc/changeling_silence_sting() set category = "Changeling" diff --git a/html/changelogs/wickedcybs_halluchungus.yml b/html/changelogs/wickedcybs_halluchungus.yml new file mode 100644 index 00000000000..4e39cd8e3d4 --- /dev/null +++ b/html/changelogs/wickedcybs_halluchungus.yml @@ -0,0 +1,6 @@ +author: WickedCybs + +delete-after: True + +changes: + - balance: "The changeling hallucination sting will directly inject three units of mindbreaker into somebody instead of directly applying hallucinations that cannot be traced at all for upwards of twelve minutes. The new duration will be around three to five without medical attention, give or take as severity can be a bit random." \ No newline at end of file