Do not override editions

This commit is contained in:
Emik 2026-07-21 17:43:37 +02:00
parent b4b05d37dc
commit 1259eb2cd8
Signed by: emik
GPG key ID: 6B0CD72A5E503BDF
2 changed files with 10 additions and 9 deletions

View file

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

View file

@ -243,14 +243,15 @@ joker {
table.insert(info_queue, G.P_CENTERS.e_Roland_frozen) table.insert(info_queue, G.P_CENTERS.e_Roland_frozen)
end, end,
calculate = function(_, _, context) calculate = function(_, _, context)
return (context.selling_self or context.forcetrigger) and f(G.hand.cards):each(function(v) return (context.selling_self or context.forcetrigger) and
q { f(G.hand.cards):where("edition", false):each(function(v)
delay = 0.1, q {
func = function() delay = 0.1,
v:set_edition {Roland_frozen = true} func = function()
end, v:set_edition {Roland_frozen = true}
} end,
end) or nil }
end) or nil
end, end,
} }