From 137a2d3a04bb0381d1923b1a9530d1cdd9872e88 Mon Sep 17 00:00:00 2001 From: in1tiate <32779090+in1tiate@users.noreply.github.com> Date: Mon, 20 May 2024 12:46:35 -0500 Subject: [PATCH] speedline thing --- src/courtroom.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/courtroom.cpp b/src/courtroom.cpp index 15fc62e..b5f62f5 100644 --- a/src/courtroom.cpp +++ b/src/courtroom.cpp @@ -3453,7 +3453,7 @@ void Courtroom::handle_ic_speaking() // Obtain character information for our character QString filename; // I still hate this hardcoding. If we're on pos pro, hlp and wit, use prosecution_speedlines. Otherwise, defense_speedlines. - if (side == "pro" || side == "hlp" || side == "wit") + if (side.startsWith("pro") || side == "hlp" || side.startsWith("wit")) { filename = "prosecution_speedlines"; }