Add missing semicolons
This commit is contained in:
parent
3ffbc57546
commit
c1f0e8d9c5
1 changed files with 2 additions and 2 deletions
|
|
@ -46,14 +46,14 @@ export class WeaponData extends foundry.abstract.TypeDataModel {
|
|||
// #region Getters
|
||||
get traitString() {
|
||||
return [...this.traits].join(`, `);
|
||||
}
|
||||
};
|
||||
|
||||
get rangeString() {
|
||||
if (this.range.short && this.range.long) {
|
||||
return `${this.range.short} / ${this.range.long}`;
|
||||
};
|
||||
return String(this.range.short ?? this.range.long ?? ``);
|
||||
}
|
||||
};
|
||||
// #endregion
|
||||
|
||||
// #region Sheet Data
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue