From 04902e1fc5ec36a3375d172acdc9e7f9ad5a8a8f Mon Sep 17 00:00:00 2001 From: Ghommie <42542238+Ghommie@users.noreply.github.com> Date: Wed, 24 Jun 2020 23:32:31 +0200 Subject: [PATCH] Whoops --- code/datums/components/edible.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/datums/components/edible.dm b/code/datums/components/edible.dm index e70c791f98..47e60a1ee1 100644 --- a/code/datums/components/edible.dm +++ b/code/datums/components/edible.dm @@ -155,7 +155,7 @@ Behavior that's still missing from this component that original food items had t if(owner.reagents.total_volume) SEND_SIGNAL(parent, COMSIG_FOOD_EATEN, eater, feeder) var/fraction = min(bite_consumption / owner.reagents.total_volume, 1) - reagents.reaction(M, INGEST, fraction) + owner.reagents.reaction(eater, INGEST, fraction) owner.reagents.trans_to(eater, bite_consumption) bitecount++ On_Consume(eater)