From 766e86b48346b2a91ac99ad17ad7a52595f7e6b2 Mon Sep 17 00:00:00 2001 From: Elias Fleckenstein Date: Sun, 6 Mar 2022 13:12:33 +0100 Subject: [PATCH] Fix asciigenitals getPing usage --- nsfw.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nsfw.js b/nsfw.js index 33f4d10..52bb43c 100644 --- a/nsfw.js +++ b/nsfw.js @@ -12,7 +12,7 @@ module.exports = { params: "[]", help: "Display the size of your own or another users's dick", func: (msg, [targetPing]) => { - const target = targetPing ? common.getPing(targetPing) : msg.author.id + const target = targetPing ? common.getPing(msg, targetPing, true) : msg.author.id if (target) msg.reply(`${asciiDick(target)} ← <@!${target}>'s Dick'`) @@ -22,7 +22,7 @@ module.exports = { params: "[]", help: "Display the size of your own or another users's boobs", func: (msg, [targetPing]) => { - const target = targetPing ? common.getPing(targetPing) : msg.author.id + const target = targetPing ? common.getPing(msg, targetPing, true) : msg.author.id if (target) msg.reply(`${asciiBoob(target)} ← <@!${target}>'s Boobs'`) -- 2.44.0