From 02791f9500e91b382906a480a52fcbb8647c88e4 Mon Sep 17 00:00:00 2001 From: josh Date: Sat, 25 Apr 2026 00:02:04 -0400 Subject: [PATCH] Remove per-rack production failure notifications These spam the notification feed at scale with thousands of racks. Co-Authored-By: Claude Opus 4.6 --- packages/game-engine/src/systems/infrastructureSystem.ts | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/packages/game-engine/src/systems/infrastructureSystem.ts b/packages/game-engine/src/systems/infrastructureSystem.ts index f554ce3..1b4533b 100644 --- a/packages/game-engine/src/systems/infrastructureSystem.ts +++ b/packages/game-engine/src/systems/infrastructureSystem.ts @@ -361,11 +361,7 @@ export function processInfrastructure(state: GameState): InfraTickResult { repairCount: 0, }); - notifications.push({ - title: 'Production Failure', - message: `${dc.name}: ${prodFailures} rack${prodFailures > 1 ? 's' : ''} failed in production — sent for repair.`, - type: 'danger', - }); + } }