From 3c4f3b5086073c5aacd784d41fb26b4c7e0d4899 Mon Sep 17 00:00:00 2001 From: cajun <12363371+CajunAvenger@users.noreply.github.com> Date: Wed, 6 Mar 2024 01:59:56 -0600 Subject: [PATCH] fix is_class() matching on creature-class wordlist --- data/magic-m15-saga.mse-style/style | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/magic-m15-saga.mse-style/style b/data/magic-m15-saga.mse-style/style index 0a19be010..68f703cf3 100644 --- a/data/magic-m15-saga.mse-style/style +++ b/data/magic-m15-saga.mse-style/style @@ -193,7 +193,7 @@ init script: un_png := replace@(match:".png", replace: "") a_saga := {true} saga_reminder := { if styling.alternate_reminder != "" then styling.alternate_reminder else if is_class() then "Gain the next level as a sorcery to add its ability." else "As this Saga enters and after your draw step, add a lore counter. Sacrifice after III." } - is_class := {contains(styling.other_options, match:"class") or lang_setting("is_class")(card.sub_type)} + is_class := {contains(styling.other_options, match:"class") or lang_setting("is_class")(remove_tags(card.sub_type))} un_marked := {is_class() or contains(styling.other_options, match:"remove bookmark")} is_legend := { auto_legend() } is_vehicle := { auto_vehicle() or contains(styling.other_options, match:"vehicle") }