From d547f2650aa61aa2f1d63a57bf2230ba55636c8b Mon Sep 17 00:00:00 2001 From: BlipRanger <1860540+BlipRanger@users.noreply.github.com> Date: Tue, 18 Jul 2023 18:51:11 -0400 Subject: [PATCH] Count swipes and msgs seperately. --- public/scripts/stats.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/scripts/stats.js b/public/scripts/stats.js index 3d058fbba..2d723a29c 100644 --- a/public/scripts/stats.js +++ b/public/scripts/stats.js @@ -84,7 +84,7 @@ function createHtml(statsType, stats) { html += createStatBlock("Total User Messages", stats.user_msg_count); html += createStatBlock( "Total Character Messages", - stats.non_user_msg_count + stats.non_user_msg_count - stats.total_swipe_count ); html += createStatBlock("Total User Words", stats.user_word_count); html += createStatBlock("Total Character Words", stats.non_user_word_count);