From 74820dadee914558bdaf4192d885b7bf960436a5 Mon Sep 17 00:00:00 2001 From: in1tiate <32779090+in1tiate@users.noreply.github.com> Date: Sun, 17 Mar 2024 16:06:10 -0500 Subject: [PATCH] Allow testimony to be recorded from any "wit" position (#346) --- core/src/packet/packet_ms.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/core/src/packet/packet_ms.cpp b/core/src/packet/packet_ms.cpp index 6e63e73..d572c4e 100644 --- a/core/src/packet/packet_ms.cpp +++ b/core/src/packet/packet_ms.cpp @@ -368,7 +368,7 @@ AOPacket *PacketMS::validateIcPacket(AOClient &client) const client_name = client.m_current_char; // fallback in case of empty ooc name } if (area->testimonyRecording() == AreaData::TestimonyRecording::RECORDING || area->testimonyRecording() == AreaData::TestimonyRecording::ADD) { - if (l_args[5] != "wit") + if (!l_args[5].startsWith("wit")) return PacketFactory::createPacket("MS", l_args); if (area->statement() == -1) { @@ -385,10 +385,10 @@ AOPacket *PacketMS::validateIcPacket(AOClient &client) const AreaData::TestimonyProgress l_progress; if (l_args[4] == ">") { - client.m_pos = "wit"; auto l_statement = area->jumpToStatement(area->statement() + 1); l_args = l_statement.first; l_progress = l_statement.second; + client.m_pos = l_args[5]; client.sendServerMessageArea(client_name + " moved to the next statement."); @@ -397,10 +397,10 @@ AOPacket *PacketMS::validateIcPacket(AOClient &client) const } } if (l_args[4] == "<") { - client.m_pos = "wit"; auto l_statement = area->jumpToStatement(area->statement() - 1); l_args = l_statement.first; l_progress = l_statement.second; + client.m_pos = l_args[5]; client.sendServerMessageArea(client_name + " moved to the previous statement.");