From a799487fb5b2c0fc1e5a4fcfab6cb7ac437eb79f Mon Sep 17 00:00:00 2001 From: iamgoofball Date: Fri, 14 Feb 2020 04:47:02 -0800 Subject: [PATCH] fixes --- code/game/objects/items/implants/implant_mindshield.dm | 2 +- code/modules/antagonists/cult/runes.dm | 2 +- code/modules/assembly/flash.dm | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/code/game/objects/items/implants/implant_mindshield.dm b/code/game/objects/items/implants/implant_mindshield.dm index 2990153e88a..7130a8ac7a3 100644 --- a/code/game/objects/items/implants/implant_mindshield.dm +++ b/code/game/objects/items/implants/implant_mindshield.dm @@ -47,7 +47,7 @@ target.sec_hud_set_implants() if(deconverted) if(prob(1) || SSevents.holidays && SSevents.holidays[APRIL_FOOLS]) - target.say("I'm out! I quit! Whose kidneys are these?") + target.say("I'm out! I quit! Whose kidneys are these?", forced = TRUE) return TRUE return FALSE diff --git a/code/modules/antagonists/cult/runes.dm b/code/modules/antagonists/cult/runes.dm index 1a124380e3f..4ef1f7b1ff6 100644 --- a/code/modules/antagonists/cult/runes.dm +++ b/code/modules/antagonists/cult/runes.dm @@ -257,7 +257,7 @@ structure_check() searches for nearby cultist structures required for the invoca H.stuttering = 0 H.cultslurring = 0 if(prob(1) || SSevents.holidays && SSevents.holidays[APRIL_FOOLS]) - H.say("You son of a bitch! I'm in.") + H.say("You son of a bitch! I'm in.", forced = TRUE) return 1 /obj/effect/rune/convert/proc/do_sacrifice(mob/living/sacrificial, list/invokers) diff --git a/code/modules/assembly/flash.dm b/code/modules/assembly/flash.dm index c4f0ddc5229..bc0ca4f045e 100644 --- a/code/modules/assembly/flash.dm +++ b/code/modules/assembly/flash.dm @@ -192,7 +192,7 @@ return if(converter.add_revolutionary(H.mind)) if(prob(1) || SSevents.holidays && SSevents.holidays[APRIL_FOOLS]) - H.say("You son of a bitch! I'm in.") + H.say("You son of a bitch! I'm in.", forced = TRUE) times_used -- //Flashes less likely to burn out for headrevs when used for conversion else to_chat(user, "This mind seems resistant to the flash!")