From d04b22e950c8098c9b81a213c8f92f965ce22cbd Mon Sep 17 00:00:00 2001 From: Chinsky Date: Mon, 10 Mar 2014 17:10:35 +0400 Subject: [PATCH] Changed sneezing to spread viruses like cough, but only in front of the mob. It gives a warning sometimes, so guy has 7 ticks to face elsewhere. --- code/modules/virus2/effect.dm | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/code/modules/virus2/effect.dm b/code/modules/virus2/effect.dm index 83fe112ec85..e5600b76339 100644 --- a/code/modules/virus2/effect.dm +++ b/code/modules/virus2/effect.dm @@ -319,7 +319,12 @@ name = "Coldingtons Effect" stage = 1 activate(var/mob/living/carbon/mob,var/multiplier) + if (prob(30)) + mob << "You feel like you are about to sneeze!" + sleep(5) mob.say("*sneeze") + for(var/mob/living/carbon/M in get_step(mob,mob.dir)) + mob.spread_disease_to(M) if (prob(50)) var/obj/effect/decal/cleanable/mucus/M = new(get_turf(mob)) M.virus2 = virus_copylist(mob.virus2)