From 17a5fd849e684a3b255bd38cfbb15e7310f2022e Mon Sep 17 00:00:00 2001 From: Trilbyspaceclone <30435998+Trilbyspaceclone@users.noreply.github.com> Date: Tue, 17 Dec 2019 15:58:01 -0500 Subject: [PATCH] Update snacks.dm --- code/modules/food_and_drinks/food/snacks.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/food_and_drinks/food/snacks.dm b/code/modules/food_and_drinks/food/snacks.dm index 7513765d4c..30a0195555 100644 --- a/code/modules/food_and_drinks/food/snacks.dm +++ b/code/modules/food_and_drinks/food/snacks.dm @@ -340,8 +340,8 @@ All foods are distributed among various categories. Use common sense. if(!M.is_drainable()) to_chat(user, "[M] is unable to be dunked in!") return - if(M.reagents.trans_to(src, dunk_amount, reagents.trans_to = user)) //if reagents were transfered, show the message - to_chat(user, "You dunk \the [src] into \the [M].") + if(M.reagents.trans_to(src, dunk_amount)) //if reagents were transfered, show the message + to_chat(user, "You dunk the [M].") return if(!M.reagents.total_volume) to_chat(user, "[M] is empty!")