Skip to content

Commit

Permalink
Fixed scoping
Browse files Browse the repository at this point in the history
  • Loading branch information
ChasarooniZ committed Feb 27, 2024
1 parent 141ce80 commit d462051
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions scripts/settings.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ Hooks.on("init", () => {
game.settings.register("pf2e-rules-lawyer", "player.offset.x", {
name: game.i18n.localize("pf2e-rules-lawyer.module-settings.player.offset.x.name"),
hint: game.i18n.localize("pf2e-rules-lawyer.module-settings.player.offset.x.hint"),
scope: "world",
scope: "client",
config: true,
default: 0,
type: Number,
Expand All @@ -40,7 +40,7 @@ Hooks.on("init", () => {
game.settings.register("pf2e-rules-lawyer", "player.offset.y", {
name: game.i18n.localize("pf2e-rules-lawyer.module-settings.player.offset.y.name"),
hint: game.i18n.localize("pf2e-rules-lawyer.module-settings.player.offset.y.hint"),
scope: "world",
scope: "client",
config: true,
default: 0,
type: Number,
Expand Down Expand Up @@ -73,7 +73,7 @@ Hooks.on("init", () => {
game.settings.register("pf2e-rules-lawyer", "player.scale", {
name: game.i18n.localize("pf2e-rules-lawyer.module-settings.player.scale.name"),
hint: game.i18n.localize("pf2e-rules-lawyer.module-settings.player.scale.hint"),
scope: "world",
scope: "client",
config: true,
default: 1,
type: Number,
Expand Down

0 comments on commit d462051

Please sign in to comment.