Browse Source

log

push-params
Evan Feenstra 4 years ago
parent
commit
bec5b0f722
  1. 5
      api/bots/mother.ts
  2. 5
      dist/api/bots/mother.js
  3. 2
      dist/api/bots/mother.js.map

5
api/bots/mother.ts

@ -14,7 +14,7 @@ const constants = require(path.join(__dirname, '../../config/constants.json'))
const config = require(path.join(__dirname, '../../config/app.json'))[env]
const builtinBots = [
'welcome', 'btc', 'loopout'
'welcome', 'loopout'
]
const builtInBotMsgTypes = {
@ -26,7 +26,7 @@ const builtInBotMsgTypes = {
const builtInBotNames = {
welcome:'WelcomeBot',
btc:'BitcoinBot',
// btc:'BitcoinBot',
loopout:'LoopBot',
}
@ -111,6 +111,7 @@ export function init() {
.setDescription('No bots found')
return message.channel.send({ embed })
}
console.log("==? SEARHED BOTS", bots)
const embed3 = new Sphinx.MessageEmbed()
.setAuthor('MotherBot')
.setTitle('Bots:')

5
dist/api/bots/mother.js

@ -23,7 +23,7 @@ const env = process.env.NODE_ENV || 'development';
const constants = require(path.join(__dirname, '../../config/constants.json'));
const config = require(path.join(__dirname, '../../config/app.json'))[env];
const builtinBots = [
'welcome', 'btc', 'loopout'
'welcome', 'loopout'
];
const builtInBotMsgTypes = {
'welcome': [
@ -33,7 +33,7 @@ const builtInBotMsgTypes = {
};
const builtInBotNames = {
welcome: 'WelcomeBot',
btc: 'BitcoinBot',
// btc:'BitcoinBot',
loopout: 'LoopBot',
};
function init() {
@ -119,6 +119,7 @@ function init() {
.setDescription('No bots found');
return message.channel.send({ embed });
}
console.log("==? SEARHED BOTS", bots);
const embed3 = new Sphinx.MessageEmbed()
.setAuthor('MotherBot')
.setTitle('Bots:')

2
dist/api/bots/mother.js.map

File diff suppressed because one or more lines are too long
Loading…
Cancel
Save