From f8ea7c61bfdb816735dfc8caee5e33840500fc0d Mon Sep 17 00:00:00 2001 From: Kayne Ruse Date: Thu, 20 Jun 2019 02:29:11 +1000 Subject: [PATCH] Added spying deaths to diagnostics --- public/content/task_list.md | 1 + server/spying.js | 1 + 2 files changed, 2 insertions(+) diff --git a/public/content/task_list.md b/public/content/task_list.md index aabaf47..6f1f523 100644 --- a/public/content/task_list.md +++ b/public/content/task_list.md @@ -71,6 +71,7 @@ Event Ideas * Capture the flag. * Bosses / raids (drop exclusive badges / items). +* Tug of War (endian wars). Badge Ideas --- diff --git a/server/spying.js b/server/spying.js index 6014ee0..30c3126 100644 --- a/server/spying.js +++ b/server/spying.js @@ -231,6 +231,7 @@ const spyGameplayLogic = (connection, pendingSpying) => { if (err) throw err; log('Spy failed', pendingSpying.attackerId, pendingSpying.defenderId, pendingSpying.attackingUnits, totalEyes); + logDiagnostics(connection, 'death', pendingSpying.attackingUnits); }); }); });