Fixing check for field that was removed

This commit is contained in:
Dan 2026-01-09 13:27:32 +00:00
parent 7b74e5e997
commit c82cfa1d23
5 changed files with 5 additions and 8 deletions

View file

@ -63,7 +63,7 @@ export class SpinTextEffect extends ButtonEffect {
const suffix = this.textLineNumber === 1 ? "" : "2";
const text = controlValues[`button-text${suffix}`] || "";
if (!text || !controlValues[`text${suffix}-enabled`]) return;
if (!text || text.trim() === '') return;
if (!animState) return;
const speed = controlValues[`spin-speed${suffix}`] || 1;