diff options
author | Elias Fleckenstein <eliasfleckenstein@web.de> | 2022-03-06 13:12:33 +0100 |
---|---|---|
committer | Elias Fleckenstein <eliasfleckenstein@web.de> | 2022-03-06 13:12:33 +0100 |
commit | 766e86b48346b2a91ac99ad17ad7a52595f7e6b2 (patch) | |
tree | 553ac152229b200673192596e554c01e6021c62f /nsfw.js | |
parent | 21e9cb6053001b03d3c730b97a6b989c01ba4c5a (diff) | |
download | furrybot-discord-766e86b48346b2a91ac99ad17ad7a52595f7e6b2.tar.xz |
Fix asciigenitals getPing usage
Diffstat (limited to 'nsfw.js')
-rw-r--r-- | nsfw.js | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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'`) |