diff --git a/code/modules/recycling/recycling.dm b/code/modules/recycling/recycling.dm index 4e2f2a8d87..a173f4630d 100644 --- a/code/modules/recycling/recycling.dm +++ b/code/modules/recycling/recycling.dm @@ -149,8 +149,8 @@ /obj/machinery/recycling/sorter/proc/dispense_if_possible() for(var/mat in materials) - while(materials[mat] >= (SHEET_MATERIAL_AMOUNT/10)) //Lowers the amount needed to make dust - materials[mat] -= (SHEET_MATERIAL_AMOUNT/10) //Lowers the amount needed to make dust + while(materials[mat] >= (SHEET_MATERIAL_AMOUNT/10)) //CHOMPEDIT: Lowers the amount needed to make dust + materials[mat] -= (SHEET_MATERIAL_AMOUNT/10) //CHOMPEDIT: Lowers the amount needed to make dust new /obj/item/material_dust(get_step(src, dir), mat) sleep(2 SECONDS)