Skip to content

Commit

Permalink
Fix setting not being loaded issue.
Browse files Browse the repository at this point in the history
  • Loading branch information
Ashe committed Oct 18, 2024
1 parent 4aba0ef commit 416a5a7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/module/migration/migrations/115-rules-automation.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export class Migration115RulesAutomation extends MigrationBase {
static version = 0.115;
requiresFlush = true;

static once = game.settings.get("ptu","worldSchemaVersion") >= Migration115RulesAutomation.version;
static once = game?.settings?.get("ptu","worldSchemaVersion") >= Migration115RulesAutomation.version;

/**
* @type {MigrationBase['updateItem']}
Expand Down
2 changes: 1 addition & 1 deletion system.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"verified": "12.329",
"maximum": 12
},
"version": "4.3.6",
"version": "4.3.7",
"templateVersion": 2,
"authors": [
{
Expand Down

0 comments on commit 416a5a7

Please sign in to comment.