From d7b1e66f88bd202e78e8451b94d688efe0393ee0 Mon Sep 17 00:00:00 2001 From: Martin Michelsen Date: Mon, 19 Jun 2023 22:52:35 -0700 Subject: [PATCH] fix error message --- src/ReceiveSubcommands.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ReceiveSubcommands.cc b/src/ReceiveSubcommands.cc index ca88014c..ae4b8d1d 100644 --- a/src/ReceiveSubcommands.cc +++ b/src/ReceiveSubcommands.cc @@ -163,11 +163,11 @@ static void on_sync_joining_player_item_state(shared_ptr, // I'm lazy and this should never happen (this command should always be // private to the joining player) if (!command_is_private(command)) { - throw runtime_error("6x70 sent via public command"); + throw runtime_error("6x6D sent via public command"); } // For non-V3 versions, just forward the data verbatim. For V3, we need to - // byteswap mags' data2 fields if exactly one of the sender and recipient are + // byteswap mags' data2 fields if exactly one of the sender and recipient is // PSO GC bool sender_is_gc = (c->version() == GameVersion::GC); if (!sender_is_gc && (c->version() != GameVersion::XB)) {