From c93eac267af3730380b14712035cc68876594524 Mon Sep 17 00:00:00 2001 From: Miika Alonen Date: Tue, 12 Dec 2023 01:50:54 +0200 Subject: [PATCH] Change way ziffers patterns are re-evaluated --- src/API.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/API.ts b/src/API.ts index 633ef95..2815a27 100644 --- a/src/API.ts +++ b/src/API.ts @@ -725,7 +725,7 @@ export class UserAPI { if (this.app.api.patternCache.has(key)) { player = this.app.api.patternCache.get(key) as Player; - if (typeof input === "string" && player.input !== input) { + if (typeof input === "string" && player.input !== input && player.atTheBeginning()) { player = undefined; } }