We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent be3638d commit 96ca018Copy full SHA for 96ca018
index.js
@@ -1,5 +1,4 @@
1
const { Client } = require('guilded.js');
2
-const { Collection } = require('@discordjs/collection');
3
require('dotenv').config();
4
5
const client = new Client({
@@ -9,7 +8,7 @@ const client = new Client({
9
8
module.exports = client;
10
11
// Global Variables
12
-client.commands = new Collection();
+client.commands = new Map();
13
14
require('./handler')(client);
15
package.json
@@ -16,7 +16,6 @@
16
"author": "MixDevCode",
17
"license": "ISC",
18
"dependencies": {
19
- "@discordjs/collection": "^1.3.0",
20
"dotenv": "^16.0.3",
21
"glob": "^8.1.0",
22
"guilded.js": "^0.17.1"
0 commit comments