Bug fixes: ESS and speech problems (#6586)

This commit is contained in:
Alberyk
2019-06-19 18:47:01 +02:00
committed by Werner
parent a14a6679fb
commit cf5cfbacbe
3 changed files with 13 additions and 3 deletions
+3 -3
View File
@@ -124,14 +124,14 @@
owner.vomit()
if(2,3)
to_chat(owner, "<span class='notice'>You feel light-headed.</span>")
owner.dizziness += 10
owner.dizziness = max(owner.slurring, 10)
if(4,5)
to_chat(owner, "<span class='notice'>it becomes hard to see for some reason.</span>")
owner.confused += 10
owner.confused = max(owner.slurring, 10)
owner.apply_effect(10,EYE_BLUR)
if(6 to 9)
to_chat(owner, "<span class='notice'>Your tongue feels thick in your mouth.</span>")
owner.slurring += 30
owner.slurring = max(owner.slurring, 30)
..()