Skip to content

Commit 547dd67

Browse files
authored
equipment: removing nulls in tiers
1 parent 5dd13a9 commit 547dd67

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/equipments/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ function parseEquipment(name: string, href: string, category: string, body: stri
153153
else console.log(eq.names.en);
154154
eq.fits = t[1].fits;
155155
eq.misc = t[1].misc;
156-
tiers[t[0].tier] = t[0];
156+
tiers.push(t[0]);
157157
}
158158
process.stdout.write("");
159159
eq.tiers = tiers;

0 commit comments

Comments
 (0)