From c494be3dbe56826b14d6264f49984015d2566c8a Mon Sep 17 00:00:00 2001 From: davidmolgard Date: Mon, 24 Mar 2025 19:06:09 -0600 Subject: [PATCH] fixed issue where phantom jokers would cause the game to freeze --- FNPreview/Core.lua | 3 +++ 1 file changed, 3 insertions(+) diff --git a/FNPreview/Core.lua b/FNPreview/Core.lua index 5da113a..8090360 100644 --- a/FNPreview/Core.lua +++ b/FNPreview/Core.lua @@ -79,6 +79,9 @@ function DV.PRE.update_on_card_order_change(cardarea) local prev_order = nil if cardarea.config.type == 'joker' and cardarea.cards[1].ability.set == 'Joker' then + if cardarea.cards[1].edition and cardarea.cards[1].edition.mp_phantom then + return + end -- Note that the consumables cardarea also has type 'joker' so must verify by checking first card. prev_order = DV.PRE.joker_order elseif cardarea.config.type == 'hand' then