fix add statement off by one (#357)
This commit is contained in:
parent
67eb25a988
commit
2844615fdc
@ -44,7 +44,7 @@ void AOClient::addStatement(QStringList packet)
|
|||||||
}
|
}
|
||||||
else if (area->testimonyRecording() == AreaData::TestimonyRecording::ADD) {
|
else if (area->testimonyRecording() == AreaData::TestimonyRecording::ADD) {
|
||||||
packet[14] = "1";
|
packet[14] = "1";
|
||||||
area->addStatement(c_statement, packet);
|
area->addStatement(c_statement + 1, packet);
|
||||||
area->setTestimonyRecording(AreaData::TestimonyRecording::PLAYBACK);
|
area->setTestimonyRecording(AreaData::TestimonyRecording::PLAYBACK);
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
|
Loading…
Reference in New Issue
Block a user