Skip to content

Commit 747b4fa

Browse files
Fix Universum reducing C&M below starting values
1 parent 846a3ee commit 747b4fa

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lovely/universum.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ else
2020
for i = 1, #effects do
2121
universum_mod = universum_mod * (effects[i] and effects[i].jokers and effects[i].jokers.mod or 1)
2222
end
23-
hand[self.key] = hand[self.key]* (universum_mod)^amount
23+
hand[self.key] = math.max(hand[self.key]* (universum_mod)^amount, hand['s_'..self.key])
2424
end
2525
'''
26-
match_indent = true
26+
match_indent = true

0 commit comments

Comments
 (0)