Skip to content

Commit a9f9619

Browse files
authored
Merge pull request #489 from TheRealNova422-real/patch-30
2 parents fe2a87f + 3efe554 commit a9f9619

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/content.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ SMODS.PokerHand({
2020
end
2121
local stones = {}
2222
for i, card in ipairs(hand) do
23-
if card.config.center_key == "m_stone" or (card.config.center.no_rank and card.config.center.no_suit) then
23+
if card.config.center_key == "m_stone" or (card.config.center.no_rank and card.config.center.no_suit and not card.config.center.not_stoned) then
2424
stones[#stones + 1] = card
2525
end
2626
end
@@ -35,7 +35,7 @@ SMODS.PokerHandPart({
3535
end
3636
local eligible_cards = {}
3737
for i, card in ipairs(hand) do
38-
if true then --card.ability.name ~= "Gold Card"
38+
if not card.config.center.not_fucked then --card.ability.name ~= "Gold Card"
3939
eligible_cards[#eligible_cards + 1] = card
4040
end
4141
end

0 commit comments

Comments
 (0)