From 23b13971c684810ec895402af5b5eea83259aa13 Mon Sep 17 00:00:00 2001 From: 1brucben <1benjbruce@gmail.com> Date: Tue, 6 May 2025 00:12:08 +0200 Subject: [PATCH] strengthen dogpile --- src/core/execution/FakeHumanExecution.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/execution/FakeHumanExecution.ts b/src/core/execution/FakeHumanExecution.ts index c331caa01..949397485 100644 --- a/src/core/execution/FakeHumanExecution.ts +++ b/src/core/execution/FakeHumanExecution.ts @@ -925,7 +925,7 @@ export class FakeHumanExecution implements Execution { // Dominant player condition if (top.numTilesOwned() > second.numTilesOwned() * 2) { if (this.dogpileTarget !== top) { - if (this.random.chance(25)) { + if (this.random.chance(20)) { this.dogpileTarget = top; } }