From cc43f6e21b6bdf812f40ca028374de0dcb860b48 Mon Sep 17 00:00:00 2001 From: cajun <12363371+CajunAvenger@users.noreply.github.com> Date: Tue, 1 Oct 2024 10:45:40 -0500 Subject: [PATCH] fix watermark link --- data/magic.mse-game/script | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/data/magic.mse-game/script b/data/magic.mse-game/script index 745694132..76b487050 100644 --- a/data/magic.mse-game/script +++ b/data/magic.mse-game/script @@ -2408,7 +2408,7 @@ custom_watermark_link := { array := split_comma(field) #### not blank, has png, is either verified or old link that's probably fine if array.0 != "" and (has_png(array.0) and array.1 or else "" != "Not found") - then "/magic-mainframe-extras.mse-include/"+field + then "/magic-mainframe-extras.mse-include/"+array.0 else "/magic-modules.mse-include/watermarks/other/planeswalker.png" } card_watermark_a := {""} @@ -2418,7 +2418,7 @@ custom_card_watermark := { array := split_comma(field) #### not blank, has png, is either verified or old link that's probably fine if array.0 != "" and (has_png(array.0) and array.1 or else "" != "Not found") - then "/magic-mainframe-extras.mse-include/" + field + then "/magic-mainframe-extras.mse-include/" + array.0 else if card_watermark_a() != "" then "/magic-mainframe-extras.mse-include/" + card_watermark_a() else "/magic-modules.mse-include/watermarks/other/planeswalker.png" }