Skip to content

Commit

Permalink
make balance bold
Browse files Browse the repository at this point in the history
  • Loading branch information
MSFTserver committed Jun 1, 2018
1 parent 93528c9 commit b7cca18
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion bot/modules/dogeTipper.js
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ function doBalance(message, tipper) {
.reply('Error getting Dogecoin (DOGE) balance.')
.then(message => message.delete(10000));
} else {
message.reply('You have *' + balance + '* Dogecoin (DOGE)');
message.reply('You have **' + balance + '** Dogecoin (DOGE)');
}
});
}
Expand Down
2 changes: 1 addition & 1 deletion bot/modules/lbryTipper.js
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ function doBalance(message, tipper) {
.reply('Error getting LBRY Credit (LBC) balance.')
.then(message => message.delete(10000));
} else {
message.reply('You have *' + balance + '* LBRY Credit (LBC)');
message.reply('You have **' + balance + '** LBRY Credit (LBC)');
}
});
}
Expand Down
2 changes: 1 addition & 1 deletion bot/modules/rvnTipper.js
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ function doBalance(message, tipper) {
.reply('Error getting Ravencoin (RVN) balance.')
.then(message => message.delete(10000));
} else {
message.reply('You have *' + balance + '* Ravencoin (RVN)');
message.reply('You have **' + balance + '** Ravencoin (RVN)');
}
});
}
Expand Down
2 changes: 1 addition & 1 deletion bot/modules/shiggsTipper.js
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ function doBalance(message, tipper) {
if (err) {
message.reply('Error getting Proton (PROTON) balance.').then(message => message.delete(10000));
} else {
message.reply('You have *' + balance + '* Proton (PROTON)');
message.reply('You have **' + balance + '** Proton (PROTON)');
}
});
}
Expand Down
2 changes: 1 addition & 1 deletion bot/modules/ufoTipper.js
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ function doBalance(message, tipper) {
if (err) {
message.reply('Error getting Uniform Fiscal Object (UFO) balance.').then(message => message.delete(10000));
} else {
message.reply('You have *' + balance + '* Uniform Fiscal Object (UFO) coins');
message.reply('You have **' + balance + '** Uniform Fiscal Object (UFO)');
}
});
}
Expand Down

0 comments on commit b7cca18

Please sign in to comment.