Merge pull request #3907 from oddiz/patch-1

GANG: Removed a console.log
This commit is contained in:
hydroflame
2022-07-16 17:23:19 -04:00
committed by GitHub

View File

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