Add fallback to find spinner samples without a bank prefix

This commit is contained in:
Jamie Taylor 2024-03-09 01:10:28 +09:00
parent ad842b60f5
commit 27d78fdb08
No known key found for this signature in database
GPG Key ID: 2ACFA8B6370B8C8C
1 changed files with 2 additions and 0 deletions

View File

@ -80,6 +80,8 @@ public virtual IEnumerable<string> LookupNames
yield return $"Gameplay/{Bank}-{Name}{Suffix}";
yield return $"Gameplay/{Bank}-{Name}";
yield return $"Gameplay/{Name}";
}
}