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!")