Fix eslint and lint the codebase

This commit is contained in:
Oliver 2026-03-16 22:01:06 -06:00
parent 23a402f11a
commit 761f0b6563
6 changed files with 22 additions and 12 deletions

View file

@ -90,7 +90,7 @@ export class TAFActor extends Actor {
// #region Getters
#sortedTypes = null;
get itemTypes() {
if (this.#sortedTypes) return this.#sortedTypes;
if (this.#sortedTypes) { return this.#sortedTypes };
const types = {};
for (const item of this.items) {
if (item.type !== `generic`) {