take care not to cast pair offset if somehow empty

This commit is contained in:
cidoku 2025-03-29 21:12:18 -03:00
parent 299cef6831
commit e7daec78c7

View File

@ -2970,8 +2970,9 @@ class GUI(QtGui.QWidget):
if "y_offset" in self.features: # AO 2.9 if "y_offset" in self.features: # AO 2.9
keyword = "<and>" if "<and>" in self.m_chatmessage[SELF_OFFSET] else "&" # i don't think it's hdf's fault but this is still ridiculous keyword = "<and>" if "<and>" in self.m_chatmessage[SELF_OFFSET] else "&" # i don't think it's hdf's fault but this is still ridiculous
hor_offset = int(self.m_chatmessage[SELF_OFFSET].split(keyword)[0]) offset = self.m_chatmessage[SELF_OFFSET].split(keyword)
vert_offset = int(self.m_chatmessage[SELF_OFFSET].split(keyword)[1]) if len(self.m_chatmessage[SELF_OFFSET].split(keyword)) > 1 else 0 hor_offset = int(offset[0]) if offset[0] else 0
vert_offset = int(offset[1]) if len(offset) > 1 else 0
else: else:
hor_offset = int(self.m_chatmessage[SELF_OFFSET]) hor_offset = int(self.m_chatmessage[SELF_OFFSET])