Skip to content

Commit b7cca18

Browse files
committed
make balance bold
1 parent 93528c9 commit b7cca18

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

bot/modules/dogeTipper.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ function doBalance(message, tipper) {
6767
.reply('Error getting Dogecoin (DOGE) balance.')
6868
.then(message => message.delete(10000));
6969
} else {
70-
message.reply('You have *' + balance + '* Dogecoin (DOGE)');
70+
message.reply('You have **' + balance + '** Dogecoin (DOGE)');
7171
}
7272
});
7373
}

bot/modules/lbryTipper.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ function doBalance(message, tipper) {
6767
.reply('Error getting LBRY Credit (LBC) balance.')
6868
.then(message => message.delete(10000));
6969
} else {
70-
message.reply('You have *' + balance + '* LBRY Credit (LBC)');
70+
message.reply('You have **' + balance + '** LBRY Credit (LBC)');
7171
}
7272
});
7373
}

bot/modules/rvnTipper.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ function doBalance(message, tipper) {
6767
.reply('Error getting Ravencoin (RVN) balance.')
6868
.then(message => message.delete(10000));
6969
} else {
70-
message.reply('You have *' + balance + '* Ravencoin (RVN)');
70+
message.reply('You have **' + balance + '** Ravencoin (RVN)');
7171
}
7272
});
7373
}

bot/modules/shiggsTipper.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ function doBalance(message, tipper) {
6161
if (err) {
6262
message.reply('Error getting Proton (PROTON) balance.').then(message => message.delete(10000));
6363
} else {
64-
message.reply('You have *' + balance + '* Proton (PROTON)');
64+
message.reply('You have **' + balance + '** Proton (PROTON)');
6565
}
6666
});
6767
}

bot/modules/ufoTipper.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ function doBalance(message, tipper) {
6161
if (err) {
6262
message.reply('Error getting Uniform Fiscal Object (UFO) balance.').then(message => message.delete(10000));
6363
} else {
64-
message.reply('You have *' + balance + '* Uniform Fiscal Object (UFO) coins');
64+
message.reply('You have **' + balance + '** Uniform Fiscal Object (UFO)');
6565
}
6666
});
6767
}

0 commit comments

Comments
 (0)