From 132f520dceee48f0d1b38701c454afeda8db859b Mon Sep 17 00:00:00 2001 From: schneefux Date: Thu, 20 Apr 2017 15:10:43 +0200 Subject: buff vst by 1 --- responses.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'responses.js') diff --git a/responses.js b/responses.js index a0c93e6..52c7309 100644 --- a/responses.js +++ b/responses.js @@ -87,7 +87,7 @@ async function formatMatchDetail(match) { for(let participant of roster.participants) { const hero = await api.mapActor(participant.actor); teamstr += ` -\`${hero}\`, [${participant.player.name}](${ROOTURL}player/${participant.player.name}${track("match-detail")}) \`T${Math.floor(participant.skill_tier/3)}\` | \`${participant.stats.kills}/${participant.stats.deaths}/${participant.stats.assists}\`, \`${Math.floor(participant.stats.farm)}\`, Score ${emojifyScore(participant.stats.impact_score)} \`${Math.floor(100 * participant.stats.impact_score)}%\``; +\`${hero}\`, [${participant.player.name}](${ROOTURL}player/${participant.player.name}${track("match-detail")}) \`T${Math.floor(participant.skill_tier/3+1)}\` | \`${participant.stats.kills}/${participant.stats.deaths}/${participant.stats.assists}\`, \`${Math.floor(participant.stats.farm)}\`, Score ${emojifyScore(participant.stats.impact_score)} \`${Math.floor(100 * participant.stats.impact_score)}%\``; } strings.push([rosterstr, teamstr]); } -- cgit v1.3.1