fix: include 'Four Emperors' in character exclusion logic
All checks were successful
Build Docker Image / build (push) Successful in 1m12s

This commit is contained in:
2026-03-18 22:42:32 +01:00
parent 28bb8f526b
commit 29297d3773

View File

@@ -307,7 +307,7 @@ async function fetchAllCharacters(arcsList: Arc[]): Promise<Character[]> {
return; return;
} }
if (charName.toLowerCase().includes('family')) { if (charName.toLowerCase().includes('family') || charName === 'Four Emperors') {
return; return;
} }