We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 65646d0 commit 1e634c1Copy full SHA for 1e634c1
items/code.lua
@@ -2998,8 +2998,10 @@ local declare = {
2998
end
2999
local s = #suits - 1
3000
local r = #ranks - 1
3001
- local mult = math.floor((complexity/1.41428)^2.25 + s + r)
3002
- if mult < 1 then mult = 1 end
+ local mult = math.floor((complexity / 1.41428) ^ 2.25 + s + r)
+ if mult < 1 then
3003
+ mult = 1
3004
+ end
3005
local chips = math.floor(mult * 9.55)
3006
local l_chips = chips * 0.25
3007
local l_mult = mult * 0.25
0 commit comments