From f8e5817ccc5f6b993c739e3e098a8f551f3d397f Mon Sep 17 00:00:00 2001 From: HolterPhylo Date: Thu, 16 Apr 2026 12:56:25 -0400 Subject: [PATCH] Update for Steam experimental 22818786-165842 --- .../GameComponents/GcPetBattlerMoveTemplate.cs | 16 +++++++++------- .../NMS/GameComponents/GcPetBattlerMovesTable.cs | 2 +- .../TkNetReplicatedEntityComponentData.cs | 6 ++++-- libMBIN/Source/Version.cs | 2 +- 4 files changed, 15 insertions(+), 11 deletions(-) diff --git a/libMBIN/Source/NMS/GameComponents/GcPetBattlerMoveTemplate.cs b/libMBIN/Source/NMS/GameComponents/GcPetBattlerMoveTemplate.cs index 36a37ecdb..3bb0c569b 100644 --- a/libMBIN/Source/NMS/GameComponents/GcPetBattlerMoveTemplate.cs +++ b/libMBIN/Source/NMS/GameComponents/GcPetBattlerMoveTemplate.cs @@ -3,26 +3,28 @@ namespace libMBIN.NMS.GameComponents { - [NMS(GUID = 0x5A793D9B5CBE1A78, NameHash = 0xC274168E)] + [NMS(GUID = 0x1372919B9AB401F6, NameHash = 0xC274168E)] public class GcPetBattlerMoveTemplate : NMSTemplate { - [NMS(Index = 8)] + [NMS(Index = 9)] /* 0x000 */ public NMSTemplate AISelectionCriteria; [NMS(Index = 0)] /* 0x010 */ public NMSString0x10 ID; - [NMS(Index = 6)] + [NMS(Index = 7)] /* 0x020 */ public List Phases; - [NMS(Index = 5)] + [NMS(Index = 6)] /* 0x030 */ public GcPetBattlerIconStyle OverrideMoveIcon; [NMS(Index = 1)] /* 0x034 */ public NMSString0x80 DebugDescription; - [NMS(Index = 7)] + [NMS(Index = 8)] /* 0x0B4 */ public NMSString0x80 NameStub; [NMS(Index = 4)] /* 0x134 */ public bool BasicMove; + [NMS(Index = 5)] + /* 0x135 */ public bool CanHaveCooldownsReset; [NMS(Index = 3)] - /* 0x135 */ public bool MultiTurnMove; + /* 0x136 */ public bool MultiTurnMove; [NMS(Index = 2)] - /* 0x136 */ public GcPetBattlerTarget PrimaryTarget; + /* 0x137 */ public GcPetBattlerTarget PrimaryTarget; } } diff --git a/libMBIN/Source/NMS/GameComponents/GcPetBattlerMovesTable.cs b/libMBIN/Source/NMS/GameComponents/GcPetBattlerMovesTable.cs index 0fc2bbfe8..de3531d24 100644 --- a/libMBIN/Source/NMS/GameComponents/GcPetBattlerMovesTable.cs +++ b/libMBIN/Source/NMS/GameComponents/GcPetBattlerMovesTable.cs @@ -3,7 +3,7 @@ namespace libMBIN.NMS.GameComponents { - [NMS(GUID = 0xBA6BBC09227D91B9, NameHash = 0x49261BF3)] + [NMS(GUID = 0xB859FE93EE77A89F, NameHash = 0x49261BF3)] public class GcPetBattlerMovesTable : NMSTemplate { [NMS(Index = 0)] diff --git a/libMBIN/Source/NMS/Toolkit/TkNetReplicatedEntityComponentData.cs b/libMBIN/Source/NMS/Toolkit/TkNetReplicatedEntityComponentData.cs index e5c606094..64021f286 100644 --- a/libMBIN/Source/NMS/Toolkit/TkNetReplicatedEntityComponentData.cs +++ b/libMBIN/Source/NMS/Toolkit/TkNetReplicatedEntityComponentData.cs @@ -2,7 +2,7 @@ namespace libMBIN.NMS.Toolkit { - [NMS(GUID = 0xFDCAA1CBD53D2A3E, NameHash = 0x466B710A)] + [NMS(GUID = 0x2D19B9401FCC6B9B, NameHash = 0x466B710A)] public class TkNetReplicatedEntityComponentData : NMSTemplate { [NMS(Index = 0)] @@ -30,7 +30,9 @@ public enum SpawnTypeEnum : uint { /* 0x14 */ public SpawnTypeEnum SpawnType; [NMS(Index = 3)] /* 0x18 */ public bool IgnoreComponents; + [NMS(Index = 5)] + /* 0x19 */ public bool MarkModelAsMasterModel; [NMS(Index = 4)] - /* 0x19 */ public bool ReplicateToShipmates; + /* 0x1A */ public bool ReplicateToShipmates; } } diff --git a/libMBIN/Source/Version.cs b/libMBIN/Source/Version.cs index 530d89855..9b7992795 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.33.0.2"; + internal const string VERSION_STRING = "6.34.0.1"; /// Shorthand for AssemblyVersion.Major public static int Major => AssemblyVersion.Major;