diff options
Diffstat (limited to 'discord/webhook')
| -rw-r--r-- | discord/webhook/async_.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/discord/webhook/async_.py b/discord/webhook/async_.py index c5e93408..58bbbd21 100644 --- a/discord/webhook/async_.py +++ b/discord/webhook/async_.py @@ -597,6 +597,9 @@ class _WebhookState: return self._parent.store_user(data) return BaseUser(state=self, data=data) + def create_user(self, data): + return BaseUser(state=self, data=data) + @property def http(self): if self._parent is not None: |