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 --- src/hypixel.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/hypixel.ts') diff --git a/src/hypixel.ts b/src/hypixel.ts index 599a7e1..464f3dd 100644 --- a/src/hypixel.ts +++ b/src/hypixel.ts @@ -83,7 +83,7 @@ export async function fetchUser({ user, uuid, username }: UserAny, included: Inc } if (!uuid) { // the user doesn't exist. - if (debug) console.log('error:', user, 'doesnt exist') + if (debug) console.debug('error:', user, 'doesnt exist') return null } -- cgit