Skip to content

Commit 5a33fc8

Browse files
Jolly edition fix
Fixes debuffed Jolly Edition jokers still being treated as jolly jokers
1 parent 8c16386 commit 5a33fc8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lib/misc.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -303,7 +303,7 @@ function Card:is_jolly()
303303
if self.ability.name == "Jolly Joker" or self.ability.name == "cry-jollysus Joker" then
304304
return true
305305
end
306-
if self.edition and self.edition.key == "e_cry_m" then
306+
if self.edition and self.edition.key == "e_cry_m" and not self.debuff then
307307
return true
308308
end
309309
return false

0 commit comments

Comments
 (0)