Update snacks.dm

This commit is contained in:
shellspeed1
2019-09-23 17:59:58 -07:00
committed by GitHub
parent 0ee13f9734
commit 7a7b776bcb
+1 -2
View File
@@ -141,8 +141,7 @@ All foods are distributed among various categories. Use common sense.
if(reagents.total_volume)
SEND_SIGNAL(src, COMSIG_FOOD_EATEN, M, user)
var/fraction = min(bitesize / reagents.total_volume, 1)
reagents.reaction(M, INGEST, fraction)
reagents.trans_to(M, bitesize)
reagents.trans_to(M, bitesize, transfered_by = user, method = INGEST)
bitecount++
On_Consume(M)
checkLiked(fraction, M)