Be picky about readability

This commit is contained in:
Aronai Sieyes
2021-07-02 23:03:32 -04:00
parent 7a1eb7fd22
commit c3a1263efb
@@ -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