Made hiding stats that aren't targeted by effects or proficiencies an option

This commit is contained in:
Thaum Rystra
2020-05-28 21:06:40 +02:00
parent 9236f3e477
commit 36c23e1eb5
7 changed files with 75 additions and 30 deletions

View File

@@ -93,6 +93,11 @@ let ComputedOnlyAttributeSchema = new SimpleSchema({
type: SimpleSchema.Integer,
optional: true,
},
// Should this attribute hide
hide: {
type: Boolean,
optional: true,
},
});
const ComputedAttributeSchema = new SimpleSchema()

View File

@@ -101,6 +101,11 @@ let ComputedOnlySkillSchema = new SimpleSchema({
type: SimpleSchema.Integer,
optional: true,
},
// Should this attribute hide
hide: {
type: Boolean,
optional: true,
},
})
const ComputedSkillSchema = new SimpleSchema()