From 8de73e7eb4f239a89dd2f2b88f68b54a60126afd Mon Sep 17 00:00:00 2001 From: jjasome11 Date: Tue, 17 Feb 2026 07:57:39 -0500 Subject: [PATCH] make deck of equilibrium unlock requirement actually 100 jokers rather than 10 --- items/deck.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/items/deck.lua b/items/deck.lua index 0fe357280..6b9642487 100644 --- a/items/deck.lua +++ b/items/deck.lua @@ -62,7 +62,7 @@ local equilibrium = { for i = 1, #G.jokers.cards do count = count + 1 end - if count >= 10 then + if count >= 100 then unlock_card(self) end end