Fix improper order of operations
This commit is contained in:
parent
7ea64afb09
commit
2ec2177b69
3 changed files with 2 additions and 6 deletions
|
|
@ -17,5 +17,5 @@
|
|||
"conflicts": [
|
||||
"Jen"
|
||||
],
|
||||
"version": "1.6.1"
|
||||
"version": "1.6.2"
|
||||
}
|
||||
|
|
@ -22,10 +22,6 @@ local function get_weight(self)
|
|||
return G.GAME.edition_rate * self.weight
|
||||
end
|
||||
|
||||
local function is_playing_card(card)
|
||||
return ({Default = true, Enhanced = true})[((card.config or {}).center or {}).set]
|
||||
end
|
||||
|
||||
SMODS.Edition({
|
||||
key = "polygloss",
|
||||
loc_txt = {
|
||||
|
|
|
|||
|
|
@ -236,7 +236,7 @@ SMODS.Joker {
|
|||
end
|
||||
end
|
||||
|
||||
local tags = math.min(G.GAME.dollars * (math.pow(extra.xmoney, xtimes) - 1), extra.max)
|
||||
local tags = math.min(G.GAME.dollars, extra.max) * (math.pow(extra.xmoney, xtimes) - 1)
|
||||
ease_dollars(math.ceil(times * extra.money + tags))
|
||||
end,
|
||||
tag_threshold = 30,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue