From 854bfcd29a0ea537672e72991b5a5b4b7949e16e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kaan=20=C5=9Earkaya?= Date: Fri, 15 Jul 2022 13:10:57 +0300 Subject: [PATCH] GANG: Removed console.log As a player who relies on debug console for script output, this console.log is pretty annoying since it prints frequently. --- src/Gang/Gang.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/Gang/Gang.ts b/src/Gang/Gang.ts index fc1747663..688235a08 100644 --- a/src/Gang/Gang.ts +++ b/src/Gang/Gang.ts @@ -252,7 +252,6 @@ export class Gang implements IGang { const total = Object.values(AllGangs) .map((g) => g.territory) .reduce((p, c) => p + c, 0); - console.log(total); Object.values(AllGangs).forEach((g) => (g.territory /= total)); } }