Add missing semicolons

This commit is contained in:
Oliver-Akins 2025-01-15 20:16:44 -07:00
parent 3ffbc57546
commit c1f0e8d9c5

View file

@ -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