mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-08-29 06:58:30 +01:00
Merge pull request #4507 from Verkister/patch-25
Fixes ingested organs giving way too much fat
This commit is contained in:
@@ -100,7 +100,11 @@
|
||||
|
||||
/obj/item/organ/digest_act(var/atom/movable/item_storage = null)
|
||||
if((. = ..()))
|
||||
. += 70 //Organs give a little more
|
||||
if(isbelly(item_storage))
|
||||
var/obj/belly/B = item_storage
|
||||
. += 5 * (B.digest_brute + B.digest_burn)
|
||||
else
|
||||
. += 70 //Organs give a little more
|
||||
|
||||
/obj/item/weapon/storage/digest_act(var/atom/movable/item_storage = null)
|
||||
for(var/obj/item/I in contents)
|
||||
@@ -117,4 +121,4 @@
|
||||
|
||||
// Gradual damage measurement
|
||||
/obj/item
|
||||
var/digest_stage = null
|
||||
var/digest_stage = null
|
||||
|
||||
Reference in New Issue
Block a user