mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-07-20 03:26:37 +01:00
Painkillers leave body correctly
Tramadol, paracetamol and oxy will now leave a mob's body. Fixes #5150.
This commit is contained in:
@@ -778,6 +778,8 @@ datum
|
||||
on_mob_life(var/mob/living/M as mob)
|
||||
if (volume > overdose)
|
||||
M.hallucination = max(M.hallucination, 2)
|
||||
..()
|
||||
return
|
||||
|
||||
tramadol
|
||||
name = "Tramadol"
|
||||
@@ -790,6 +792,8 @@ datum
|
||||
on_mob_life(var/mob/living/M as mob)
|
||||
if (volume > overdose)
|
||||
M.hallucination = max(M.hallucination, 2)
|
||||
..()
|
||||
return
|
||||
|
||||
oxycodone
|
||||
name = "Oxycodone"
|
||||
@@ -803,6 +807,8 @@ datum
|
||||
if (volume > overdose)
|
||||
M.druggy = max(M.druggy, 10)
|
||||
M.hallucination = max(M.hallucination, 3)
|
||||
..()
|
||||
return
|
||||
|
||||
|
||||
virus_food
|
||||
|
||||
Reference in New Issue
Block a user