From dc4f5d8b3d99acb47fdbfe760d73fa27badc06f5 Mon Sep 17 00:00:00 2001 From: FN Date: Sat, 8 Feb 2025 20:55:09 +0700 Subject: [PATCH 1/2] Goal fix --- Content.Server/Corvax/StationGoal/StationGoalPaperSystem.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Server/Corvax/StationGoal/StationGoalPaperSystem.cs b/Content.Server/Corvax/StationGoal/StationGoalPaperSystem.cs index 383c28bc261..44f45ef48f7 100644 --- a/Content.Server/Corvax/StationGoal/StationGoalPaperSystem.cs +++ b/Content.Server/Corvax/StationGoal/StationGoalPaperSystem.cs @@ -108,7 +108,7 @@ public bool SendStationGoal(EntityUid? ent, StationGoalPrototype goal) var largestGrid = _station.GetLargestGrid(stationData); var grid = Transform(faxUid).GridUid; - if (grid is not null && largestGrid == grid.Value) + if (grid is not null) // Corvax-Next-Goal { _fax.Receive(faxUid, printout, null, fax); foreach (var spawnEnt in goal.Spawns) From 58f46398a62db2df34115f6b6fcc4d6e0de41d04 Mon Sep 17 00:00:00 2001 From: FN Date: Sat, 8 Feb 2025 22:25:52 +0700 Subject: [PATCH 2/2] Corvax port --- Content.Server/Corvax/StationGoal/StationGoalPaperSystem.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Server/Corvax/StationGoal/StationGoalPaperSystem.cs b/Content.Server/Corvax/StationGoal/StationGoalPaperSystem.cs index 44f45ef48f7..23e73722bbb 100644 --- a/Content.Server/Corvax/StationGoal/StationGoalPaperSystem.cs +++ b/Content.Server/Corvax/StationGoal/StationGoalPaperSystem.cs @@ -108,7 +108,7 @@ public bool SendStationGoal(EntityUid? ent, StationGoalPrototype goal) var largestGrid = _station.GetLargestGrid(stationData); var grid = Transform(faxUid).GridUid; - if (grid is not null) // Corvax-Next-Goal + if (grid is not null) // Corvax-Goal { _fax.Receive(faxUid, printout, null, fax); foreach (var spawnEnt in goal.Spawns)