diff --git a/code/modules/materials/materials/_materials.dm b/code/modules/materials/materials/_materials.dm index 1e1fec8a2d0..be14faf62a2 100644 --- a/code/modules/materials/materials/_materials.dm +++ b/code/modules/materials/materials/_materials.dm @@ -326,7 +326,8 @@ var/list/name_to_material // Debris product. Used ALL THE TIME. /datum/material/proc/place_sheet(var/turf/target, amount) - if(stack_type) + amount = round(amount) + if(stack_type && amount > 0) return new stack_type(target, amount) // As above.