From 30b076bbec77b1e7eafc755663ba4d9ad09831d3 Mon Sep 17 00:00:00 2001 From: vikingowl Date: Sun, 7 Dec 2025 20:06:08 +0100 Subject: [PATCH] feat: Add player avatars to all match detail pages and player profile MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Add Steam avatars to match overview scoreboard (both teams) - Add avatars to weapons page player table - Add avatars to damage page player table and top dealer cards - Add avatars to flashes page player table and Hall of Shame section - Replace initial-based chat avatars with real Steam avatars - Display actual Steam avatar on player profile page header All avatar implementations include team-colored borders and fallback to icons when avatar is unavailable. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- src/routes/match/[id]/+page.svelte | 63 +-- src/routes/match/[id]/chat/+page.svelte | 33 +- src/routes/match/[id]/damage/+page.svelte | 27 +- src/routes/match/[id]/flashes/+page.svelte | 33 +- src/routes/match/[id]/weapons/+page.svelte | 10 +- src/routes/player/[id]/+page.svelte | 534 ++++++++++++++++++--- 6 files changed, 574 insertions(+), 126 deletions(-) diff --git a/src/routes/match/[id]/+page.svelte b/src/routes/match/[id]/+page.svelte index 6e32150..50c7e23 100644 --- a/src/routes/match/[id]/+page.svelte +++ b/src/routes/match/[id]/+page.svelte @@ -1,14 +1,12 @@