From 321eed09a06113e52b29c98d3678cc8841789b05 Mon Sep 17 00:00:00 2001 From: Osmium Sorcerer Date: Sun, 22 Mar 2026 17:45:49 +0000 Subject: Remove clientside /pos command behavior We have SP and JD to precisely handle positions and judge buttons. --- src/courtroom.cpp | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/src/courtroom.cpp b/src/courtroom.cpp index df3872c..e7e377d 100644 --- a/src/courtroom.cpp +++ b/src/courtroom.cpp @@ -4967,20 +4967,6 @@ void Courtroom::on_ooc_return_pressed() { QString ooc_message = ui_ooc_chat_message->text(); - // We ignore it when the server is compatible with 2.8 - // Using an arbitrary 2.8 feature flag certainly won't cause issues someday. - if (ooc_message.startsWith("/pos") && ao_app->m_serverdata.get_feature(server::BASE_FEATURE_SET::EFFECTS)) - { - if (ooc_message == "/pos jud") - { - show_judge_controls(true); - } - else - { - show_judge_controls(false); - } - } - if (ooc_message.startsWith("/load_case")) { QStringList command = ooc_message.split(" ", Qt::SkipEmptyParts); -- cgit