maybe fix spectator team map loading

This commit is contained in:
Martin Michelsen
2023-09-17 12:02:58 -07:00
parent 49be421ff4
commit ef7f5fb798
2 changed files with 15 additions and 6 deletions
+6 -4
View File
@@ -6219,11 +6219,13 @@ struct G_Unknown_GC_Ep3_6xB3x3A_CAx3A {
G_CardServerDataCommandHeader header = {0xB3, sizeof(G_Unknown_GC_Ep3_6xB3x3A_CAx3A) / 4, 0, 0x3A, 0, 0, 0, 0, 0};
} __packed__;
// 6xB4x3B: Unknown
// TODO: Document this from Episode 3 client/server disassembly
// 6xB4x3B: Load current environment
// This command is used to send spectators in a spectator team to the main
// battle. A 6xB4x05 and 6xB6x41 command shouldhave been sent before this, to
// set the map state that should appear for the new spectator.
struct G_Unknown_GC_Ep3_6xB4x3B {
G_CardBattleCommandHeader header = {0xB4, sizeof(G_Unknown_GC_Ep3_6xB4x3B) / 4, 0, 0x3B, 0, 0, 0};
struct G_LoadCurrentEnvironment_GC_Ep3_6xB4x05 {
G_CardBattleCommandHeader header = {0xB4, sizeof(G_LoadCurrentEnvironment_GC_Ep3_6xB4x05) / 4, 0, 0x3B, 0, 0, 0};
parray<uint8_t, 4> unused;
} __packed__;