diff options
Diffstat (limited to 'test-data-generator/index.ts')
-rw-r--r-- | test-data-generator/index.ts | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test-data-generator/index.ts b/test-data-generator/index.ts index 78493f1..de96077 100644 --- a/test-data-generator/index.ts +++ b/test-data-generator/index.ts @@ -55,7 +55,7 @@ async function addConstants() { 'values', 'zones', 'harp_songs', - 'max_minion_tiers' + 'max_minion_tiers', ] for (const constantName of constantNames) { const constantData = await constants.fetchJSONConstant(constantName + '.json') @@ -67,6 +67,7 @@ async function addConstants() { async function main() { await addResponse('resources/skyblock/items', {}, '') + await addResponse('resources/achievements', {}, '') const uuidsToUsername = {} for (const playerUuid of playerUuids) { await addResponse('player', { uuid: playerUuid }, playerUuid) |