diff --git a/src/core/execution/FakeHumanExecution.ts b/src/core/execution/FakeHumanExecution.ts index ef9924265..eb7c7e93f 100644 --- a/src/core/execution/FakeHumanExecution.ts +++ b/src/core/execution/FakeHumanExecution.ts @@ -146,9 +146,9 @@ export class FakeHumanExecution implements Execution { private shouldAttack(other: Player): boolean { if (this.player.isAlliedWith(other)) { if (this.shouldDiscourageAttack(other)) { - return this.random.chance(100); + return this.random.chance(200); } - return this.random.chance(20); + return this.random.chance(50); } else { if (this.shouldDiscourageAttack(other)) { return this.random.chance(4);