Skip to content
Merged
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
0dbef5a
fix: hex colors
DuckySoLucky Mar 30, 2025
12b24b6
fix: some minor bug fixes
DuckySoLucky Mar 30, 2025
081bf8c
update info header to refer to new repository (#129)
Hydoxl Mar 31, 2025
fbf71d4
fix: wth
DuckySoLucky Mar 31, 2025
ef76397
fix: do not fetch garden unless unlocked
DuckySoLucky Mar 31, 2025
d8f93b4
fix: enrichments
DuckySoLucky Mar 31, 2025
6490191
fix: garden
DuckySoLucky Mar 31, 2025
adec08d
feat: cache /api/item endpoint
DuckySoLucky Mar 31, 2025
3d1086e
Update src/lib/server/stats/missing.ts
DuckySoLucky Mar 31, 2025
b0a74c8
Update src/lib/server/helper/renderer.ts
DuckySoLucky Mar 31, 2025
e5986d9
feat(items): add back backpack networth
DuckySoLucky Mar 31, 2025
076e845
fix: ironman logo
DuckySoLucky Mar 31, 2025
8dc379e
fix: do not show dungeon fllors that aren't unlocked
DuckySoLucky Mar 31, 2025
a1979d4
fix: get enchantment glint if colored armor
DuckySoLucky Mar 31, 2025
1a84136
fix(members): do not throw an error if invalid username
DuckySoLucky Apr 2, 2025
f12c6ad
fix(homePage): show favorited players even if usernaem resolving failsg
DuckySoLucky Apr 3, 2025
91c77f2
fix(items): nw calc can be null
DuckySoLucky Apr 3, 2025
dd77944
Merge branch 'prod' into dev
DuckySoLucky Apr 3, 2025
b4bb4bb
refactor(SEO): embed, add class average
DuckySoLucky Apr 3, 2025
8734fc2
Merge branch 'dev' of https://github.com/SkyCryptWebsite/SkyCryptv2 i…
DuckySoLucky Apr 3, 2025
27af29e
feat(homePage): add back technoblade
DuckySoLucky Apr 3, 2025
0503744
fix(items): all APIs diabled but museumm not showing items
DuckySoLucky Apr 5, 2025
c8c6251
fix(rift): armor & equipment failing to load if not full set
DuckySoLucky Apr 5, 2025
b429f41
fix(dungeons): dungeon classes undefined
DuckySoLucky Apr 9, 2025
b8d2f55
fix(enchantmnets): Big Brain V not being gold
DuckySoLucky Apr 9, 2025
516b5ed
fix(items): items inside of storage not having nw value
DuckySoLucky Apr 9, 2025
650286a
feat(missing): add wiki links
DuckySoLucky Apr 9, 2025
74c8717
fix: Aquamarine Data giving SCC instead of FS (#134)
jani270 Apr 9, 2025
d5600c1
fix(SEO): dungeons
DuckySoLucky Apr 10, 2025
59edb21
Merge branch 'dev' of https://github.com/SkyCryptWebsite/SkyCryptv2 i…
DuckySoLucky Apr 10, 2025
12ed2e4
Merge branch 'prod' into dev
DuckySoLucky Apr 10, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/lib/components/SEO.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -85,8 +85,8 @@
}

if (profile.dungeons !== undefined) {
const dungeonsLevel = profile.dungeons?.level?.levelWithProgress;
const classAverage = profile.dungeons.classes.classAverageWithProgress;
const dungeonsLevel = profile.dungeons.level?.levelWithProgress;
const classAverage = profile.dungeons.classes?.classAverageWithProgress;
if (dungeonsLevel > 0 && classAverage > 0) {
output += `🪦 Dungeons: ${dungeonsLevel.toFixed(2)} (${classAverage.toFixed(2)})\n`;
}
Expand Down