From 93aa573ed530f563f192129cded915f698dbda5c Mon Sep 17 00:00:00 2001 From: alemidev Date: Sun, 12 Dec 2021 23:27:24 +0100 Subject: [PATCH] suppress error msgs --- treepuncher/treepuncher.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/treepuncher/treepuncher.py b/treepuncher/treepuncher.py index 4b2f51d..188ba69 100644 --- a/treepuncher/treepuncher.py +++ b/treepuncher/treepuncher.py @@ -260,8 +260,7 @@ class Treepuncher(MinecraftClient): for record in packet.data: uid = record['UUID'] if packet.action != 0 and uid not in self.tablist: - self._logger.error("Received update for untracked UUID : %s", uid) - return + continue # TODO this happens kinda often but doesn't seem to be an issue? if packet.action == 0: self.tablist[uid] = record elif packet.action == 1: