Sync
This commit is contained in:
parent
05f044bc7c
commit
19bb0798c8
@ -203,10 +203,10 @@ export class BoLActor extends Actor {
|
||||
return Object.values(this.system.resources)
|
||||
}
|
||||
get boons() {
|
||||
return this.items.filter(i => i.type === "feature" && i.system.subtype === "boon");
|
||||
return duplicate(this.items.filter(i => i.type === "feature" && i.system.subtype === "boon") || []);
|
||||
}
|
||||
get flaws() {
|
||||
return this.items.filter(i => i.type === "feature" && i.system.subtype === "flaw");
|
||||
return duplicate(this.items.filter(i => i.type === "feature" && i.system.subtype === "flaw") || []);
|
||||
}
|
||||
get careers() {
|
||||
return duplicate( this.items.filter(i => i.type === "feature" && i.system.subtype === "career") || [])
|
||||
@ -288,10 +288,11 @@ export class BoLActor extends Actor {
|
||||
}
|
||||
|
||||
get bonusBoons() {
|
||||
return this.items.filter(i => i.type === "feature" && i.system.subtype === "boon" && i.system.properties.isbonusdice);
|
||||
let boons = this.items.filter(i => i.type === "feature" && i.system.subtype === "boon" && i.system.properties.isbonusdice)
|
||||
return duplicate( boons || [])
|
||||
}
|
||||
get malusFlaws() {
|
||||
return this.items.filter(i => i.type === "feature" && i.system.subtype === "flaw" && i.system.properties.ismalusdice);
|
||||
return duplicate( this.items.filter(i => i.type === "feature" && i.system.subtype === "flaw" && i.system.properties.ismalusdice) || []);
|
||||
}
|
||||
|
||||
isSorcerer() {
|
||||
|
Loading…
Reference in New Issue
Block a user