From d0dcdf36c414734ebd32e0fa87ceb07046247fa8 Mon Sep 17 00:00:00 2001 From: Luis Gonzalez Date: Wed, 8 Jul 2026 00:04:01 -0700 Subject: [PATCH] Docs: fix 2 dead-symbol leftovers found by verification round - CycleDirectorSpawnSystem: drop the dangling (deleted const in B2) -> plain 'initial phase delay'. - BuildSendSystem: remove the stale '(Conveyor uses s_ConveyorDir for facing)' comment (field + hotkey deleted in B2). Comment-only; 459/459 EditMode tests pass. Adversarial verification round (2 agents over the full diff) found no behavior regressions and no false-confidence tests. Co-Authored-By: Claude Opus 4.8 (1M context) --- Assets/_Project/Scripts/Client/Building/BuildSendSystem.cs | 2 +- .../_Project/Scripts/Server/World/CycleDirectorSpawnSystem.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Assets/_Project/Scripts/Client/Building/BuildSendSystem.cs b/Assets/_Project/Scripts/Client/Building/BuildSendSystem.cs index 14370a22d..ff34ba31f 100644 --- a/Assets/_Project/Scripts/Client/Building/BuildSendSystem.cs +++ b/Assets/_Project/Scripts/Client/Building/BuildSendSystem.cs @@ -24,7 +24,7 @@ namespace ProjectM.Client public partial class BuildSendSystem : SystemBase { - // Dev hotkey fallback: key -> buildable (Conveyor uses s_ConveyorDir for facing). + // Dev hotkey fallback: key -> buildable. static readonly (UnityEngine.InputSystem.Key Key, byte Type)[] s_BuildHotkeys = { (UnityEngine.InputSystem.Key.B, StructureType.Turret), diff --git a/Assets/_Project/Scripts/Server/World/CycleDirectorSpawnSystem.cs b/Assets/_Project/Scripts/Server/World/CycleDirectorSpawnSystem.cs index 3094a8302..3c3fdb553 100644 --- a/Assets/_Project/Scripts/Server/World/CycleDirectorSpawnSystem.cs +++ b/Assets/_Project/Scripts/Server/World/CycleDirectorSpawnSystem.cs @@ -12,7 +12,7 @@ namespace ProjectM.Server /// but MINUS the RegionTag — the director must stay global so GhostRelevancy keeps it relevant to every /// region). On its first update it reads the baked + NetworkTime, /// instantiates the ghost, initializes (Expedition, cycle 1, PhaseEndTick = - /// now + ), adds the server-only , and + /// now + the initial phase delay), adds the server-only , and /// places it at the base center (preserving the prefab's baked LocalTransform scale — FromPosition would /// reset the replicated Scale GhostField), then destroys the spawner so it idles. ///