From de0e56f37c2be7f15b078ba71db05f6dfb6c40fe Mon Sep 17 00:00:00 2001 From: Martin Michelsen Date: Thu, 19 Oct 2023 17:24:13 -0700 Subject: [PATCH] fix EXP multiplier command --- src/SendCommands.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/SendCommands.cc b/src/SendCommands.cc index f8a83379..1f5e84f6 100644 --- a/src/SendCommands.cc +++ b/src/SendCommands.cc @@ -2193,7 +2193,7 @@ void send_set_exp_multiplier(std::shared_ptr l) { if (!l->is_game()) { throw logic_error("6xDD can only be sent in games (not in lobbies)"); } - G_SetEXPMultiplier_BB_6xDD cmd = {{0xBF, sizeof(G_SetEXPMultiplier_BB_6xDD) / 4, l->exp_multiplier}}; + G_SetEXPMultiplier_BB_6xDD cmd = {{0xDD, sizeof(G_SetEXPMultiplier_BB_6xDD) / 4, l->exp_multiplier}}; send_command_t(l, 0x60, 0x00, cmd); }