aboutsummaryrefslogtreecommitdiff
path: root/src/commands
diff options
context:
space:
mode:
Diffstat (limited to 'src/commands')
-rw-r--r--src/commands/disconnect.ts2
-rw-r--r--src/commands/stop.ts2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/commands/disconnect.ts b/src/commands/disconnect.ts
index d9f025a..0081cc1 100644
--- a/src/commands/disconnect.ts
+++ b/src/commands/disconnect.ts
@@ -28,6 +28,6 @@ export default class implements Command {
player.disconnect();
- await interaction.reply('u betcha');
+ await interaction.reply('u betcha, disconnected');
}
}
diff --git a/src/commands/stop.ts b/src/commands/stop.ts
index 71b33db..818fda6 100644
--- a/src/commands/stop.ts
+++ b/src/commands/stop.ts
@@ -32,6 +32,6 @@ export default class implements Command {
}
player.stop();
- await interaction.reply('u betcha');
+ await interaction.reply('u betcha, stopped');
}
}