Merge pull request #1543 from danielyxie/dev

fix Incite Violence chaos increase
This commit is contained in:
hydroflame 2021-10-17 19:44:52 -04:00 committed by GitHub
commit 9383ae7be6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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.`); this.log(`Incited violence in the synthoid communities.`);
} }
const city = this.cities[this.city]; const city = this.cities[this.city];
city.chaos *= (city.chaos + 100) * 2; city.chaos = (city.chaos + 100) * 2;
this.startAction(player, this.action); this.startAction(player, this.action);
break; break;
} }