Skip to content

Commit bb56de6

Browse files
committed
generational typo
1 parent 22f8c02 commit bb56de6

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

lib/cloudflare.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,14 +29,13 @@ async function getData<T>(
2929
const data = {} as Record<string, T>;
3030

3131
for (const mod of MODULES) {
32-
const fileName = `EssentialX${mod.replace(' ', '')}-${type}.json`;
32+
const fileName = `EssentialsX${mod.replace(' ', '')}-${type}.json`;
3333
const file = await bucket.get(fileName);
3434
if (file) {
3535
data[mod.length ? mod : 'Essentials'] = await file.json();
3636
}
3737
}
3838

39-
console.log('Loaded data for', type, ':', Object.keys(data).join(', '));
4039
return data;
4140
}
4241

0 commit comments

Comments
 (0)