修复对局中长按武将显示的bug

This commit is contained in:
lieren2023 2024-02-04 15:56:28 +08:00 committed by GitHub
parent 69fba5f19d
commit 43fa9f1528
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -2867,7 +2867,7 @@ export class Get extends Uninstantable {
return lib.characterInitFilter[node.name](tag) !== false; return lib.characterInitFilter[node.name](tag) !== false;
}); });
if(initFilters.length){ if(initFilters.length){
const str = initFilters.reduce((strx, stry) => strx + lib.InitFilter[stry] + '<br>').slice(0, -4); const str = initFilters.reduce((strx, stry) => strx + lib.InitFilter[stry] + '<br>', '').slice(0, -4);
uiintro.addText(str); uiintro.addText(str);
} }
} }