Fix ending turn not selecting active counter

This commit is contained in:
Catalin Mititiuc 2024-04-05 09:52:40 -07:00
parent 9dbb0a5369
commit a618b160d0

View File

@ -778,6 +778,7 @@ document.querySelectorAll('.end-turn').forEach(el =>
.forEach(el => el.classList.remove('movement-ended')); .forEach(el => el.classList.remove('movement-ended'));
RecordSheet.select(records.at(0)); RecordSheet.select(records.at(0));
Counter.select(records.at(0));
}) })
); );