Skip to content

Commit 0a08f82

Browse files
committed
Update for steam build id 20798665
1 parent 1e90a8c commit 0a08f82

File tree

3 files changed

+8
-7
lines changed

3 files changed

+8
-7
lines changed

Tools/auto_extract/extractor.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,6 @@
154154
# Lookup for classes with extra attributes.
155155
EXTRA_ATTRIBUTES = {
156156
'GcPlayerClothComponentData': ', Alignment = 0x10',
157-
'GcClothComponentData': ', Alignment = 0x10',
158157
'GcMultiColouriseComponentData': ', Alignment = 0x10',
159158
'GcScanEffectComponentData': ', Alignment = 0x10',
160159
'GcSpringAttachmentComponentData': ', Alignment = 0x10',

libMBIN/Source/NMS/GameComponents/GcCostSalvageShip.cs

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,16 @@
22

33
namespace libMBIN.NMS.GameComponents
44
{
5-
[NMS(GUID = 0xBF5F4F7BD7D0DA49, NameHash = 0x94BADD03)]
5+
[NMS(GUID = 0x2AEC296158B31BA3, NameHash = 0x94BADD03)]
66
public class GcCostSalvageShip : NMSTemplate
77
{
8+
[NMS(Index = 2, Size = 0xB, EnumType = typeof(GcSpaceshipClasses.ShipClassEnum))]
9+
/* 0x000 */ public NMSString0x20A[] CustomErrorMessageOSD;
810
[NMS(Index = 1, Size = 0xB, EnumType = typeof(GcSpaceshipClasses.ShipClassEnum))]
9-
/* 0x000 */ public NMSString0x20A[] ShipClassStringOverride;
10-
[NMS(Index = 2)]
11-
/* 0x160 */ public bool CannotAffordIfStringOverrideIsNull;
11+
/* 0x160 */ public NMSString0x20A[] ShipClassStringOverride;
12+
[NMS(Index = 3)]
13+
/* 0x2C0 */ public bool CannotAffordIfStringOverrideIsNull;
1214
[NMS(Index = 0)]
13-
/* 0x161 */ public bool WillGiveShipParts;
15+
/* 0x2C1 */ public bool WillGiveShipParts;
1416
}
1517
}

libMBIN/Source/Version.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ public static class Version {
2525
// the Prerelease version should be reset to 1
2626
// When the Release version is incremented:
2727
// the Prerelease version should be reset to 0
28-
internal const string VERSION_STRING = "6.17.0.1";
28+
internal const string VERSION_STRING = "6.17.0.2";
2929

3030
/// <summary>Shorthand for AssemblyVersion.Major</summary>
3131
public static int Major => AssemblyVersion.Major;

0 commit comments

Comments
 (0)