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

+2 -2
View File
@@ -17,7 +17,7 @@ module.exports = {
name: "x-coord",
description: "X Coordinate of the origin",
value: "x-coord",
type: ApplicationCommandOptionType.Float,
type: ApplicationCommandOptionType.Number,
min_value: 0.01,
required: true,
},
@@ -25,7 +25,7 @@ module.exports = {
name: "y-coord",
description: "Y Coordinate of the origin",
value: "y-coord",
type: ApplicationCommandOptionType.Float,
type: ApplicationCommandOptionType.Number,
min_value: 0.01,
required: true,
},