From 2169614e896e694a0e5519b98fc9de68b61e95d4 Mon Sep 17 00:00:00 2001 From: loicbersier Date: Tue, 25 Aug 2020 03:14:32 +0200 Subject: [PATCH] Forgot to update the hideip thing Signed-off-by: loicbersier --- commands/utility/download.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/utility/download.js b/commands/utility/download.js index d7f16580..1316e323 100644 --- a/commands/utility/download.js +++ b/commands/utility/download.js @@ -57,7 +57,7 @@ class DownloadCommand extends Command { let i = 0; proxy.forEach(proxy => { i++; - proxys.push(`[${i}] ${ proxy.hidden ? '[IP HIDDEN]' : proxy.ip.substring(0, proxy.ip.length - 5)} - ${proxy.country}`); + proxys.push(`[${i}] ${ proxy.hideip ? '[IP HIDDEN]' : proxy.ip.substring(0, proxy.ip.length - 5)} - ${proxy.country}`); }); const Embed = this.client.util.embed()