From ed3050b1ac4835b715726169f05794517443b805 Mon Sep 17 00:00:00 2001 From: YULIUS KURNIAWAN KRISTIANTO Date: Tue, 6 Nov 2018 03:09:47 +0700 Subject: [PATCH] Update tipbot.js bring back comma --- bot/modules/tipbot.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bot/modules/tipbot.js b/bot/modules/tipbot.js index ea9aa36..9a61c38 100644 --- a/bot/modules/tipbot.js +++ b/bot/modules/tipbot.js @@ -33,7 +33,7 @@ exports.tip = { usage: '', description: 'Tip a given user with an amount of LBC or perform wallet specific operations.', process: async function(bot, msg, suffix) { - let tipper = msg.author.id.replace('!' ''), + let tipper = msg.author.id.replace('!',''), words = msg.content .trim() .split(' ') @@ -66,7 +66,7 @@ exports.multitip = { usage: '', description: 'Tip multiple users simultaneously for the same amount of LBC each.', process: async function(bot, msg, suffix) { - let tipper = msg.author.id.replace('!' ''), + let tipper = msg.author.id.replace('!',''), words = msg.content .trim() .split(' ') @@ -91,7 +91,7 @@ exports.roletip = { usage: '', description: 'Tip all users in a specified role an amount of LBC.', process: async function(bot, msg, suffix) { - let tipper = msg.author.id.replace('!' ''), + let tipper = msg.author.id.replace('!',''), words = msg.content .trim() .split(' ')