clean up debug logs from skill filtering investigation
This commit is contained in:
parent
9bdcc7818b
commit
e595196172
1 changed files with 2 additions and 1 deletions
|
|
@ -108,6 +108,7 @@ export class ArtifactAdapter extends BaseAdapter {
|
||||||
4: 'group_iii'
|
4: 'group_iii'
|
||||||
}
|
}
|
||||||
const group = groupMap[slot]
|
const group = groupMap[slot]
|
||||||
|
|
||||||
if (!group) {
|
if (!group) {
|
||||||
throw new Error(`Invalid slot number: ${slot}. Must be 1-4.`)
|
throw new Error(`Invalid slot number: ${slot}. Must be 1-4.`)
|
||||||
}
|
}
|
||||||
|
|
@ -116,7 +117,7 @@ export class ArtifactAdapter extends BaseAdapter {
|
||||||
'/artifact_skills',
|
'/artifact_skills',
|
||||||
{
|
{
|
||||||
method: 'GET',
|
method: 'GET',
|
||||||
query: { skillGroup: group },
|
query: { group },
|
||||||
cacheTime: 60 * 60 * 1000 // 1 hour
|
cacheTime: 60 * 60 * 1000 // 1 hour
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue