From c00c7e480814cf441bef75c35b615dd4775f0850 Mon Sep 17 00:00:00 2001 From: Fen Dweller Date: Sat, 17 Mar 2018 21:25:59 -0400 Subject: [PATCH] Added header to stats --- game.js | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/game.js b/game.js index cc237ed..8ae34d5 100644 --- a/game.js +++ b/game.js @@ -3342,6 +3342,13 @@ function actionTab(e) { function showStats() { let lines = []; + + if (macro.brutality > 0) { + lines.push("Total kills:"); + } else { + lines.push("Total victims:"); + } + let total = 0; for (var key in victims) { if (victims.hasOwnProperty(key)) {