diff options
| -rw-r--r-- | commands/buy.js | 2 | ||||
| -rw-r--r-- | items.json | 10 |
2 files changed, 9 insertions, 3 deletions
diff --git a/commands/buy.js b/commands/buy.js index 89422ad..f01a994 100644 --- a/commands/buy.js +++ b/commands/buy.js @@ -54,7 +54,7 @@ module.exports.run = async (client, message, args) => { for (var c in items) { if (categories[i] === items[c].type) { - tempDesc += `${items[c].name} - $${items[c].price} - ${items[c].desc}\n`; + tempDesc += `${items[c].name} - ${items[c].price}$ - ${items[c].desc}\n`; } @@ -3,12 +3,18 @@ "name": "Programmer Role", "price": "100", "type": "Roles", - "desc": "Buying this gives you the programmer role" + "desc": "Buying this gives you the programmer role." }, "AleeOS" : { "name": "AleeOS", "price": "400", "type": "OS", - "desc": "Buying this gives you AleeOS" + "desc": "Buying this gives you AleeOS." + }, + "theSlate" : { + "name": "theSlate", + "price": "400", + "type": "Tools", + "desc": "Buying this gives you theSlate." } }
\ No newline at end of file |
