public InteractiveService(BaseSocketClient discord, InteractiveServiceConfig config = null) { Discord = discord; Discord.ReactionAdded += HandleReactionAsync; config ??= new InteractiveServiceConfig(); _defaultTimeout = config.DefaultTimeout; _callbacks = new Dictionary <ulong, IReactionCallback>(); }
public InteractiveService(DiscordShardedClient discord, InteractiveServiceConfig config = null) : this((BaseSocketClient)discord, config) { }