Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updated file for 14550997 #605

Merged
merged 1 commit into from
May 31, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 6 additions & 4 deletions libMBIN/Source/NMS/GameComponents/GcRewardSpecificFrigate.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

namespace libMBIN.NMS.GameComponents
{
[NMS(GUID = 0x429F34BDADDF6D5A, NameHash = 0xB9F3B9FAC994498B)]
[NMS(GUID = 0x11141B8B97D35154, NameHash = 0xB9F3B9FAC994498B)]
public class GcRewardSpecificFrigate : NMSTemplate
{
[NMS(Index = 4)]
Expand All @@ -19,11 +19,13 @@ public class GcRewardSpecificFrigate : NMSTemplate
/* 0x44 */ public GcFrigateClass FrigateClass;
[NMS(Index = 7)]
/* 0x48 */ public bool FormatAsSeasonal;
[NMS(Index = 10)]
/* 0x49 */ public bool IgnoreAndMoveOnIfCannotRecruit;
[NMS(Index = 5)]
/* 0x49 */ public bool IsGift;
/* 0x4A */ public bool IsGift;
[NMS(Index = 6)]
/* 0x4A */ public bool IsRewardFrigate;
/* 0x4B */ public bool IsRewardFrigate;
[NMS(Index = 8)]
/* 0x4B */ public bool UseSeedFromCommunicator;
/* 0x4C */ public bool UseSeedFromCommunicator;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

namespace libMBIN.NMS.GameComponents
{
[NMS(GUID = 0x93ABFD2741E6332, NameHash = 0x710A6CDD7B84F22B)]
[NMS(GUID = 0x347F554C2047D2F4, NameHash = 0x710A6CDD7B84F22B)]
public class GcRewardUpgradeShipClass : NMSTemplate
{
[NMS(Index = 1)]
Expand All @@ -11,5 +11,7 @@ public class GcRewardUpgradeShipClass : NMSTemplate
/* 0x4 */ public bool MatchClassToCommunityTier;
[NMS(Index = 0)]
/* 0x5 */ public bool Silent;
[NMS(Index = 3)]
/* 0x6 */ public bool SilentlyMoveOnAtMaxClass;
}
}
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
namespace libMBIN.NMS.GameComponents
{
[NMS(GUID = 0xE45A5E954D4083C1, NameHash = 0x8EE3EC0791BD99B7)]
[NMS(GUID = 0xA00103A8E94C9556, NameHash = 0x8EE3EC0791BD99B7)]
public class GcRewardUpgradeWeaponClass : NMSTemplate
{
[NMS(Index = 1)]
/* 0x0 */ public bool MatchClassToCommunityTier;
[NMS(Index = 0)]
/* 0x1 */ public bool Silent;
[NMS(Index = 2)]
/* 0x2 */ public bool SilentlyMoveOnAtMaxClass;
}
}
2 changes: 1 addition & 1 deletion libMBIN/Source/Version.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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 = "4.70.0.2";
internal const string VERSION_STRING = "4.71.0.1";

/// <summary>Shorthand for AssemblyVersion.Major</summary>
public static int Major => AssemblyVersion.Major;
Expand Down