diff --git a/interactions/api/gateway/client.py b/interactions/api/gateway/client.py index e03a01c72..198ef76cd 100644 --- a/interactions/api/gateway/client.py +++ b/interactions/api/gateway/client.py @@ -390,7 +390,7 @@ def _dispatch_event(self, event: str, data: dict) -> None: log.warning( "Context is being created for the interaction, but no type is specified. Skipping..." ) - elif event != "TYPING_START": + elif event not in {"TYPING_START", "VOICE_STATE_UPDATE", "VOICE_SERVER_UPDATE"}: name: str = event.lower() try: @@ -501,7 +501,7 @@ def __modify_guild_cache(): self._dispatch.dispatch(f"on_{name}", obj) except AttributeError as error: - log.fatal(f"An error occured dispatching {name}: {error}") + log.fatal(f"An error occurred dispatching {name}: {error}") def __contextualize(self, data: dict) -> "_Context": """