Buffs can skip var freezing, freeze inline calcs

This commit is contained in:
Stefan Zermatten
2022-08-25 15:10:56 +02:00
parent 249aebea0f
commit a84da7d8a5
3 changed files with 53 additions and 1 deletions

View File

@@ -31,6 +31,11 @@ let BuffSchema = createPropertySchema({
},
// Prevent the property from showing up in the log
silent: {
type: Boolean,
optional: true,
},
// Prevent the children from being crystalized
skipCrystalization: {
type: Boolean,
optional: true,
},