WIP: receipt feature implementation

This commit is contained in:
2026-01-19 08:47:21 +01:00
parent 333f3d94bf
commit e5933aacc2
5 changed files with 142 additions and 8 deletions

View File

@@ -36,14 +36,14 @@ const rest = new REST().setToken(token);
// and deploy your commands!
(async () => {
try {
console.log(`[GUILD] Started refreshing ${guildCommands.length} application (/) commands.`);
console.log(`[GUILD] Started refreshing ${guildCommands.length} Guild (/) commands.`);
let data = await rest.put(
Routes.applicationGuildCommands(clientId, guildId),
{ body: guildCommands },
);
console.log(`[GUILD] Successfully reloaded ${data.length} application (/) commands.`);
console.log(`[GUILD] Successfully reloaded ${data.length} Guild (/) commands.`);
console.log(`[GLOBAL] Started refreshing ${globalCommands.length} application (/) commands.`);