From dab83f27d3c8db76ab992c92b8d247fa4fa3e21d Mon Sep 17 00:00:00 2001 From: Martin Michelsen Date: Thu, 3 Nov 2022 22:14:00 -0700 Subject: [PATCH] fix notes on 6xB5x3F command --- src/CommandFormats.hh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/CommandFormats.hh b/src/CommandFormats.hh index 1e025b30..8f8e110c 100644 --- a/src/CommandFormats.hh +++ b/src/CommandFormats.hh @@ -5320,14 +5320,14 @@ struct G_MakeCardAuctionBid_GC_Ep3_6xB5x3E { // 6xB5x3F: Open menu -struct G_Unknown_GC_Ep3_6xB5x3F { +struct G_OpenMenu_GC_Ep3_6xB5x3F { G_CardBattleCommandHeader_GC_Ep3_6xB3_6xB4_6xB5 header; // Menu type should be one of these values: - // 01/02 = battle prep menu - // 11 = card auction counter menu (join or cancel) - // 12 = go directly to card auction state (client sends EF command) + // 0x01/0x02 = battle prep menu + // 0x11 = card auction counter menu (join or cancel) + // 0x12 = go directly to card auction state (client sends EF command) // Other values will likely crash the client. - int8_t unknown_a1; // Must be in the range [-1, 0x14] + int8_t menu_type; // Must be in the range [-1, 0x14] uint8_t client_id; parray unused1; le_uint32_t unknown_a3;