From e6c8951dfffee87dd6af07fe1b6f70e143bb243a Mon Sep 17 00:00:00 2001 From: gor_down Date: Thu, 20 Feb 2025 18:51:42 -0300 Subject: [PATCH] current character select fix --- charselect.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/charselect.py b/charselect.py index e37496c..554596c 100644 --- a/charselect.py +++ b/charselect.py @@ -132,7 +132,7 @@ class charselect(QtGui.QWidget): self.buttons[ind].setPixmap(QtGui.QPixmap(filename)) def onCharClicked(self, ind): - if self.parent.charname.lower() == self.charlist[ind][0].lower(): + if self.parent.charname.lower() == self.charlist[ind+self.page*self.max_chars_on_page][0].lower(): self.hide() return self.parent.tcp.send("CC#0#"+str(ind+(self.page*self.max_chars_on_page))+"#ur mom gay#%")