diff --git a/libMBIN/Source/NMS/Toolkit/TkPhysicsWorldComponentData.cs b/libMBIN/Source/NMS/Toolkit/TkPhysicsWorldComponentData.cs index 923a63723..e93a3f6b6 100644 --- a/libMBIN/Source/NMS/Toolkit/TkPhysicsWorldComponentData.cs +++ b/libMBIN/Source/NMS/Toolkit/TkPhysicsWorldComponentData.cs @@ -1,9 +1,11 @@ namespace libMBIN.NMS.Toolkit { - [NMS(GUID = 0x8707747C98418DF2, NameHash = 0xB7832FA2)] + [NMS(GUID = 0xFAA5A0922BA74CC2, NameHash = 0xB7832FA2)] public class TkPhysicsWorldComponentData : NMSTemplate { [NMS(Index = 0)] - /* 0x0 */ public float SafeRadius; + /* 0x0 */ public int MaximumNumberOfBodies; + [NMS(Index = 1)] + /* 0x4 */ public float SafeRadius; } } diff --git a/libMBIN/Source/Version.cs b/libMBIN/Source/Version.cs index 586b0ea88..67d787391 100644 --- a/libMBIN/Source/Version.cs +++ b/libMBIN/Source/Version.cs @@ -25,7 +25,7 @@ public static class Version { // the Prerelease version should be reset to 1 // When the Release version is incremented: // the Prerelease version should be reset to 0 - internal const string VERSION_STRING = "6.11.0.1"; + internal const string VERSION_STRING = "6.13.0.1"; /// Shorthand for AssemblyVersion.Major public static int Major => AssemblyVersion.Major;