fix add statement off by one (#357)

This commit is contained in:
in1tiate 2024-05-17 05:54:06 -05:00 committed by GitHub
parent 67eb25a988
commit 2844615fdc
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -44,7 +44,7 @@ void AOClient::addStatement(QStringList packet)
}
else if (area->testimonyRecording() == AreaData::TestimonyRecording::ADD) {
packet[14] = "1";
area->addStatement(c_statement, packet);
area->addStatement(c_statement + 1, packet);
area->setTestimonyRecording(AreaData::TestimonyRecording::PLAYBACK);
}
else {