Register some settings for the system, including some developer-only settings
This commit is contained in:
parent
a2a72792a2
commit
2026785b09
6 changed files with 43 additions and 0 deletions
11
module/settings/client_settings.mjs
Normal file
11
module/settings/client_settings.mjs
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
export default function() {
|
||||
game.settings.register(`dotdungeon`, `showAvatarOnSheet`, {
|
||||
name: `dotdungeon.settings.showAvatarOnSheet.name`,
|
||||
hint: `dotdungeon.settings.showAvatarOnSheet.description`,
|
||||
scope: `client`,
|
||||
type: Boolean,
|
||||
config: true,
|
||||
default: true,
|
||||
requiresReload: false,
|
||||
});
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue