From ebeb847bc71cc01bd606f6ec21be046ff7386432 Mon Sep 17 00:00:00 2001 From: Joe DiPrima Date: Thu, 29 Dec 2022 12:22:28 -0600 Subject: [PATCH] 12/29/2022 --- qmutants.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/qmutants.py b/qmutants.py index b845fb1..8eb9b48 100644 --- a/qmutants.py +++ b/qmutants.py @@ -1115,7 +1115,7 @@ class mutant(QWidget): self.index_area(result) #deposit riblets - if self.riblets > self.riblet_thresh and self.path_step == 0 and self.wander: + if self.riblets > self.riblet_thresh and self.path_step == 0 and self.wander and not self.in_combat: self.send_cmd("stat\r\n") self.path_step = 1 @@ -1173,7 +1173,7 @@ class mutant(QWidget): # self.in_combat = False #Sell the loot - if (result.find("City Trading Centre") != -1 or result.find("Satan Inc. Trade Centre") != -1) and self.path_step == 0: + if (result.find("City Trading Centre") != -1 or result.find("Satan Inc. Trade Centre") != -1) and self.path_step == 0 and not self.in_combat: if len(self.sell_list) > 0: self.sell_items()