From 3194e700332987e5cdd3e026bad930fc87dfd245 Mon Sep 17 00:00:00 2001 From: schneefux Date: Sun, 16 Apr 2017 22:56:41 +0200 Subject: small response style improvements --- responses.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'responses.js') diff --git a/responses.js b/responses.js index f12e643..5800650 100644 --- a/responses.js +++ b/responses.js @@ -173,7 +173,7 @@ let showMatch = module.exports.showMatch = async (msg, args) => { `); // TODO! return; } - let embed = vainsocialEmbed(`${match.game_mode}, \`${match.duration}\` minutes`, "match/" + id) + let embed = vainsocialEmbed(`${match.game_mode}, ${match.duration} minutes`, "match/" + id) .setTimestamp(new Date(match.created_at)) formatMatchDetail(match).forEach(([title, text]) => { embed.addField(title, text, true); @@ -218,8 +218,8 @@ let showMatches = module.exports.showMatches = async (msg, args) => { let embed = vainsocialEmbed(ign, "player/" + ign) .setDescription(` - Last ${matches_num} casual and ranked matches. - *${emoji.symbols["1234"]} or ${usg(msg, "vm " + ign + " number")} for details* +Last ${matches_num} casual and ranked matches. +*${emoji.symbols["1234"]} or ${usg(msg, "vm " + ign + " number")} for details* `); matches.forEach((match, idx) => embed.addField(`Match ${idx + 1}`, formatMatch(match))); -- cgit v1.3.1