Skip to content

Commit

Permalink
Merge pull request #672 from antfightclub/logging-typo-PlanetTranspor…
Browse files Browse the repository at this point in the history
…t_Patch

Fixed typo AddStationComponen -> AddStationComponent
  • Loading branch information
starfi5h authored Apr 5, 2024
2 parents 80f98e6 + f24e17f commit f95aecd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion NebulaPatcher/Patches/Dynamic/PlanetTransport_Patch.cs
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,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,
__result.entityId, _desc.stationMaxShipCount));
}
Expand Down

0 comments on commit f95aecd

Please sign in to comment.