diff --git a/code/modules/reagents/reagent_containers/rag.dm b/code/modules/reagents/reagent_containers/rag.dm index 70aa4c23b79..639e5e1d7ac 100644 --- a/code/modules/reagents/reagent_containers/rag.dm +++ b/code/modules/reagents/reagent_containers/rag.dm @@ -177,7 +177,7 @@ amount_to_remove = how_dirty * 1.2 for(var/datum/reagent/other_reagent as anything in reagents.reagent_list) if((other_reagent.chemical_flags & REAGENT_CLEANS) && other_reagent.volume >= amount_to_remove) - reagents.remove_reagent(other_reagent, amount_to_remove) + reagents.remove_reagent(other_reagent.type, amount_to_remove) return TRUE return FALSE