This commit is contained in:
Emik 2026-06-07 21:21:33 +02:00
parent f723ea8a7e
commit 39c7c93315
Signed by: emik
GPG key ID: 6B0CD72A5E503BDF
2 changed files with 3 additions and 3 deletions

View file

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

View file

@ -221,7 +221,7 @@ q(function()
local orig_calculate = estate.calculate
function estate:calculate(card, context, ...)
if not ((card or {}).edition or {}).Roland_frozen then
if not (card or {}).Roland_frozen or not (card.edition or {}).Roland_frozen then
return orig_calculate(self, card, context, ...)
end
@ -237,7 +237,7 @@ q(function()
local orig_loc_vars = estate.loc_vars
function estate:loc_vars(info_queue, card, ...)
if not ((card or {}).edition or {}).Roland_frozen then
if not (card or {}).Roland_frozen or not (card.edition or {}).Roland_frozen then
return orig_loc_vars(self, info_queue, card, ...)
end