aboutsummaryrefslogtreecommitdiff
path: root/nsfw.js
diff options
context:
space:
mode:
authorElias Fleckenstein <eliasfleckenstein@web.de>2022-03-06 13:12:33 +0100
committerElias Fleckenstein <eliasfleckenstein@web.de>2022-03-06 13:12:33 +0100
commit766e86b48346b2a91ac99ad17ad7a52595f7e6b2 (patch)
tree553ac152229b200673192596e554c01e6021c62f /nsfw.js
parent21e9cb6053001b03d3c730b97a6b989c01ba4c5a (diff)
downloadfurrybot-discord-766e86b48346b2a91ac99ad17ad7a52595f7e6b2.tar.xz
Fix asciigenitals getPing usage
Diffstat (limited to 'nsfw.js')
-rw-r--r--nsfw.js4
1 files 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: "[<player>]",
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: "[<player>]",
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'`)