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; } }