File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments