Browse Source

Fix bug with mentions not working.

pull/8/head v0.6.3
Rapptz 10 years ago
parent
commit
8c1aa2ccc5
  1. 4
      discord/__init__.py
  2. 2
      discord/client.py

4
discord/__init__.py

@ -15,8 +15,8 @@ __title__ = 'discord'
__author__ = 'Rapptz'
__license__ = 'MIT'
__copyright__ = 'Copyright 2015 Rapptz'
__version__ = '0.6.2'
__build__ = 0x006020
__version__ = '0.6.3'
__build__ = 0x006030
from .client import Client
from .user import User

2
discord/client.py

@ -212,7 +212,7 @@ class Client(object):
if isinstance(mentions, list):
return [user.id for user in mentions]
elif mentions == True:
return re.findall(r'@<(\d+)>', content)
return re.findall(r'<@(\d+)>', content)
else:
return []

Loading…
Cancel
Save