Skip to content

Commit

Permalink
Fixed typo AddStationComponen -> AddStationComponent in Log.Info call…
Browse files Browse the repository at this point in the history
… in PlanetTransport_Patch.cs
  • Loading branch information
antfightclub committed Apr 5, 2024
1 parent ae8e7af commit f24e17f
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 @@ -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));
}
Expand Down

0 comments on commit f24e17f

Please sign in to comment.