diff options
author | 2019-02-06 22:11:47 +0100 | |
---|---|---|
committer | 2019-02-06 22:11:47 +0100 | |
commit | 6f96339080f6f82cb28515e9f1e93e56f59e207a (patch) | |
tree | d08fc99c11b84eda20559ad1f84719149106f287 | |
parent | Reimplement nominations on Django. (diff) |
Use proper snowflake in `on_member_update`.
-rw-r--r-- | bot/cogs/superstarify/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/cogs/superstarify/__init__.py b/bot/cogs/superstarify/__init__.py index 7f5b0d487..e14336b52 100644 --- a/bot/cogs/superstarify/__init__.py +++ b/bot/cogs/superstarify/__init__.py @@ -108,7 +108,7 @@ class Superstarify: params={ 'active': 'true', 'type': 'superstarify', - 'user__id': before.id + 'user__id': member.id } ) |