mirror of
https://github.com/Rapptz/discord.py.git
synced 2025-09-06 01:46:08 +00:00
animated key is never given to reaction_remove(_emoji)
This commit is contained in:
@ -88,8 +88,8 @@ class PartialEmoji(_EmojiTag):
|
||||
return o
|
||||
|
||||
@classmethod
|
||||
def with_state(cls, state, *, animated, name, id=None):
|
||||
self = cls(animated=animated, name=name, id=id)
|
||||
def with_state(cls, state, *, name, animated=False, id=None):
|
||||
self = cls(name=name, animated=animated, id=id)
|
||||
self._state = state
|
||||
return self
|
||||
|
||||
|
Reference in New Issue
Block a user