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.
This commit is contained in:
Kaan Şarkaya 2022-07-15 13:10:57 +03:00 committed by GitHub
parent e58456cd6b
commit 854bfcd29a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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));
}
}