From 7f2987041e1eb20512b4065c3d8ab4c15c8521e9 Mon Sep 17 00:00:00 2001 From: Pabloader Date: Fri, 10 Apr 2026 09:38:23 +0000 Subject: [PATCH] horde -> hordeseer --- .../{horde => hordeseer}/assets/app.module.css | 0 src/games/{horde => hordeseer}/assets/favicon.ico | Bin .../assets/leaderboard-modal.module.css | 0 .../assets/manage-workers-modal.module.css | 0 .../{horde => hordeseer}/assets/navbar.module.css | 0 .../assets/options-modal.module.css | 0 src/games/{horde => hordeseer}/assets/pwa_icon.png | Bin .../assets/stats-panel.module.css | 0 .../assets/worker-card.module.css | 2 +- .../assets/workers-panel.module.css | 0 src/games/{horde => hordeseer}/components/app.tsx | 0 .../components/modals/leaderboard-modal.tsx | 0 .../components/modals/manage-workers-modal.tsx | 0 .../components/modals/options-modal.tsx | 0 .../{horde => hordeseer}/components/navbar.tsx | 0 .../{horde => hordeseer}/components/stats-panel.tsx | 2 +- .../{horde => hordeseer}/components/worker-card.tsx | 0 .../components/workers-panel.tsx | 0 src/games/{horde => hordeseer}/contexts/state.tsx | 0 src/games/{horde => hordeseer}/index.tsx | 0 src/games/{horde => hordeseer}/utils/api.ts | 0 21 files changed, 2 insertions(+), 2 deletions(-) rename src/games/{horde => hordeseer}/assets/app.module.css (100%) rename src/games/{horde => hordeseer}/assets/favicon.ico (100%) rename src/games/{horde => hordeseer}/assets/leaderboard-modal.module.css (100%) rename src/games/{horde => hordeseer}/assets/manage-workers-modal.module.css (100%) rename src/games/{horde => hordeseer}/assets/navbar.module.css (100%) rename src/games/{horde => hordeseer}/assets/options-modal.module.css (100%) rename src/games/{horde => hordeseer}/assets/pwa_icon.png (100%) rename src/games/{horde => hordeseer}/assets/stats-panel.module.css (100%) rename src/games/{horde => hordeseer}/assets/worker-card.module.css (97%) rename src/games/{horde => hordeseer}/assets/workers-panel.module.css (100%) rename src/games/{horde => hordeseer}/components/app.tsx (100%) rename src/games/{horde => hordeseer}/components/modals/leaderboard-modal.tsx (100%) rename src/games/{horde => hordeseer}/components/modals/manage-workers-modal.tsx (100%) rename src/games/{horde => hordeseer}/components/modals/options-modal.tsx (100%) rename src/games/{horde => hordeseer}/components/navbar.tsx (100%) rename src/games/{horde => hordeseer}/components/stats-panel.tsx (98%) rename src/games/{horde => hordeseer}/components/worker-card.tsx (100%) rename src/games/{horde => hordeseer}/components/workers-panel.tsx (100%) rename src/games/{horde => hordeseer}/contexts/state.tsx (100%) rename src/games/{horde => hordeseer}/index.tsx (100%) rename src/games/{horde => hordeseer}/utils/api.ts (100%) diff --git a/src/games/horde/assets/app.module.css b/src/games/hordeseer/assets/app.module.css similarity index 100% rename from src/games/horde/assets/app.module.css rename to src/games/hordeseer/assets/app.module.css diff --git a/src/games/horde/assets/favicon.ico b/src/games/hordeseer/assets/favicon.ico similarity index 100% rename from src/games/horde/assets/favicon.ico rename to src/games/hordeseer/assets/favicon.ico diff --git a/src/games/horde/assets/leaderboard-modal.module.css b/src/games/hordeseer/assets/leaderboard-modal.module.css similarity index 100% rename from src/games/horde/assets/leaderboard-modal.module.css rename to src/games/hordeseer/assets/leaderboard-modal.module.css diff --git a/src/games/horde/assets/manage-workers-modal.module.css b/src/games/hordeseer/assets/manage-workers-modal.module.css similarity index 100% rename from src/games/horde/assets/manage-workers-modal.module.css rename to src/games/hordeseer/assets/manage-workers-modal.module.css diff --git a/src/games/horde/assets/navbar.module.css b/src/games/hordeseer/assets/navbar.module.css similarity index 100% rename from src/games/horde/assets/navbar.module.css rename to src/games/hordeseer/assets/navbar.module.css diff --git a/src/games/horde/assets/options-modal.module.css b/src/games/hordeseer/assets/options-modal.module.css similarity index 100% rename from src/games/horde/assets/options-modal.module.css rename to src/games/hordeseer/assets/options-modal.module.css diff --git a/src/games/horde/assets/pwa_icon.png b/src/games/hordeseer/assets/pwa_icon.png similarity index 100% rename from src/games/horde/assets/pwa_icon.png rename to src/games/hordeseer/assets/pwa_icon.png diff --git a/src/games/horde/assets/stats-panel.module.css b/src/games/hordeseer/assets/stats-panel.module.css similarity index 100% rename from src/games/horde/assets/stats-panel.module.css rename to src/games/hordeseer/assets/stats-panel.module.css diff --git a/src/games/horde/assets/worker-card.module.css b/src/games/hordeseer/assets/worker-card.module.css similarity index 97% rename from src/games/horde/assets/worker-card.module.css rename to src/games/hordeseer/assets/worker-card.module.css index fbb3345..760257f 100644 --- a/src/games/horde/assets/worker-card.module.css +++ b/src/games/hordeseer/assets/worker-card.module.css @@ -14,7 +14,7 @@ } .own { - border-color: var(--accent) !important; + border-color: var(--accent-alt) !important; } .offline { diff --git a/src/games/horde/assets/workers-panel.module.css b/src/games/hordeseer/assets/workers-panel.module.css similarity index 100% rename from src/games/horde/assets/workers-panel.module.css rename to src/games/hordeseer/assets/workers-panel.module.css diff --git a/src/games/horde/components/app.tsx b/src/games/hordeseer/components/app.tsx similarity index 100% rename from src/games/horde/components/app.tsx rename to src/games/hordeseer/components/app.tsx diff --git a/src/games/horde/components/modals/leaderboard-modal.tsx b/src/games/hordeseer/components/modals/leaderboard-modal.tsx similarity index 100% rename from src/games/horde/components/modals/leaderboard-modal.tsx rename to src/games/hordeseer/components/modals/leaderboard-modal.tsx diff --git a/src/games/horde/components/modals/manage-workers-modal.tsx b/src/games/hordeseer/components/modals/manage-workers-modal.tsx similarity index 100% rename from src/games/horde/components/modals/manage-workers-modal.tsx rename to src/games/hordeseer/components/modals/manage-workers-modal.tsx diff --git a/src/games/horde/components/modals/options-modal.tsx b/src/games/hordeseer/components/modals/options-modal.tsx similarity index 100% rename from src/games/horde/components/modals/options-modal.tsx rename to src/games/hordeseer/components/modals/options-modal.tsx diff --git a/src/games/horde/components/navbar.tsx b/src/games/hordeseer/components/navbar.tsx similarity index 100% rename from src/games/horde/components/navbar.tsx rename to src/games/hordeseer/components/navbar.tsx diff --git a/src/games/horde/components/stats-panel.tsx b/src/games/hordeseer/components/stats-panel.tsx similarity index 98% rename from src/games/horde/components/stats-panel.tsx rename to src/games/hordeseer/components/stats-panel.tsx index b41eb09..a2c2697 100644 --- a/src/games/horde/components/stats-panel.tsx +++ b/src/games/hordeseer/components/stats-panel.tsx @@ -59,7 +59,7 @@ export const StatsPanel = () => {
Workers
-
{user.worker_count}
+
{ownWorkers.length}/{user.worker_count}
Tokens generated
diff --git a/src/games/horde/components/worker-card.tsx b/src/games/hordeseer/components/worker-card.tsx similarity index 100% rename from src/games/horde/components/worker-card.tsx rename to src/games/hordeseer/components/worker-card.tsx diff --git a/src/games/horde/components/workers-panel.tsx b/src/games/hordeseer/components/workers-panel.tsx similarity index 100% rename from src/games/horde/components/workers-panel.tsx rename to src/games/hordeseer/components/workers-panel.tsx diff --git a/src/games/horde/contexts/state.tsx b/src/games/hordeseer/contexts/state.tsx similarity index 100% rename from src/games/horde/contexts/state.tsx rename to src/games/hordeseer/contexts/state.tsx diff --git a/src/games/horde/index.tsx b/src/games/hordeseer/index.tsx similarity index 100% rename from src/games/horde/index.tsx rename to src/games/hordeseer/index.tsx diff --git a/src/games/horde/utils/api.ts b/src/games/hordeseer/utils/api.ts similarity index 100% rename from src/games/horde/utils/api.ts rename to src/games/hordeseer/utils/api.ts