Reverts stomach (#19538)

* Revert "Ethanol doesn't nuke your stomach anymore (#19413)"

This reverts commit cb9576c7d7.

* Revert "Stomach given its own reagent_container (#19121)"

This reverts commit 09f1da622d.

* Revert "Stomach organ, vomit-all, dialysis machines. (#19036)"

This reverts commit 7c929c5831.

* The dangers or reverting

* Der. Fukken.
This commit is contained in:
jknpj
2018-09-14 23:00:36 -03:00
committed by Exxion
parent 006ce38c3d
commit 52ed4829c5
16 changed files with 10 additions and 269 deletions

View File

@@ -350,13 +350,8 @@ var/list/LOGGED_SPLASH_REAGENTS = list(FUEL, THERMITE)
reagents.reaction(user, INGEST)
spawn(5)
if(reagents)
if(user.get_stomach())
var/datum/organ/internal/stomach/S = user.get_stomach()
reagents.trans_to(S.get_reagents(), amount_per_imbibe) // transfer to stomach
else if(istype(user, /mob/living/carbon/human))
reagents.trans_to(user, amount_per_imbibe / 4) // greatly reduced reagent absorption without a stomach
else
reagents.trans_to(user, amount_per_imbibe)
reagents.trans_to(user, amount_per_imbibe)
return 1
/obj/item/weapon/reagent_containers/proc/can_drink(mob/user)