fixed a crash related to the BN packet

This commit is contained in:
David Skoland 2017-01-30 14:23:32 +01:00
parent 922506261f
commit 9d48599a90
2 changed files with 5 additions and 2 deletions

View File

@ -485,11 +485,13 @@ void Courtroom::handle_chatmessage(QStringList *p_contents)
ui_ic_chatlog->verticalScrollBar()->setValue(ui_ic_chatlog->verticalScrollBar()->minimum());
}
//T0D0: play objection gif->preanimation if there is any
//D3BUG START
ui_vp_background->set_image("defenseempty.png");
//ui_vp_background->set_image("defenseempty.png");
//D3BUG END
}

View File

@ -284,7 +284,8 @@ void AOApplication::server_packet_received(AOPacket *p_packet)
if (f_contents.size() < 1)
return;
w_courtroom->set_background(f_contents.at(0));
if (courtroom_constructed)
w_courtroom->set_background(f_contents.at(0));
}
//server accepting char request(CC) packet
else if (header == "PV")