diff --git a/df-qol/CHANGELOG.md b/df-qol/CHANGELOG.md index 3cf6f0d..b1ebe78 100644 --- a/df-qol/CHANGELOG.md +++ b/df-qol/CHANGELOG.md @@ -1,5 +1,8 @@ # DragonFlagon Quality of Life +## Release 1.7.3 (2022-03-06) +- Added a GM check for the migration prompt that I forgot to add previously. + ## Release 1.7.2 (2022-03-06) I have removed all of the Template features. These features have found a home in their own dedicated module called DF Template Enhancements. They have also received additional features and some over-due bug fixes. diff --git a/df-qol/module.json b/df-qol/module.json index 205992c..7e06498 100644 --- a/df-qol/module.json +++ b/df-qol/module.json @@ -1,6 +1,6 @@ { "name": "df-qol", - "version": "1.7.2", + "version": "1.7.3", "title": "DF Quality of Life", "description": "A set of various small Quality of Life changes that don't quite fit in my other larger modules.", "author": "flamewave000#0001", diff --git a/df-qol/src/df-qol.ts b/df-qol/src/df-qol.ts index 92e50dc..4e42524 100644 --- a/df-qol/src/df-qol.ts +++ b/df-qol/src/df-qol.ts @@ -30,6 +30,8 @@ Hooks.once('ready', function () { DnD5eVehicleCapacity.ready(); TokenLock.ready(); + + if (!game.user.isGM) return; SETTINGS.register('temp-migration-df-templates-flag', { config: false, scope: 'client',