diff --git a/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Food-Drinks.dm b/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Food-Drinks.dm
index 0d04d8ad99..9edd9193cb 100644
--- a/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Food-Drinks.dm
+++ b/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Food-Drinks.dm
@@ -286,18 +286,18 @@
M << "Your [safe_thing] protects you from the pepperspray!"
return
else if(eyes_covered)
- M << "Your [safe_thing] protect you from most of the pepperspray!"
- M.eye_blurry = max(M.eye_blurry, 15)
- M.eye_blind = max(M.eye_blind, 5)
+ M << "Your [safe_thing] protect your eyes from the pepperspray!"
+ M.eye_blurry = max(M.eye_blurry, 5)
M.Stun(5)
M.Weaken(5)
return
else if (mouth_covered) // Mouth cover is better than eye cover
M << "Your [safe_thing] protects your face from the pepperspray!"
- M.eye_blurry = max(M.eye_blurry, 5)
+ M.eye_blurry = max(M.eye_blurry, 15)
+ M.eye_blind = max(M.eye_blind, 5)
return
else // Oh dear :D
- M << "You're sprayed directly in the eyes with pepperspray!"
+ M << "You're sprayed directly with the pepperspray!"
M.eye_blurry = max(M.eye_blurry, 25)
M.eye_blind = max(M.eye_blind, 10)
M.Stun(5)
diff --git a/html/changelogs/HarpyEagle-pepperspray-fix.yml b/html/changelogs/HarpyEagle-pepperspray-fix.yml
new file mode 100644
index 0000000000..c474310d0f
--- /dev/null
+++ b/html/changelogs/HarpyEagle-pepperspray-fix.yml
@@ -0,0 +1,20 @@
+################################
+# Valid Prefixes:
+# bugfix
+# wip (For works in progress)
+# tweak
+# soundadd
+# sounddel
+# rscadd (general adding of nice things)
+# rscdel (general deleting of nice things)
+# imageadd
+# imagedel
+# maptweak
+# spellcheck (typo fixes)
+# experiment
+#################################
+
+author: HarpyEagle
+delete-after: True
+changes:
+ - bugfix: "When affected by pepperspray, eye protection now prevents blindness and face protection now prevents stun, instead of face protection doing both."
\ No newline at end of file