From 115ecdf0d385e5a442e819cf5246802ee8ddacf2 Mon Sep 17 00:00:00 2001 From: Valentin Kaelin Date: Fri, 8 Nov 2019 17:32:49 +0100 Subject: [PATCH] fix: forgot assists in kda calculation --- client/src/components/Summoner/SummonerStats.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/components/Summoner/SummonerStats.vue b/client/src/components/Summoner/SummonerStats.vue index 328da1a..feb22fe 100644 --- a/client/src/components/Summoner/SummonerStats.vue +++ b/client/src/components/Summoner/SummonerStats.vue @@ -57,7 +57,7 @@
  • kda
    -
    {{ globalStats.kills / globalStats.deaths|round }}
    +
    {{ (globalStats.kills + globalStats.assists) / globalStats.deaths|round }}