Add a setting that makes it so player rolls don't auto-update the sands of fate

This commit is contained in:
Eldritch-Oliver 2025-10-07 22:16:23 -06:00
parent c0a9731b02
commit 77d43f28b4
2 changed files with 14 additions and 0 deletions

View file

@ -39,4 +39,14 @@ export function registerWorldSettings() {
},
}),
});
game.settings.register(`ripcrypt`, `allowUpdateSandsSocket`, {
name: `RipCrypt.setting.allowUpdateSandsSocket.name`,
hint: `RipCrypt.setting.allowUpdateSandsSocket.hint`,
scope: `world`,
config: true,
requiresReload: false,
type: Boolean,
default: true,
});
};