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)