Change way ziffers patterns are re-evaluated

This commit is contained in:
2023-12-12 01:50:54 +02:00
parent ba973b028f
commit c93eac267a

View File

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