From 5c0fe5691525a9d0aa29be1b126802f041585622 Mon Sep 17 00:00:00 2001 From: Vick Scarlet Date: Sat, 17 May 2025 21:17:21 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E5=A4=8D=E5=86=B2=E7=AA=81?= =?UTF-8?q?=E5=A4=A9=E8=B5=8B=E6=BC=8F=E5=A1=AB=E5=87=BA=E9=94=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/modules/talent.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/modules/talent.js b/src/modules/talent.js index b80a423..8533a5e 100644 --- a/src/modules/talent.js +++ b/src/modules/talent.js @@ -73,6 +73,9 @@ class Talent { for(const e of exclude) { if(talent == e) return talent; } + for (const e of this.get(talent).exclude) { + if (excludeId == e) return talent + } } return null; }