Added spying deaths to diagnostics

This commit is contained in:
2019-06-20 02:29:11 +10:00
parent 458dfd933e
commit f8ea7c61bf
2 changed files with 2 additions and 0 deletions
+1
View File
@@ -71,6 +71,7 @@ Event Ideas
* Capture the flag. * Capture the flag.
* Bosses / raids (drop exclusive badges / items). * Bosses / raids (drop exclusive badges / items).
* Tug of War (endian wars).
Badge Ideas Badge Ideas
--- ---
+1
View File
@@ -231,6 +231,7 @@ const spyGameplayLogic = (connection, pendingSpying) => {
if (err) throw err; if (err) throw err;
log('Spy failed', pendingSpying.attackerId, pendingSpying.defenderId, pendingSpying.attackingUnits, totalEyes); log('Spy failed', pendingSpying.attackerId, pendingSpying.defenderId, pendingSpying.attackingUnits, totalEyes);
logDiagnostics(connection, 'death', pendingSpying.attackingUnits);
}); });
}); });
}); });