This commit is contained in:
Emik 2026-07-09 18:17:51 +02:00
parent f023e909ad
commit 55bf3ec8a1
Signed by: emik
GPG key ID: 6B0CD72A5E503BDF
2 changed files with 2 additions and 2 deletions

View file

@ -3,7 +3,7 @@
"id": "Roland", "id": "Roland",
"name": "Roland", "name": "Roland",
"prefix": "Roland", "prefix": "Roland",
"version": "2.9.46", "version": "2.9.47",
"badge_colour": "8BE9FD", "badge_colour": "8BE9FD",
"display_name": "Roland", "display_name": "Roland",
"main_file": "src/main.lua", "main_file": "src/main.lua",

View file

@ -163,7 +163,7 @@ blind {
local _ = not b.disabled and context.drawing_cards and table.sort(G.deck.cards, sort_by_enhancement) local _ = not b.disabled and context.drawing_cards and table.sort(G.deck.cards, sort_by_enhancement)
end, end,
in_pool = function() in_pool = function()
return G.playing_cards and f(G.playing_cards):any(has_enhancement) return G.playing_cards and not not f(G.playing_cards):any(has_enhancement)
end, end,
} }