fix/command types

This commit is contained in:
SowinskiBraeden committed 2025-09-30 12:13:12 -07:00
1 parent 77645c75b1
commit 2889ff978a
10 files changed
+91 -91

No files matched your search

+3 -3
View File
@@ -17,7 +17,7 @@ module.exports = {
name: "balance",
description: "View your bank balance",
value: "balance",
type: ApplicationCommandOptionType.SubCommand,
type: ApplicationCommandOptionType.Subcommand,
options: [{
name: "user",
description: "User to view ballance",
@@ -30,7 +30,7 @@ module.exports = {
name: "transfer",
description: "Transfer money to another user",
value: "transfer",
type: ApplicationCommandOptionType.SubCommand,
type: ApplicationCommandOptionType.Subcommand,
options: [
{
name: "user",
@@ -43,7 +43,7 @@ module.exports = {
name: "amount",
description: "The amount to transfer",
value: "amount",
type: ApplicationCommandOptionType.Float,
type: ApplicationCommandOptionType.Number,
min_value: 0.01,
required: true,
},