Skip to content

Commit

Permalink
settings update
Browse files Browse the repository at this point in the history
  • Loading branch information
philote committed Aug 28, 2023
1 parent 58f14f7 commit 4106402
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions module/helpers/settings.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ export const registerSettings = function() {
scope: "world",
config: true,
type: Boolean,
default: false
default: false,
onChange: _ => window.location.reload()
});

game.settings.register('cthulhudeepgreen', 'show-exposure', {
Expand All @@ -15,7 +16,8 @@ export const registerSettings = function() {
scope: "world",
config: true,
type: Boolean,
default: false
default: false,
onChange: _ => window.location.reload()
});

game.settings.register("cthulhudeepgreen", "current-exposure", {
Expand Down

0 comments on commit 4106402

Please sign in to comment.