Skip to content

Commit

Permalink
eh
Browse files Browse the repository at this point in the history
  • Loading branch information
Helg2 committed Aug 7, 2024
1 parent 9d4cc14 commit 7d91905
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 7 deletions.
3 changes: 0 additions & 3 deletions code/modules/mob/living/carbon/carbon.dm
Original file line number Diff line number Diff line change
Expand Up @@ -65,9 +65,6 @@
return shock_damage

/mob/living/carbon/proc/vomit()
if(isspeciessynthetic(src))
return //Machines don't throw up.

if(stat == DEAD) //Corpses don't puke
return

Expand Down
4 changes: 1 addition & 3 deletions code/modules/mob/living/carbon/life.dm
Original file line number Diff line number Diff line change
Expand Up @@ -125,9 +125,7 @@
if(drunkenness >= 51)
if(prob(5))
AdjustConfused(10 SECONDS)
if(ishuman(src))
var/mob/living/carbon/human/human = src
human.vomit()
vomit()
if(dizziness < 600)
dizzy(12)

Expand Down
2 changes: 1 addition & 1 deletion code/modules/predator/yautja/chems.dm
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
to_chat(L, span_userdanger("Something feels off!"))
L.AdjustParalyzed(20)

/datum/reagent/thwei/on_mob_life(mob/living/carbon/human/L, metabolism)
/datum/reagent/thwei/on_mob_life(mob/living/carbon/L, metabolism)
. = ..()
if(isyautja(L))
L.blood_volume += 3
Expand Down

0 comments on commit 7d91905

Please sign in to comment.