diff --git a/code/modules/persistence/storage/smartfridge.dm b/code/modules/persistence/storage/smartfridge.dm index edd8294a908..39622621546 100644 --- a/code/modules/persistence/storage/smartfridge.dm +++ b/code/modules/persistence/storage/smartfridge.dm @@ -51,8 +51,8 @@ // Delete some stacks if we want if(stacks_go_missing) - var/fuzzy = rand(55,65) - count = round(count*0.01*fuzzy) // loss of 35-45% with rounding down + var/fuzzy = rand(55,65)*0.01 // loss of 35-45% with rounding down + count = round(count*fuzzy) if(count <= 0) continue