Lint the code that I fairly copy-pasted from draw-steel

This commit is contained in:
Oliver 2026-04-20 23:22:19 -06:00
parent 3fff439483
commit 6461057647
4 changed files with 18 additions and 14 deletions

View file

@ -13,7 +13,7 @@ export async function checkMigrations() {
const migrationVersion = game.settings.get(__ID__, `migrationVersion`);
let updateVersion = !migrationVersion;
if (isNewerVersion("3.0.0", migrationVersion)) {
if (isNewerVersion(`3.0.0`, migrationVersion)) {
await migrateTo3_0_0();
updateVersion = true;
};