From 8a29b053a071056b0d4c95c3e6b15c7f81c035af Mon Sep 17 00:00:00 2001 From: Niko Storni Date: Thu, 22 Feb 2018 02:35:45 +0100 Subject: [PATCH] missed 2 coins -> credits --- bot/modules/tipbot.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bot/modules/tipbot.js b/bot/modules/tipbot.js index 9882dcf..53357fb 100644 --- a/bot/modules/tipbot.js +++ b/bot/modules/tipbot.js @@ -241,7 +241,7 @@ function doMultiTip(message, tipper, words, helpmsg) { } let [userIDs, amount] = findUserIDsAndAmount(message, words, prv); if (amount == null) { - message.reply("I don't know how to tip that many coins...").then(message => message.delete(5000)); + message.reply("I don't know how to tip that many credits...").then(message => message.delete(5000)); return; } if (!userIDs) { @@ -266,7 +266,7 @@ function doRoleTip(message, tipper, words, helpmsg) { } let amount = getValidatedAmount(words[amountOffset]); if (amount == null) { - message.reply("I don't know how to tip that many coins...").then(message => message.delete(5000)); + message.reply("I don't know how to tip that many credits...").then(message => message.delete(5000)); return; } if (message.mentions.roles.first().id) {