Skip to content

Commit

Permalink
qol: Add GM check for migration message
Browse files Browse the repository at this point in the history
  • Loading branch information
flamewave000 committed Mar 7, 2022
1 parent 08f49b3 commit 71b0c3a
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
3 changes: 3 additions & 0 deletions df-qol/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.

Expand Down
2 changes: 1 addition & 1 deletion df-qol/module.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
2 changes: 2 additions & 0 deletions df-qol/src/df-qol.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down

0 comments on commit 71b0c3a

Please sign in to comment.