From 4b78c2fbdfcdd9dcc794e4b0c17cfb6d88a1006b Mon Sep 17 00:00:00 2001 From: mat <27899617+mat-1@users.noreply.github.com> Date: Sat, 1 May 2021 19:04:52 -0500 Subject: Show minions that haven't been unlocked in response (#20) * add minions that haven't been unlocked yet to response, and slightly optimize constants * remove most console.logs with console.debugs * mock constants --- build/hypixel.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'build/hypixel.js') diff --git a/build/hypixel.js b/build/hypixel.js index 9e9007e..d77e1ae 100644 --- a/build/hypixel.js +++ b/build/hypixel.js @@ -69,7 +69,7 @@ async function fetchUser({ user, uuid, username }, included = ['player']) { if (!uuid) { // the user doesn't exist. if (_1.debug) - console.log('error:', user, 'doesnt exist'); + console.debug('error:', user, 'doesnt exist'); return null; } const includePlayers = included.includes('player'); -- cgit