diff --git a/code/modules/food_and_drinks/food/snacks.dm b/code/modules/food_and_drinks/food/snacks.dm index aa35a7822d..7513765d4c 100644 --- a/code/modules/food_and_drinks/food/snacks.dm +++ b/code/modules/food_and_drinks/food/snacks.dm @@ -340,7 +340,7 @@ 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, transfered_by = user)) //if reagents were transfered, show the message + 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].") return if(!M.reagents.total_volume)