From 2a138ea0b6a0cd0269173ef230ddc8f8152308e8 Mon Sep 17 00:00:00 2001 From: Martin Michelsen Date: Sat, 4 Oct 2025 09:54:37 -0700 Subject: [PATCH] update some command notes --- src/CommandFormats.hh | 4 ++-- src/PlayerSubordinates.hh | 10 +++++----- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/src/CommandFormats.hh b/src/CommandFormats.hh index 0ee1fdbd..a5dea0fa 100644 --- a/src/CommandFormats.hh +++ b/src/CommandFormats.hh @@ -4052,7 +4052,7 @@ struct G_SendGuildCard_BB_6x06 { } __packed_ws__(G_SendGuildCard_BB_6x06, 0x10C); // 6x07: Symbol chat -// If UDP mode is enabled, this command is sent via UDP. +// If UDP is enabled, this command is sent via UDP. struct G_SymbolChat_6x07 { G_UnusedHeader header; @@ -7189,7 +7189,7 @@ check_struct_size(G_SetTournamentPlayerDecks_Ep3_6xB4x3D, 0x1CC); struct G_MakeCardAuctionBid_Ep3_6xB5x3E { G_CardBattleCommandHeader header = {0xB5, sizeof(G_MakeCardAuctionBid_Ep3_6xB5x3E) / 4, 0, 0x3E, 0, 0, 0}; uint8_t card_index = 0; // Index of card in EF command - uint8_t bid_value = 0; // 1-99 + uint8_t bid_value = 0; // 0-99 parray unused; } __packed_ws__(G_MakeCardAuctionBid_Ep3_6xB5x3E, 0x0C); diff --git a/src/PlayerSubordinates.hh b/src/PlayerSubordinates.hh index 38381d0d..72c03fc5 100644 --- a/src/PlayerSubordinates.hh +++ b/src/PlayerSubordinates.hh @@ -455,11 +455,11 @@ struct GuildCardGCT { /* 04:04 */ U32T guild_card_number = 0; /* 08:08 */ pstring name; /* 20:20 */ pstring description; - /* 8C:8C */ uint8_t present = 0; - /* 8D:8D */ uint8_t language = 0; - /* 8E:8E */ uint8_t section_id = 0; - /* 8F:8F */ uint8_t char_class = 0; - /* 90:90 */ + /* A0:8C */ uint8_t present = 0; + /* A1:8D */ uint8_t language = 0; + /* A2:8E */ uint8_t section_id = 0; + /* A3:8F */ uint8_t char_class = 0; + /* A4:90 */ operator GuildCardBB() const; } __attribute__((packed));