removed print() statements.. debugging...

This commit is contained in:
2022-08-29 00:05:36 +02:00
parent 872e05f622
commit 5c158cf8a8
@@ -412,13 +412,10 @@ class RaidbotController(BaseModule):
continue continue
alt = None alt = None
if not raider.in_raid: if not raider.in_raid:
print(raider)
for x in self.raid.raiders: for x in self.raid.raiders:
x: Raider
if not x.is_active: if not x.is_active:
continue continue
if raider.char_id in [y.char_id for y in x.alts]: if raider.char_id in [y.char_id for y in x.alts]:
print(raider)
alt = f"<yellow>ALT</yellow> [{self.character_service.get_char_name(x.active_id)}]" alt = f"<yellow>ALT</yellow> [{self.character_service.get_char_name(x.active_id)}]"
entry = f"{self.util.get_prof_icon(raider.profession)} " \ entry = f"{self.util.get_prof_icon(raider.profession)} " \
f"{self.text.zfill(raider.level, 220)}/<green>{self.text.zfill(raider.ai_level, 30)}</green> " \ f"{self.text.zfill(raider.level, 220)}/<green>{self.text.zfill(raider.ai_level, 30)}</green> " \