3
0
Fork 0
mirror of https://github.com/ZeppelinBot/Zeppelin.git synced 2025-05-11 20:55:01 +00:00

Re-enable LogServer for now

This commit is contained in:
Miikka Virtanen 2019-07-04 13:35:01 +03:00
parent 91363dbc97
commit 2179a78c9f
2 changed files with 94 additions and 1 deletions

View file

@ -22,6 +22,7 @@ import { BotControlPlugin } from "./BotControl";
import { UsernameSaver } from "./UsernameSaver";
import { CustomEventsPlugin } from "./CustomEvents";
import { GuildInfoSaverPlugin } from "./GuildInfoSaver";
import { LogServerPlugin } from "./LogServer";
/**
* Plugins available to be loaded for individual guilds
@ -65,4 +66,4 @@ export const basePlugins = [
/**
* Available global plugins (can't be loaded per-guild, only globally)
*/
export const availableGlobalPlugins = [BotControlPlugin, UsernameSaver];
export const availableGlobalPlugins = [BotControlPlugin, UsernameSaver, LogServerPlugin];