fix erroneous position update and remove restriction (#396)
- Don't set the client's position for no reason - Don't stop positions other than wit from recording testimony
This commit is contained in:
parent
f332defa52
commit
b1b06cc9f2
@ -394,9 +394,7 @@ AOPacket *PacketMS::validateIcPacket(AOClient &client) const
|
|||||||
client_name = client.character(); // fallback in case of empty ooc name
|
client_name = client.character(); // fallback in case of empty ooc name
|
||||||
}
|
}
|
||||||
if (area->testimonyRecording() == AreaData::TestimonyRecording::RECORDING || area->testimonyRecording() == AreaData::TestimonyRecording::ADD) {
|
if (area->testimonyRecording() == AreaData::TestimonyRecording::RECORDING || area->testimonyRecording() == AreaData::TestimonyRecording::ADD) {
|
||||||
if (!l_args[5].startsWith("wit"))
|
// -1 indicates title
|
||||||
return PacketFactory::createPacket("MS", l_args);
|
|
||||||
|
|
||||||
if (area->statement() == -1) {
|
if (area->statement() == -1) {
|
||||||
l_args[4] = "~~-- " + l_args[4] + " --";
|
l_args[4] = "~~-- " + l_args[4] + " --";
|
||||||
l_args[14] = "3";
|
l_args[14] = "3";
|
||||||
@ -445,7 +443,6 @@ AOPacket *PacketMS::validateIcPacket(AOClient &client) const
|
|||||||
|
|
||||||
QRegularExpressionMatch match = isTestimonyJumpCommand(client.decodeMessage(l_args[4])); // Get rid of that pesky encoding, then do the fun part
|
QRegularExpressionMatch match = isTestimonyJumpCommand(client.decodeMessage(l_args[4])); // Get rid of that pesky encoding, then do the fun part
|
||||||
if (match.hasMatch()) {
|
if (match.hasMatch()) {
|
||||||
client.m_pos = "wit";
|
|
||||||
int jump_idx = match.captured("int").toInt();
|
int jump_idx = match.captured("int").toInt();
|
||||||
auto l_statement = area->jumpToStatement(jump_idx);
|
auto l_statement = area->jumpToStatement(jump_idx);
|
||||||
l_args = l_statement.first;
|
l_args = l_statement.first;
|
||||||
|
Loading…
Reference in New Issue
Block a user