From 9be66df52b2672ac5dec54865c50604162c839b2 Mon Sep 17 00:00:00 2001 From: Salad Dais Date: Thu, 6 Jul 2023 21:48:46 +0000 Subject: [PATCH] Add AgentFOV to default message ignorelist It's incredibly spammy when the mesh upload preview is open --- hippolyzer/apps/proxy_gui.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/hippolyzer/apps/proxy_gui.py b/hippolyzer/apps/proxy_gui.py index d846eed..4a64c3a 100644 --- a/hippolyzer/apps/proxy_gui.py +++ b/hippolyzer/apps/proxy_gui.py @@ -231,7 +231,8 @@ class MessageLogWindow(QtWidgets.QMainWindow): "AvatarRenderInfo FirestormBridge ObjectAnimation ParcelDwellRequest ParcelAccessListRequest " \ "ParcelDwellReply ParcelAccessListReply AttachedSoundGainChange " \ "ParcelPropertiesRequest ParcelProperties GetObjectCost GetObjectPhysicsData ObjectImage " \ - "ViewerAsset GetTexture SetAlwaysRun GetDisplayNames MapImageService MapItemReply".split(" ") + "ViewerAsset GetTexture SetAlwaysRun GetDisplayNames MapImageService MapItemReply " \ + "AgentFOV".split(" ") DEFAULT_FILTER = f"!({' || '.join(ignored for ignored in DEFAULT_IGNORE)})" textRequest: QtWidgets.QTextEdit