Fixes pain shock emotes leaking from bellies

Digesting or otherwise hurt prey will no longer broadcast their agony for the whole room.
This commit is contained in:
Verkister
2021-03-01 17:38:08 +02:00
committed by GitHub
parent 647203adb8
commit 0d755bef99
+6 -3
View File
@@ -1555,7 +1555,8 @@
custom_pain("[pick("It hurts so much", "You really need some painkillers", "Dear god, the pain")]!", 40)
if(shock_stage >= 30)
if(shock_stage == 30) emote("me",1,"is having trouble keeping their eyes open.")
if(shock_stage == 30 && !isbelly(loc)) //VOREStation Edit
emote("me",1,"is having trouble keeping their eyes open.")
eye_blurry = max(2, eye_blurry)
stuttering = max(stuttering, 5)
@@ -1563,7 +1564,8 @@
to_chat(src, "<span class='danger'>[pick("The pain is excruciating", "Please&#44; just end the pain", "Your whole body is going numb")]!</span>")
if (shock_stage >= 60)
if(shock_stage == 60) emote("me",1,"'s body becomes limp.")
if(shock_stage == 60 && !isbelly(loc)) //VOREStation Edit
emote("me",1,"'s body becomes limp.")
if (prob(2))
to_chat(src, "<span class='danger'>[pick("The pain is excruciating", "Please&#44; just end the pain", "Your whole body is going numb")]!</span>")
Weaken(20)
@@ -1579,7 +1581,8 @@
Paralyse(5)
if(shock_stage == 150)
emote("me",1,"can no longer stand, collapsing!")
if(!isbelly(loc)) //VOREStation Edit
emote("me",1,"can no longer stand, collapsing!")
Weaken(20)
if(shock_stage >= 150)