From 95205332c5dbd32cde5ab88dd871503f771b7b6e Mon Sep 17 00:00:00 2001 From: GenevensiS <66968533+G-e-n-e-v-e-n-s-i-S@users.noreply.github.com> Date: Sun, 12 May 2024 04:00:41 +0200 Subject: [PATCH] fix bug preventing stats page from counting custom types (#45) --- data/magic.mse-game/statistics_script | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/magic.mse-game/statistics_script b/data/magic.mse-game/statistics_script index 1ef204eca..2698d9200 100644 --- a/data/magic.mse-game/statistics_script +++ b/data/magic.mse-game/statistics_script @@ -791,7 +791,7 @@ face_type_extended_statistic := ) split := split_space_statistic(trim(types)) count := length(split)-1 - for x from 0 to count do (ifresult := result + "," + split[x]) + for x from 0 to count do (result := result + "," + split[x]) result }