Rename kickstream command to kick

This commit is contained in:
2026-03-31 09:55:27 +00:00
parent ce578ab377
commit ec8e2f0a7b
2 changed files with 7 additions and 7 deletions

View File

@@ -31,7 +31,7 @@ pixelpoebel/
│ │ ├── ping.ts │ │ ├── ping.ts
│ │ ├── help.ts │ │ ├── help.ts
│ │ ├── twitch.ts │ │ ├── twitch.ts
│ │ ├── kickstream.ts # Kick streaming │ │ ├── kick.ts # Kick streaming
│ │ ├── trigger.ts # Auto-responses │ │ ├── trigger.ts # Auto-responses
│ │ ├── timer.ts # Reminders │ │ ├── timer.ts # Reminders
│ │ ├── welcome.ts # Welcome/Goodbye messages │ │ ├── welcome.ts # Welcome/Goodbye messages
@@ -475,7 +475,7 @@ docker-compose up -d --build
| `/ping` | | Public | | `/ping` | | Public |
| `/help` | | Public | | `/help` | | Public |
| `/twitch` | online, add, remove, list, listall, help | Public/Admin | | `/twitch` | online, add, remove, list, listall, help | Public/Admin |
| `/kickstream` | online, add, remove, list, help | Public/Admin | | `/kick` | online, add, remove, list, help | Public/Admin |
| `/trigger` | add, remove, list, help | Public/Admin | | `/trigger` | add, remove, list, help | Public/Admin |
| `/timer` | add, remove, list, listall, help | Public/Admin | | `/timer` | add, remove, list, listall, help | Public/Admin |
| `/welcome` | setchannel, add, remove, list, help | Admin | | `/welcome` | setchannel, add, remove, list, help | Admin |

View File

@@ -4,7 +4,7 @@ import { KickManager } from '../../structures/KickManager.js';
const command: Command = { const command: Command = {
data: new SlashCommandBuilder() data: new SlashCommandBuilder()
.setName('kickstream') .setName('kick')
.setDescription('Kick-Streamer Benachrichtigungen verwalten.') .setDescription('Kick-Streamer Benachrichtigungen verwalten.')
.addSubcommand(subcommand => .addSubcommand(subcommand =>
subcommand subcommand
@@ -59,10 +59,10 @@ const command: Command = {
.setColor(0x53fc18) .setColor(0x53fc18)
.setDescription('Benachrichtigungen bei Kick-Streams.') .setDescription('Benachrichtigungen bei Kick-Streams.')
.addFields( .addFields(
{ name: '`/kickstream add <channel> <discord_channel> [nachricht]`', value: 'Fügt einen Streamer hinzu (Mod).', inline: false }, { name: '`/kick add <channel> <discord_channel> [nachricht]`', value: 'Fügt einen Streamer hinzu (Mod).', inline: false },
{ name: '`/kickstream remove <channel>`', value: 'Entfernt einen Streamer (Mod).', inline: false }, { name: '`/kick remove <channel>`', value: 'Entfernt einen Streamer (Mod).', inline: false },
{ name: '`/kickstream list`', value: 'Zeigt alle überwachten Streamer.', inline: false }, { name: '`/kick list`', value: 'Zeigt alle überwachten Streamer.', inline: false },
{ name: '`/kickstream online <channel>`', value: 'Prüft ob ein Streamer live ist.', inline: false }, { name: '`/kick online <channel>`', value: 'Prüft ob ein Streamer live ist.', inline: false },
{ name: 'Hinweis', value: 'Benötigt KICK_CLIENT_ID und KICK_CLIENT_SECRET in der .env', inline: false } { name: 'Hinweis', value: 'Benötigt KICK_CLIENT_ID und KICK_CLIENT_SECRET in der .env', inline: false }
) )
.setTimestamp(); .setTimestamp();