Skip to content

Commit 0667877

Browse files
committed
2 parents bf148f6 + 21388df commit 0667877

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

items/enhanced.lua

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -419,11 +419,19 @@ return {
419419
end
420420
local ss = Card.set_seal
421421
function Card:set_seal(seal, y, z)
422-
return ss(self, not self.no_forced_seal and not G.SETTINGS.paused and G.GAME.modifiers.cry_force_seal or seal, y, z)
422+
return ss(
423+
self,
424+
not self.no_forced_seal and not G.SETTINGS.paused and G.GAME.modifiers.cry_force_seal or seal,
425+
y,
426+
z
427+
)
423428
end
424429
local cs = Card.change_suit
425430
function Card:change_suit(new_suit)
426-
return cs(self, not self.no_forced_suit and not G.SETTINGS.paused and G.GAME.modifiers.cry_force_suit or new_suit)
431+
return cs(
432+
self,
433+
not self.no_forced_suit and not G.SETTINGS.paused and G.GAME.modifiers.cry_force_suit or new_suit
434+
)
427435
end
428436
local ccl = Card.click
429437
function Card:click()

0 commit comments

Comments
 (0)