From f24e17f4221ba98ec9abdf2bc12d5f8855debfbc Mon Sep 17 00:00:00 2001 From: Monapink Date: Fri, 5 Apr 2024 16:00:32 +0200 Subject: [PATCH] Fixed typo AddStationComponen -> AddStationComponent in Log.Info call in PlanetTransport_Patch.cs --- NebulaPatcher/Patches/Dynamic/PlanetTransport_Patch.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/NebulaPatcher/Patches/Dynamic/PlanetTransport_Patch.cs b/NebulaPatcher/Patches/Dynamic/PlanetTransport_Patch.cs index 4d08f405b..2e3732d3c 100644 --- a/NebulaPatcher/Patches/Dynamic/PlanetTransport_Patch.cs +++ b/NebulaPatcher/Patches/Dynamic/PlanetTransport_Patch.cs @@ -60,7 +60,7 @@ public static void NewStationComponent_Postfix(PlanetTransport __instance, Stati // so they can add it to their GalacticTransport as they don't do that. Note that we're doing this in // PlanetTransport.NewStationComponent and not GalacticTransport.AddStationComponent because stationId will be set at this point. Log.Info( - $"Send AddStationComponen to all clients for planet {__result.planetId}, id {__result.id} with gId of {__result.gid}"); + $"Send AddStationComponent to all clients for planet {__result.planetId}, id {__result.id} with gId of {__result.gid}"); Multiplayer.Session.Network.SendPacket(new ILSAddStationComponent(__result.planetId, __result.id, __result.gid, _desc.stationMaxShipCount)); }