Updated to latest API

This commit is contained in:
dginovker 2020-12-09 13:50:48 -05:00
parent 6842808659
commit 9c176e668b

View File

@ -43,7 +43,7 @@ hiscores.loadUserTable = (username) => {
.then(response => response.json())
.then(result => {
document.getElementById('search_name').style.color = 'black';
hiscores.tableData = result;
hiscores.tableData = result.skills;
hiscores.populatePlayerHSTable();
hiscores.setHeadSkillText(hiscores.formatName(username, true));
})