Register ping command
parent
6b62582f44
commit
c84eaae0c0
|
@ -27,6 +27,7 @@ const version = require('./modules/version');
|
||||||
const newthread = require('./modules/newthread');
|
const newthread = require('./modules/newthread');
|
||||||
const idModule = require('./modules/id');
|
const idModule = require('./modules/id');
|
||||||
const alert = require('./modules/alert');
|
const alert = require('./modules/alert');
|
||||||
|
const ping = require('./modules/ping');
|
||||||
|
|
||||||
const {ACCIDENTAL_THREAD_MESSAGES} = require('./data/constants');
|
const {ACCIDENTAL_THREAD_MESSAGES} = require('./data/constants');
|
||||||
|
|
||||||
|
@ -259,7 +260,8 @@ function initPlugins() {
|
||||||
version,
|
version,
|
||||||
newthread,
|
newthread,
|
||||||
idModule,
|
idModule,
|
||||||
alert
|
alert,
|
||||||
|
ping
|
||||||
];
|
];
|
||||||
|
|
||||||
const plugins = [...builtInPlugins];
|
const plugins = [...builtInPlugins];
|
||||||
|
|
Loading…
Reference in New Issue