Skip to content
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
1 change: 0 additions & 1 deletion Tools/auto_extract/extractor.py
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,6 @@
# Lookup for classes with extra attributes.
EXTRA_ATTRIBUTES = {
'GcPlayerClothComponentData': ', Alignment = 0x10',
'GcClothComponentData': ', Alignment = 0x10',
'GcMultiColouriseComponentData': ', Alignment = 0x10',
'GcScanEffectComponentData': ', Alignment = 0x10',
'GcSpringAttachmentComponentData': ', Alignment = 0x10',
Expand Down
12 changes: 7 additions & 5 deletions libMBIN/Source/NMS/GameComponents/GcCostSalvageShip.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,16 @@

namespace libMBIN.NMS.GameComponents
{
[NMS(GUID = 0xBF5F4F7BD7D0DA49, NameHash = 0x94BADD03)]
[NMS(GUID = 0x2AEC296158B31BA3, NameHash = 0x94BADD03)]
public class GcCostSalvageShip : NMSTemplate
{
[NMS(Index = 2, Size = 0xB, EnumType = typeof(GcSpaceshipClasses.ShipClassEnum))]
/* 0x000 */ public NMSString0x20A[] CustomErrorMessageOSD;
[NMS(Index = 1, Size = 0xB, EnumType = typeof(GcSpaceshipClasses.ShipClassEnum))]
/* 0x000 */ public NMSString0x20A[] ShipClassStringOverride;
[NMS(Index = 2)]
/* 0x160 */ public bool CannotAffordIfStringOverrideIsNull;
/* 0x160 */ public NMSString0x20A[] ShipClassStringOverride;
[NMS(Index = 3)]
/* 0x2C0 */ public bool CannotAffordIfStringOverrideIsNull;
[NMS(Index = 0)]
/* 0x161 */ public bool WillGiveShipParts;
/* 0x2C1 */ public bool WillGiveShipParts;
}
}
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 = "6.17.0.1";
internal const string VERSION_STRING = "6.17.0.2";

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