From 6cde53fd0a6604b48d760524db4cca272d3b0247 Mon Sep 17 00:00:00 2001 From: Mauricio Date: Wed, 5 Aug 2020 21:19:25 -0400 Subject: [PATCH] fix unable to send msg with pair checkbox on --- gameview.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/gameview.py b/gameview.py index 9d59416..2d8e29f 100644 --- a/gameview.py +++ b/gameview.py @@ -1488,9 +1488,11 @@ class gui(QtGui.QWidget): if "cccc_ic_support" in self.features: msg += self.showname+"#" # custom showname if self.paircheckbox.isChecked(): - msg += str(self.pairdropdown.currentIndex())+"#" # pair charID + msg += str(self.pairdropdown.currentIndex()) # pair charID if "effects" in self.features: msg += "^%d#" % self.pair_order.currentIndex() # pair ordering + else: + msg += "#" else: msg += "-1#"