public LlamaSocketCommandContext(DiscordSocketClient client, SocketUserMessage msg, ref FactSettings fSettings, ref List <string> llamaFacts, ref int numFacts) : base(client, msg) { _fSettings = fSettings; _llamaFacts = llamaFacts; _numFacts = numFacts; }
// CommandHandler constructor public CommandHandler(DiscordSocketClient client, CommandService commands, ref FactSettings fSettings, ref List <string> llamaFacts, ref int numFacts, ref List <string> llamaKeywords, ref List <string> llamaResponses) { _client = client; _commands = commands; _fSettings = fSettings; _llamaFacts = llamaFacts; _numFacts = numFacts; _llamaKeywords = llamaKeywords; _llamaResponses = llamaResponses; }