Skip to content

Commit 00934b8

Browse files
committed
Add R10 and enable GAC stuff (Thanks Scuba)
1 parent 0963d10 commit 00934b8

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

site/src/account-viewer/locations.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ export function relicChart(relics: number[]) {
6767
const canvas = makeCanvas("relicCanvas")
6868

6969
const data = {
70-
labels: ["Not Reliced", "Relic 0", "Relic 1", "Relic 2", "Relic 3", "Relic 4", "Relic 5", "Relic 6", "Relic 7", "Relic 8", "Relic 9"],
70+
labels: ["Not Reliced", "Relic 0", "Relic 1", "Relic 2", "Relic 3", "Relic 4", "Relic 5", "Relic 6", "Relic 7", "Relic 8", "Relic 9", "Relic 10"],
7171
datasets: [{
7272
label: "Relics",
7373
data: relics,
@@ -83,6 +83,7 @@ export function relicChart(relics: number[]) {
8383
"#4c1d95",
8484
"#3b0764",
8585
"#2e1065",
86+
"#000000",
8687
],
8788
borderColor: "#ffffff",
8889
borderWidth: 1.5,

site/src/account-viewer/main.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ const closeBtn = document.getElementById("closeTerms") as HTMLButtonElement;
2121
const openTerms = document.getElementById("openTerms") as HTMLAnchorElement;
2222

2323
const dashboardSections = document.querySelectorAll<HTMLElement>(
24-
".player-info, .stats-grid, .charts-grid, .stats-grid-2, .back" //, .gac-info
24+
".player-info, .stats-grid, .charts-grid, .stats-grid-2, .back, .gac-info"
2525
);
2626

2727
const urlParams = new URLSearchParams(window.location.search);

0 commit comments

Comments
 (0)