From 82e55333bb8a9e75357bd3114e6a2fe14c10e2e8 Mon Sep 17 00:00:00 2001 From: Catalin Constantin Mititiuc Date: Mon, 16 Jun 2025 22:41:28 -0700 Subject: [PATCH] Fix ending turn not selecting active counter --- index.js | 1 + 1 file changed, 1 insertion(+) diff --git a/index.js b/index.js index 7ed64e3..6de31fd 100644 --- a/index.js +++ b/index.js @@ -778,6 +778,7 @@ document.querySelectorAll('.end-turn').forEach(el => .forEach(el => el.classList.remove('movement-ended')); RecordSheet.select(records.at(0)); + Counter.select(records.at(0)); }) );