From 1a90cc18a2cb7c81bbb2badbba0b370abc28011e Mon Sep 17 00:00:00 2001 From: Fen Dweller Date: Mon, 31 Dec 2018 08:10:44 -0600 Subject: [PATCH] Fixed wrong name for inserting the "Victims:" text in stats --- game.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/game.js b/game.js index 9e351e5..533df6a 100644 --- a/game.js +++ b/game.js @@ -4853,7 +4853,7 @@ function showStats() { if (macro.brutality > 0) { lines.splice(0, 0, "Kills:"); } else { - lines.insert(0, 0, "Victims:"); + lines.splice(0, 0, "Victims:"); } lines.push("Total: " + total);