diff --git a/steam/util/events.py b/steam/util/events.py index c0faacf..257eaa0 100644 --- a/steam/util/events.py +++ b/steam/util/events.py @@ -27,6 +27,10 @@ class EventEmitter(object): else: gevent.spawn(callback, *args) + # every event is also emitted as None + if event is not None: + self.emit(None, event, *args) + def remove_listener(self, event, callback): """ Removes a callback for the specified event