set pos to "wit" before sending packet during testimony playback

This commit is contained in:
MangosArentLiterature 2021-04-13 18:40:05 -05:00
parent 1aa5361fe9
commit a62e0e82a2

View File

@ -645,16 +645,19 @@ AOPacket AOClient::validateIcPacket(AOPacket packet)
} }
else if (area->test_rec == AreaData::TestimonyRecording::PLAYBACK) { else if (area->test_rec == AreaData::TestimonyRecording::PLAYBACK) {
if (args[4] == ">") { if (args[4] == ">") {
pos = "wit";
area->statement = area->statement + 1; area->statement = area->statement + 1;
args = playTestimony(); args = playTestimony();
} }
if (args[4] == "<") { if (args[4] == "<") {
pos = "wit";
area->statement = area->statement - 1; area->statement = area->statement - 1;
args = playTestimony(); args = playTestimony();
} }
QRegularExpression jump("(?<arrow>>)(?<int>[0,1,2,3,4,5,6,7,8,9]+)"); QRegularExpression jump("(?<arrow>>)(?<int>[0,1,2,3,4,5,6,7,8,9]+)");
QRegularExpressionMatch match = jump.match(args[4]); QRegularExpressionMatch match = jump.match(args[4]);
if (match.hasMatch()) { if (match.hasMatch()) {
pos = "wit";
area->statement = match.captured("int").toInt(); area->statement = match.captured("int").toInt();
args= playTestimony(); args= playTestimony();
} }