From dca87e07ccc80ca139ab68c1370f25b86003d9f8 Mon Sep 17 00:00:00 2001 From: Rossen <2720787+rossengeorgiev@users.noreply.github.com> Date: Wed, 10 Feb 2021 10:25:19 +0000 Subject: [PATCH] do not emit chat_message event when its local_echo Fix for a bug reported in #13 --- steam/client/builtins/user.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/steam/client/builtins/user.py b/steam/client/builtins/user.py index 60fd13a..dbffe50 100644 --- a/steam/client/builtins/user.py +++ b/steam/client/builtins/user.py @@ -38,7 +38,7 @@ class User(object): def __handle_message_incoming2(self, msg): # new chat - if msg.body.chat_entry_type == EChatEntryType.ChatMsg: + if msg.body.chat_entry_type == EChatEntryType.ChatMsg and not msg.body.local_echo: user = self.get_user(msg.body.steamid_friend) self.emit("chat_message", user, msg.body.message)