Browse Source

Add MessageReactionRemoveAll, etc fixes

- Fix passing plugins on command line
- Fix shard count in AutoSharder
feature/docs
Andrei 8 years ago
parent
commit
b85376be32
  1. 5
      disco/cli.py
  2. 15
      disco/gateway/events.py
  3. 2
      disco/gateway/sharder.py

5
disco/cli.py

@ -69,7 +69,10 @@ def disco_main(run=False):
bot = None
if args.run_bot or hasattr(config, 'bot'):
bot_config = BotConfig(config.bot) if hasattr(config, 'bot') else BotConfig()
bot_config.plugins += args.plugin
if not hasattr(bot_config, 'plugins'):
bot_config.plugins = args.plugin
else:
bot_config.plugins += args.plugin
bot = Bot(client, bot_config)
if run:

15
disco/gateway/events.py

@ -633,3 +633,18 @@ class MessageReactionRemove(GatewayEvent):
@property
def guild(self):
return self.channel.guild
class MessageReactionRemoveAll(GatewayEvent):
"""
Sent when all reactions are removed from a message.
Attributes
----------
channel_id : snowflake
The channel ID the message is in.
message_id : snowflake
The ID of the message for which the reactions where removed from.
"""
channel_id = Field(snowflake)
message_id = Field(snowflake)

2
disco/gateway/sharder.py

@ -63,8 +63,6 @@ class AutoSharder(object):
self.client = APIClient(config.token)
self.shards = {}
self.config.shard_count = self.client.gateway_bot_get()['shards']
if self.config.shard_count > 1:
self.config.shard_count = 10
def run_on(self, sid, raw):
func = load_function(raw)

Loading…
Cancel
Save