djs-selfbot-v13 3.7.3 → 3.7.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "djs-selfbot-v13",
|
|
3
|
-
"version": "3.7.
|
|
3
|
+
"version": "3.7.4",
|
|
4
4
|
"description": "An unofficial discord.js fork for creating selfbots",
|
|
5
5
|
"main": "./src/index.js",
|
|
6
6
|
"types": "./typings/index.d.ts",
|
|
@@ -55,6 +55,7 @@
|
|
|
55
55
|
"@discordjs/collection": "^2.1.1",
|
|
56
56
|
"@sapphire/async-queue": "^1.5.5",
|
|
57
57
|
"@sapphire/shapeshift": "^4.0.0",
|
|
58
|
+
"debug": "^4.4.3",
|
|
58
59
|
"discord-api-types": "^0.38.15",
|
|
59
60
|
"fetch-cookie": "^3.1.0",
|
|
60
61
|
"find-process": "^2.0.0",
|
|
@@ -76,7 +76,7 @@ class QuestManager extends BaseManager {
|
|
|
76
76
|
* @returns {Promise<Object>} Quest data
|
|
77
77
|
*/
|
|
78
78
|
async get() {
|
|
79
|
-
const data = await this.client.api.
|
|
79
|
+
const data = await this.client.api.quests('@me').get();
|
|
80
80
|
|
|
81
81
|
// Cache quests
|
|
82
82
|
if (data.quests) {
|