add special alias to docs, remove accidental import, add fake modme command

This commit is contained in:
2025-09-14 02:30:32 +02:00
parent 6040a47cf6
commit f23fd5d5f0
3 changed files with 17 additions and 2 deletions

14
src/commands/fakemodme.ts Normal file
View File

@@ -0,0 +1,14 @@
import { Command, sendMessage } from "commands";
import { timeout } from "lib/timeout";
export default new Command({
name: 'fakemodme',
aliases: ['modme'],
usertype: 'chatter',
execution: async (_msg, user) => {
await Promise.all([
timeout(user, "NO MODME", 60),
sendMessage(`NO MODME COMMAND!!! UltraMad`)
]);
}
});

View File

@@ -11,7 +11,6 @@ import { isInvuln, setTemporaryInvuln } from "lib/invuln";
import { getUserRecord } from "db/dbUser";
import { createCheerRecord } from "db/dbCheers";
import handleAnivMessage from "lib/handleAnivMessage";
import { spec } from "node:test/reporters";
eventSub.onChannelChatMessage(streamerId, streamerId, parseChatMessage);