Use collectable counts from ffxivcollect
This commit is contained in:
parent
311240bafd
commit
6eeb151d1e
1 changed files with 4 additions and 4 deletions
|
@ -88,15 +88,15 @@ class CardCreator {
|
||||||
}
|
}
|
||||||
|
|
||||||
async countMountsMinions() {
|
async countMountsMinions() {
|
||||||
var response = await fetch(`https://xivapi.com/Companion`);
|
var response = await fetch(`https://ffxivcollect.com/api/minions/`);
|
||||||
var data = await response.json();
|
var data = await response.json();
|
||||||
|
|
||||||
this.countMinion = data.Pagination.ResultsTotal;
|
this.countMinion = data.count;
|
||||||
|
|
||||||
var response = await fetch(`https://xivapi.com/Mount`);
|
var response = await fetch(`https://ffxivcollect.com/api/mounts/`);
|
||||||
var data = await response.json();
|
var data = await response.json();
|
||||||
|
|
||||||
this.countMount = data.Pagination.ResultsTotal;
|
this.countMount = data.count;
|
||||||
|
|
||||||
console.log(`Refreshed counts: ${this.countMinion} - ${this.countMount}`);
|
console.log(`Refreshed counts: ${this.countMinion} - ${this.countMount}`);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue