Skip to content

Commit

Permalink
-Fixed missing methods from game patch 1.045.013
Browse files Browse the repository at this point in the history
  • Loading branch information
chessmaster42 committed Aug 29, 2014
1 parent 3549833 commit 5bd9fd7
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion SEModAPIInternal/API/Entity/BaseEntity.cs
Original file line number Diff line number Diff line change
Expand Up @@ -833,7 +833,7 @@ public class BaseEntityNetworkManager
public static string BaseEntityNetworkManagerNamespace = "5F381EA9388E0A32A8C817841E192BE8";
public static string BaseEntityNetworkManagerClass = "48D79F8E3C8922F14D85F6D98237314C";

public static string BaseEntityBroadcastRemovalMethod = "60FF09F778CDDA6A0FB70EB387702B5A";
public static string BaseEntityBroadcastRemovalMethod = "07A10B3299467BA857722A4CF44C08FA";

//Packets
//10 - ??
Expand Down
6 changes: 3 additions & 3 deletions SEModAPIInternal/API/Entity/PowerProducer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ public class PowerProducer
public static string PowerProducerNamespace = "FB8C11741B7126BD9C97FE76747E087F";
public static string PowerProducerClass = "7E69388ED0DB47818FB7AFF9F16C6EDA";

public static string PowerProducerGetMaxPowerOutputMethod = "387129D7EFDBCE7A4ED1B9178FD8D732";
public static string PowerProducerGetCurrentOutputMethod = "9B0E679A5F8A3F9EE1F9A2FEE446F13F";
public static string PowerProducerSetCurrentOutputMethod = "2BA99BA0FEA6613A8408A4EC072B0484";
public static string PowerProducerGetMaxPowerOutputMethod = "E00F4DD634DDCE475602A32D26A53C9F";
public static string PowerProducerGetCurrentOutputMethod = "A651A5DE160FB93E9A42BDBBB6842B97";
public static string PowerProducerSetCurrentOutputMethod = "8C7B376E624F0A42DE287AA489D4A517";

#endregion

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -483,7 +483,7 @@ protected static void ReceiveCurrentPowerPacket<T>(ref T packet, Object netManag
{
try
{
object result = BaseObject.InvokeEntityMethod(packet, "552425B7A9EDD20DA3AD6309E9A5A6C9");
object result = BaseObject.InvokeEntityMethod(packet, "F90A78E04C13997F4430A35CE2D2AF48");
if (result == null)
return;
long entityId = (long)result;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public class LandingGearEntity : FunctionalBlockEntity
public static string LandingGearNamespace = "6DDCED906C852CFDABA0B56B84D0BD74";
public static string LandingGearClass = "5C73AAF1736F3AA9956574C6D9A2EEBE";

public static string LandingGearGetAutoLockMethod = "9636D71556BCCF597936ED6DB44ADB32";
public static string LandingGearGetAutoLockMethod = "2029452E34497F90579C6E212EF3B5C9";
public static string LandingGearSetAutoLockMethod = "F542ACDC0D61EB46F733A5527CFFBE14";
public static string LandingGearGetBrakeForceMethod = "A84CC3FC7B1C4CA0A631E34D2F024163";
public static string LandingGearSetBrakeForceMethod = "013F45FD594F8A80D5952A7AC22A931E";
Expand Down
4 changes: 2 additions & 2 deletions SEModAPIInternal/API/Server/ServerNetworkManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ public class ServerNetworkManager : NetworkManager
public static string ServerNetworkManagerClass = "3B0B7A338600A7B9313DE1C3723DAD14";

public static string ServerNetworkManagerDisconnectPlayerMethod = "09FDD2D9700A7E602BE8722F81A55AC6";
public static string ServerNetworkManagerSetPlayerBannedMethod = "6E12425ACDB440E75BD83239EC0F2A64";
public static string ServerNetworkManagerKickPlayerMethod = "B3060AA14AD873B5BBF642517C7B7CC3";
public static string ServerNetworkManagerSetPlayerBannedMethod = "A246527F58423CEBF0BB2D8093B49FFA";
public static string ServerNetworkManagerKickPlayerMethod = "3FAE81FF031B80F7DFF713562824B03E";

public static string ServerNetworkManagerConnectedPlayersField = "89E92B070228A8BC746EFB57A3F6D2E5";

Expand Down

0 comments on commit 5bd9fd7

Please sign in to comment.