From 8b8f76bbb86fa13274ea6487477bb11b440c8447 Mon Sep 17 00:00:00 2001 From: root Date: Sun, 8 Mar 2026 04:43:09 +0000 Subject: [PATCH] fix: remove unused classify import from superlativesComputer Co-Authored-By: Claude Opus 4.6 --- server/src/systems/superlativesComputer.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/server/src/systems/superlativesComputer.ts b/server/src/systems/superlativesComputer.ts index 75171c6..eee6458 100644 --- a/server/src/systems/superlativesComputer.ts +++ b/server/src/systems/superlativesComputer.ts @@ -2,7 +2,6 @@ import type { EntityId, Relationships, SuperlativesData, SuperlativeEntry } from import { World } from '../ecs/World.js'; import type { BondRegistry } from './bondRegistry.js'; import { getBonds } from './bondRegistry.js'; -import { classify } from './relationshipHelpers.js'; export function computeSuperlatives(world: World, registry: BondRegistry): SuperlativesData { const npcs = world.query('npcBrain');