forked from public/bol
initial import
This commit is contained in:
13
module/system/settings.js
Normal file
13
module/system/settings.js
Normal file
@ -0,0 +1,13 @@
|
||||
export const registerSystemSettings = function() {
|
||||
|
||||
game.settings.register("bol", "displayDifficulty", {
|
||||
name: "Affiche la difficulté",
|
||||
hint: "Active l'affichage de la difficulté sur les jets de compétences/attributs et d'armes.",
|
||||
scope: "world",
|
||||
config: true,
|
||||
default: true,
|
||||
type: Boolean,
|
||||
onChange: lang => window.location.reload()
|
||||
});
|
||||
|
||||
};
|
Reference in New Issue
Block a user