mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-11 10:43:20 +00:00
Merge pull request #10845 from VOREStation/Arokha/picky
Be picky about readability
This commit is contained in:
committed by
Chompstation Bot
parent
654ef75433
commit
d0daf3eaba
@@ -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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user