Skip to content

Commit 043e7d2

Browse files
authored
fix digihalu not working with meme packs
this needs a refactor tbh
1 parent 9212fcd commit 043e7d2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

items/misc_joker.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7453,12 +7453,12 @@ local digitalhallucinations = {
74537453
)
74547454
return nil, true
74557455
end
7456-
if boosty.ability.name:find("Buffoon") then
7456+
if boosty.ability.name:find("Buffoon") or boosty.ability.name:find("meme") then
74577457
G.E_MANAGER:add_event(Event({
74587458
trigger = "before",
74597459
delay = 0.0,
74607460
func = function()
7461-
local ccard = create_card("Joker", G.jokers, nil, nil, nil, nil, nil, "diha")
7461+
local ccard = create_card(boosty.ability.name:find("meme") and "Meme" or "Joker", G.jokers, nil, nil, nil, nil, nil, "diha") -- who up wasting their cycles rn
74627462
ccard:set_edition({ negative = true }, true)
74637463
ccard:add_to_deck()
74647464
G.jokers:emplace(ccard)

0 commit comments

Comments
 (0)