Files
Fantoms-Preview/FNPreview/Card.lua
Fantom-Balatro e82e03bb90 FNPreview init
2025-03-23 04:49:43 -06:00

15 lines
268 B
Lua

--
-- SMODS compatibility:
--
local orig_get_X_same = get_X_same
function get_X_same(num, hand)
local clean_hand = {}
for _, v in pairs(hand) do
if v.get_id then
table.insert(clean_hand, v)
end
end
return orig_get_X_same(num, clean_hand)
end