From 2f1a93a700fa37e9dcda502fe2bb3c6c1090fa44 Mon Sep 17 00:00:00 2001 From: kurokobo <2920259+kurokobo@users.noreply.github.com> Date: Thu, 20 Jul 2023 06:57:50 +0000 Subject: [PATCH] feat: add unmute sub-command for /debug --- data/commands.tsx | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/data/commands.tsx b/data/commands.tsx index 073c7fe..7e1241f 100644 --- a/data/commands.tsx +++ b/data/commands.tsx @@ -261,6 +261,19 @@ export const commands: Command[] = [ description: ["Unmute all players"], example: "debug unmute-all", }, + { + command: "unmute", + description: ["Unmute myself, or a specific user"], + example: "debug unmute user:@Yoshirahh", + arguments: [ + { + name: "user", + level: "optional", + description: ["User who should be unmuted/undeafened"], + type: "Discord @User", + }, + ], + }, { command: "view game-state", description: ["Print out the current game state"],