From 03445062c4e248dba8ea47bfce1223a486147625 Mon Sep 17 00:00:00 2001 From: SkyMarshal Date: Tue, 27 Dec 2011 14:26:08 -0700 Subject: [PATCH] Reworked pepperspray's results --- code/modules/chemical/Chemistry-Reagents.dm | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/code/modules/chemical/Chemistry-Reagents.dm b/code/modules/chemical/Chemistry-Reagents.dm index 49c07bd119f..900508fb56f 100644 --- a/code/modules/chemical/Chemistry-Reagents.dm +++ b/code/modules/chemical/Chemistry-Reagents.dm @@ -1722,15 +1722,16 @@ datum return if(M:glasses) if(M.job in security_positions) - M:emote("me",1,"dodges the pepperspray, their training paid off!") + M:emote("me",1,"endures the pepperspray, their training paid off!") M << "\red Your glasses protect you from most of the pepperspray, and your training takes care of the rest!" + M.eye_blurry = max(M.eye_blurry, 10) M << "\red Your glasses protect you from most of the pepperspray!" M:emote("scream") M.eye_blurry = max(M.eye_blurry, 20) M.eye_blind = max(M.eye_blind, 4) return if(M.job in security_positions) - M:emote("me",1,"dodges most the pepperspray, at least they were trained!") + M:emote("me",1,"shakes off most of the pepper spray's effects, at least they were trained!") M << "\red Your training protects you from most of the pepperspray!" M.eye_blurry = max(M.eye_blurry, 20) M.eye_blind = max(M.eye_blind, 4)