better help command & capitalize descriptions
This commit is contained in:
8 files changed
+84
-69
No files matched your search
+6
-6
@@ -13,20 +13,20 @@ module.exports = {
|
||||
options: [
|
||||
{
|
||||
name: "add",
|
||||
description: "add money to user",
|
||||
description: "Add money to user",
|
||||
value: "add",
|
||||
type: 1,
|
||||
options: [
|
||||
{
|
||||
name: "user",
|
||||
description: "user to give money",
|
||||
description: "User to give money",
|
||||
value: "user",
|
||||
type: 6,
|
||||
required: true,
|
||||
},
|
||||
{
|
||||
name: "amount",
|
||||
description: "the amount to add to balance",
|
||||
description: "The amount to add to balance",
|
||||
value: 1000.00,
|
||||
type: 10,
|
||||
required: true,
|
||||
@@ -35,20 +35,20 @@ module.exports = {
|
||||
},
|
||||
{
|
||||
name: "remove",
|
||||
description: "remove money from user",
|
||||
description: "Remove money from user",
|
||||
value: "remove",
|
||||
type: 1,
|
||||
options: [
|
||||
{
|
||||
name: "user",
|
||||
description: "user to give money",
|
||||
description: "User to remove money from",
|
||||
value: "user",
|
||||
type: 6,
|
||||
required: true,
|
||||
},
|
||||
{
|
||||
name: "amount",
|
||||
description: "the amount to add to balance",
|
||||
description: "The amount to add to balance",
|
||||
value: 1000.00,
|
||||
type: 10,
|
||||
required: true,
|
||||
|
||||
Reference in new issue
Block a user