From e1ba871d7321b8111f7d19085d2fe9011cf8f228 Mon Sep 17 00:00:00 2001 From: walkpan Date: Fri, 26 Dec 2025 16:22:20 +0800 Subject: [PATCH] =?UTF-8?q?refactor(game):=20=E9=87=8D=E5=91=BD=E5=90=8D?= =?UTF-8?q?=E8=8E=B7=E5=8F=96=E5=A4=A9=E8=B5=8B=E9=80=89=E9=A1=B9=E5=87=BD?= =?UTF-8?q?=E6=95=B0=E4=B8=BAgetTalentBuffs=E4=BB=A5=E6=9B=B4=E5=87=86?= =?UTF-8?q?=E7=A1=AE=E6=8F=8F=E8=BF=B0=E5=8A=9F=E8=83=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- assets/script/game/common/config/TDLevelOptions.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/assets/script/game/common/config/TDLevelOptions.ts b/assets/script/game/common/config/TDLevelOptions.ts index 245f760a..df6320d6 100644 --- a/assets/script/game/common/config/TDLevelOptions.ts +++ b/assets/script/game/common/config/TDLevelOptions.ts @@ -195,7 +195,7 @@ export const TALENT_LEVELS = [5, 10, 15, 20]; * 获取天赋选项(从天赋池中随机抽取) * @param count 选项数量,默认4个 */ -export const getTalentOptions = (count: number = 4): ItalConf[] => { +export const getTalentBuffs = (count: number = 4): ItalConf[] => { // 获取所有天赋列表 const allTalents = Object.values(talConf);