Rename expedition packet fields

This commit is contained in:
hg
2020-10-17 22:39:38 -04:00
parent 022f82291a
commit b85feb5461
14 changed files with 49 additions and 49 deletions
+3 -3
View File
@@ -4208,14 +4208,14 @@ struct ExpeditionInfo_Struct
struct ExpeditionMemberEntry_Struct
{
/*000*/ char name[1]; // variable length, null terminated, max 0x40 (64)
/*000*/ uint8 status; // 0: unknown 1: Online, 2: Offline, 3: In Dynamic Zone, 4: Link Dead
/*000*/ char name[1]; // variable length, null terminated, max 0x40 (64)
/*000*/ uint8 expedition_status; // 0: unknown 1: Online, 2: Offline, 3: In Dynamic Zone, 4: Link Dead
};
struct ExpeditionMemberList_Struct
{
/*000*/ uint32 client_id;
/*004*/ uint32 count; // number of players in window
/*004*/ uint32 member_count; // number of players in window
/*008*/ ExpeditionMemberEntry_Struct members[0]; // variable length
};