mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-11 18:53:06 +00:00
Merge pull request #8536 from VOREStation/upstream-merge-7344
[MIRROR] Aurora Cooking Port
This commit is contained in:
@@ -69,14 +69,14 @@
|
||||
/datum/reagent/nutriment/coating/affect_ingest(var/mob/living/carbon/M, var/alien, var/removed)
|
||||
|
||||
//We'll assume that the batter isnt going to be regurgitated and eaten by someone else. Only show this once
|
||||
if (data["cooked"] != 1)
|
||||
if(data["cooked"] != 1)
|
||||
if (!messaged)
|
||||
to_chat(M, "Ugh, this raw [name] tastes disgusting.")
|
||||
to_chat(M, "<span class='warning'>Ugh, this raw [name] tastes disgusting.</span>")
|
||||
nutriment_factor *= 0.5
|
||||
messaged = 1
|
||||
|
||||
//Raw coatings will sometimes cause vomiting
|
||||
if (prob(1))
|
||||
//Raw coatings will sometimes cause vomiting. 75% chance of this happening.
|
||||
if(prob(75))
|
||||
M.vomit()
|
||||
..()
|
||||
|
||||
|
||||
Reference in New Issue
Block a user