diff options
| author | in1tiate <32779090+in1tiate@users.noreply.github.com> | 2021-04-19 15:18:39 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-04-19 23:18:39 +0300 |
| commit | 8f0913d30e5ed1cd6a9ee5f7f8b82d68f7630395 (patch) | |
| tree | 438a278fa4231818273fe19203d49cc9b8cc0a31 | |
| parent | 9b8945f21ae08dc3fff59775d735573a60d9ec4f (diff) | |
euthanize morton (#522)
| -rw-r--r-- | src/courtroom.cpp | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/src/courtroom.cpp b/src/courtroom.cpp index 7ea39df6..8ffd2b5c 100644 --- a/src/courtroom.cpp +++ b/src/courtroom.cpp @@ -3891,14 +3891,8 @@ void Courtroom::case_called(QString msg, bool def, bool pro, bool jud, bool jur, { if (ui_casing->isChecked()) { ui_server_chatlog->append(msg); - if ((ao_app->get_casing_defence_enabled() && def) || - (ao_app->get_casing_prosecution_enabled() && pro) || - (ao_app->get_casing_judge_enabled() && jud) || - (ao_app->get_casing_juror_enabled() && jur) || - (ao_app->get_casing_steno_enabled() && steno)) { - modcall_player->play(ao_app->get_court_sfx("case_call")); - ao_app->alert(this); - } + modcall_player->play(ao_app->get_court_sfx("case_call")); + ao_app->alert(this); } } |
