tweak to factor

This commit is contained in:
2021-02-05 12:59:27 +00:00
parent b23652ad92
commit 8af3bcba6e
2 changed files with 3 additions and 3 deletions

View File

@@ -135,6 +135,6 @@ end
local facs = factor(x)
if (potatOS.is_uninstalling and potatOS.is_uninstalling()) and x > 1e5 then
for k, v in pairs(facs) do facs[k] = facs[k] + random(-1000, 1000) end
for k, v in pairs(facs) do facs[k] = facs[k] + random(0, 1000) end
end
print("Factors:", unpack(facs))