Skip to content

Commit 63603ba

Browse files
committed
fix incorrect message on /rq
1 parent 914c7f4 commit 63603ba

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

plugins/commands/src/ChatCommands.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ const commands: tm.Command[] = [
173173
aliases: config.rq.aliases,
174174
help: config.rq.help,
175175
callback: (info: tm.MessageInfo): void => {
176-
tm.sendMessage(tm.utils.strVar(config.bootme.text, { nickname: tm.utils.strip(info.nickname, true) }), config.rq.public ? undefined : info.login)
176+
tm.sendMessage(tm.utils.strVar(config.rq.text, { nickname: tm.utils.strip(info.nickname, true) }), config.rq.public ? undefined : info.login)
177177
tm.client.callNoRes('Kick', [{ string: info.login }, { string: config.rq.leaveText }])
178178
},
179179
privilege: config.rq.privilege

0 commit comments

Comments
 (0)