fix Incite Violence chaos increase

This commit is contained in:
Olivier Gagnon 2021-10-17 19:44:43 -04:00
parent 1b22f28bd8
commit cfa10ab206
3 changed files with 3 additions and 3 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

@ -1514,7 +1514,7 @@ export class Bladeburner implements IBladeburner {
this.log(`Incited violence in the synthoid communities.`);
}
const city = this.cities[this.city];
city.chaos *= (city.chaos + 100) * 2;
city.chaos = (city.chaos + 100) * 2;
this.startAction(player, this.action);
break;
}