Allow delete without examination
This commit is contained in:
parent
a62e0e82a2
commit
529a14bf1b
@ -1391,10 +1391,10 @@ void AOClient::cmdDeleteStatement(int argc, QStringList argv)
|
|||||||
{
|
{
|
||||||
AreaData* area = server->areas[current_area];
|
AreaData* area = server->areas[current_area];
|
||||||
int c_statement = area->statement;
|
int c_statement = area->statement;
|
||||||
if (area->test_rec == AreaData::TestimonyRecording::STOPPED) {
|
if (area->testimony.size() - 1 = 0) {
|
||||||
sendServerMessage("Unable to delete statement. There is currently no examination running.");
|
sendServerMessage("Unable to delete statement. No statements saved in this area.");
|
||||||
}
|
}
|
||||||
if (c_statement > 0 && area->test_rec == AreaData::TestimonyRecording::PLAYBACK) {
|
if (c_statement > 0 && area->testimony.size() > 2) {
|
||||||
area->testimony.remove(c_statement);
|
area->testimony.remove(c_statement);
|
||||||
sendServerMessage("The statement with id " + QString::number(c_statement) + " has been deleted from the testimony.");
|
sendServerMessage("The statement with id " + QString::number(c_statement) + " has been deleted from the testimony.");
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user