From 7a61669192516083c2ff49ffc4d677718da4cfb4 Mon Sep 17 00:00:00 2001 From: cidoku Date: Fri, 4 Apr 2025 16:38:17 -0300 Subject: [PATCH] dont expect emote to have deskmod --- gameview.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gameview.py b/gameview.py index 648278d..bb8dd59 100644 --- a/gameview.py +++ b/gameview.py @@ -2439,7 +2439,7 @@ class GUI(QtGui.QWidget): if "deskmod" in self.features: if emote[3] == '5': # Zoom forcibly hides the desk msg += "0#" - elif emote[7]: # Respect deskmod if found + elif len(emote) > 7 and emote[7]: # Respect deskmod if found msg += "%s#" % str(emote[7]) else: msg += "%d#" % self.deskbtn.isChecked()