Changed to using animate instead of class-based css

This commit is contained in:
WBHarry 2026-06-16 23:09:10 +02:00
parent d2e87e4eb9
commit 3641d328bf
3 changed files with 37 additions and 58 deletions

View file

@ -25,7 +25,8 @@ export default class DhCountdowns extends foundry.abstract.DataModel {
return acc;
}, []);
foundry.ui.countdowns.changedCountdownsForAnimation.add(...changedCountdowns);
for (const countdownKey of changedCountdowns)
foundry.ui.countdowns.changedCountdownsForAnimation.add(countdownKey);
}
}