Commit 139e7cbe authored by nanahira's avatar nanahira

fix

parent caccae06
...@@ -59,6 +59,9 @@ export class Show { ...@@ -59,6 +59,9 @@ export class Show {
(b) => !this.getPerformingBots().includes(b), (b) => !this.getPerformingBots().includes(b),
); );
for (const character of this.playbook.characters) { for (const character of this.playbook.characters) {
if (this.characterBotMap.has(character.id)) {
continue;
}
// exact // exact
let matchBot = availableBots.find( let matchBot = availableBots.find(
(b) => botNameMap.get(b.selfId.toString()) === character.name, (b) => botNameMap.get(b.selfId.toString()) === character.name,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment