Fixed message size
This commit is contained in:
parent
05dc97bda8
commit
b3a70dde59
1 changed files with 8 additions and 8 deletions
16
index.js
16
index.js
|
@ -77,14 +77,14 @@ async function doHelp(tweet, msg) {
|
||||||
try {
|
try {
|
||||||
let post = await T.post("statuses/update", {
|
let post = await T.post("statuses/update", {
|
||||||
status:
|
status:
|
||||||
`@${tweet.user.screen_name} `+
|
`@${tweet.user.screen_name} `+
|
||||||
`All commands should be called with ${config.get("bot.handle")} + subcommand \n` +
|
`Call commands with: ${config.get("bot.handle")} + \n` +
|
||||||
"help - Shows this command. \n" +
|
"help - Shows this command.\n" +
|
||||||
"balance - Get your balance. \n" +
|
"balance - Get your balance.\n" +
|
||||||
"deposit - Get address for your deposits. \n" +
|
"deposit - Get address for your deposits.\n" +
|
||||||
"withdraw ADDRESS AMOUNT - Withdraw AMOUNT credits to ADDRESS. \n" +
|
"withdraw ADDRESS AMOUNT - Withdraw AMOUNT credits to ADDRESS.\n" +
|
||||||
"tip USER AMOUNT - Tip USER AMOUNT.\n"+
|
"tip USER AMOUNT - Tip USER AMOUNT.\n"+
|
||||||
"terms - Sends you the TOS.",
|
"terms - Sends the TOS.",
|
||||||
in_reply_to_status_id: tweet.id_str
|
in_reply_to_status_id: tweet.id_str
|
||||||
});
|
});
|
||||||
logger.info(
|
logger.info(
|
||||||
|
|
Loading…
Reference in a new issue