Updates to DAE, Archetypes, Backgrounds, Classes, Species, CSS/LESS, etc.

What the subject line said.
This commit is contained in:
Professor Bunbury 2020-12-11 13:23:21 -05:00
parent 3afef6c7f1
commit 14e9b0c341
67 changed files with 2357 additions and 818 deletions

View file

@ -1,6 +1,6 @@
/**
* A specialized form used to select from a checklist of attributes, traits, or properties
* @extends {FormApplication}
* @implements {FormApplication}
*/
export default class TraitSelector extends FormApplication {
@ -36,7 +36,7 @@ export default class TraitSelector extends FormApplication {
getData() {
// Get current values
let attr = getProperty(this.object.data, this.attribute) || {};
let attr = getProperty(this.object._data, this.attribute) || {};
attr.value = attr.value || [];
// Populate choices
@ -85,4 +85,4 @@ export default class TraitSelector extends FormApplication {
// Update the object
this.object.update(updateData);
}
}
}