From b6b49350cb8ce0593222929f8cfb48f19e30c33d Mon Sep 17 00:00:00 2001 From: Emik Date: Tue, 21 Jul 2026 21:57:39 +0200 Subject: [PATCH] Do not override editions, again --- manifest.json | 2 +- src/tag.lua | 7 ++++--- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/manifest.json b/manifest.json index 4009e83..9d79232 100644 --- a/manifest.json +++ b/manifest.json @@ -3,7 +3,7 @@ "id": "Roland", "name": "Roland", "prefix": "Roland", - "version": "2.9.72", + "version": "2.9.73", "badge_colour": "8BE9FD", "display_name": "Roland", "main_file": "src/main.lua", diff --git a/src/tag.lua b/src/tag.lua index 9c90e2c..5657c3c 100644 --- a/src/tag.lua +++ b/src/tag.lua @@ -73,9 +73,10 @@ SMODS.Tag { end if tag.triggered or - (tag.ability.amount or self.config.amount) <= 0 or - ((context.card or {}).edition or {}).Roland_frozen or - context.type ~= "Bakery_score_card" then + not context.card or + context.card.edition or + context.type ~= "Bakery_score_card" or + (tag.ability.amount or self.config.amount) <= 0 then return end