From 700ab47beee9be5f2159ce7925e33cd37d023f3f Mon Sep 17 00:00:00 2001 From: xtaodada Date: Mon, 2 Dec 2024 14:01:07 +0800 Subject: [PATCH] :bug: Fix AttributeError in avatar_list allow_mutation --- plugins/genshin/avatar_list.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/plugins/genshin/avatar_list.py b/plugins/genshin/avatar_list.py index 2c111a2d..15f32092 100644 --- a/plugins/genshin/avatar_list.py +++ b/plugins/genshin/avatar_list.py @@ -108,8 +108,6 @@ class AvatarListPlugin(Plugin): talents = [] for talent in detail.talents: if "普通攻击" in talent.name: - talent.Config.allow_mutation = True - # noinspection Pydantic talent.group_id = 1131 if talent.type in ["attack", "skill", "burst"]: talents.append(talent)