diff --git a/code/modules/mob/living/carbon/lick_wounds.dm b/code/modules/mob/living/carbon/lick_wounds.dm
index 1bc94d0d98..8ec651d05b 100644
--- a/code/modules/mob/living/carbon/lick_wounds.dm
+++ b/code/modules/mob/living/carbon/lick_wounds.dm
@@ -1,12 +1,11 @@
-/mob/living/carbon/human/proc/lick_wounds(var/mob/living/carbon/M as mob in range(1)) // Allows the user to lick themselves. Given how rarely this trait is used, I don't see an issue with a slight buff.
+/mob/living/carbon/human/proc/lick_wounds(var/mob/living/carbon/M as mob in view(1)) // Allows the user to lick themselves. Given how rarely this trait is used, I don't see an issue with a slight buff.
set name = "Lick Wounds"
set category = "Abilities"
set desc = "Disinfect and heal small wounds with your saliva."
- //CHOMPEdit Start - No longer usable while incapacitated
- if(src.incapacitated())
+ if(stat || paralysis || weakened || stunned)
+ to_chat(src, "You can't do that in your current state.")
return
- //CHOMPEdit End
if(nutrition < 50)
to_chat(src, "You need more energy to produce antiseptic enzymes. Eat something and try again.")