Housing: Fix DB2 struct field ordering for ExteriorComponent entries

This commit is contained in:
luis
2026-03-02 19:54:12 -03:00
parent 9ba9dfd718
commit 2d28465873
+3 -3
View File
@@ -5433,9 +5433,9 @@ struct WarbandSceneSourceInfoEntry
struct ExteriorComponentEntry
{
uint32 ID;
LocalizedString Name;
std::array<float, 3> Position;
uint32 ID;
uint8 Type;
int32 FileDataID;
int32 ConditionID;
@@ -5450,16 +5450,16 @@ struct ExteriorComponentEntry
struct ExteriorComponentExitPointEntry
{
uint32 ID;
std::array<float, 3> Position;
std::array<float, 3> Rotation;
uint32 ID;
uint32 ExteriorComponentID; // ParentIndexField - must be unsigned
};
struct ExteriorComponentGroupEntry
{
uint32 ID;
std::array<float, 3> Position;
uint32 ID;
uint32 ExteriorComponentID; // ParentIndexField - must be unsigned
};