Count swipes and msgs seperately.

This commit is contained in:
BlipRanger
2023-07-18 18:51:11 -04:00
parent f83f71097a
commit d547f2650a

View File

@@ -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);