Add a setting to make it so that range can be condensed on the Weapon sheet

This commit is contained in:
Oliver-Akins 2025-01-26 14:28:55 -07:00
parent 3cff9fda7d
commit 497756e8b1
3 changed files with 40 additions and 3 deletions

View file

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