Added the ability to hide spells and tree tab. Tree tab hidden by default

This commit is contained in:
Stefan Zermatten
2021-04-11 10:43:33 +02:00
parent d89cb77040
commit 9814e20091
4 changed files with 37 additions and 5 deletions

View File

@@ -35,6 +35,16 @@ let CreatureSettingsSchema = new SimpleSchema({
type: Boolean,
optional: true,
},
// Show the tree tab
showTreeTab: {
type: Boolean,
optional: true,
},
// Hide the spells tab
hideSpellsTab: {
type: Boolean,
optional: true,
},
// How much each hitDice resets on a long rest
hitDiceResetMultiplier: {
type: Number,