3
0
Fork 0
mirror of https://github.com/ZeppelinBot/Zeppelin.git synced 2025-05-11 04:45:02 +00:00

Combine Knub's type helpers with Zeppelin's, continue Utility plugin port

This commit is contained in:
Dragory 2020-07-06 01:51:48 +03:00
parent b338351e37
commit 9f059f33af
No known key found for this signature in database
GPG key ID: 5F387BA66DF8AAC1
13 changed files with 533 additions and 13 deletions

View file

@ -11,18 +11,34 @@ import { LevelCmd } from "./commands/LevelCmd";
import { SearchCmd } from "./commands/SearchCmd";
import { BanSearchCmd } from "./commands/BanSearchCmd";
import { InfoCmd } from "./commands/InfoCmd";
import { NicknameResetCmd } from "./commands/NicknameResetCmd";
import { NicknameCmd } from "./commands/NicknameCmd";
import { PingCmd } from "./commands/PingCmd";
import { SourceCmd } from "./commands/SourceCmd";
import { ContextCmd } from "./commands/ContextCmd";
import { VcmoveCmd } from "./commands/VcmoveCmd";
import { HelpCmd } from "./commands/HelpCmd";
import { AboutCmd } from "./commands/AboutCmd";
export const UtilityPlugin = zeppelinPlugin<UtilityPluginType>()("utility", {
configSchema: ConfigSchema,
// prettier-ignore
commands: [
SearchCmd,
BanSearchCmd,
InfoCmd,
LevelCmd,
RolesCmd,
SearchCmd,
ServerCmd,
NicknameResetCmd,
NicknameCmd,
PingCmd,
SourceCmd,
ContextCmd,
VcmoveCmd,
HelpCmd,
AboutCmd,
],
onLoad({ state, guild }) {