From 2c7ac4fac8f5d741a94253d74d334f8f6d436b80 Mon Sep 17 00:00:00 2001 From: xiekaidong Date: Tue, 5 Sep 2023 20:19:51 +0800 Subject: [PATCH] =?UTF-8?q?bug=E4=BF=AE=E5=A4=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../controller/battle_controller_boss_rush.lua | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/lua/app/module/battle/controller/battle_controller_boss_rush.lua b/lua/app/module/battle/controller/battle_controller_boss_rush.lua index aaa82b90..22fb47ad 100644 --- a/lua/app/module/battle/controller/battle_controller_boss_rush.lua +++ b/lua/app/module/battle/controller/battle_controller_boss_rush.lua @@ -83,12 +83,12 @@ function BattleControllerBossRush:onLoadComplete(...) end function BattleControllerBossRush:initOther() - self.monsterAtkAddition1 = GFunc.getConstIntValue("activity_boss_rush_hp_add_1") - self.monsterHpAddition1 = GFunc.getConstIntValue("activity_boss_rush_atk_add_1") - self.monsterAtkAddition2 = GFunc.getConstIntValue("activity_boss_rush_hp_add_2") - self.monsterHpAddition2 = GFunc.getConstIntValue("activity_boss_rush_atk_add_2") - self.monsterAtkAddition3 = GFunc.getConstIntValue("activity_boss_rush_hp_add_3") - self.monsterHpAddition3 = GFunc.getConstIntValue("activity_boss_rush_atk_add_3") + self.monsterAtkAddition1 = GFunc.getConstIntValue("activity_boss_rush_atk_add_1") + self.monsterHpAddition1 = GFunc.getConstIntValue("activity_boss_rush_hp_add_1") + self.monsterAtkAddition2 = GFunc.getConstIntValue("activity_boss_rush_atk_add_2") + self.monsterHpAddition2 = GFunc.getConstIntValue("activity_boss_rush_hp_add_2") + self.monsterAtkAddition3 = GFunc.getConstIntValue("activity_boss_rush_atk_add_3") + self.monsterHpAddition3 = GFunc.getConstIntValue("activity_boss_rush_hp_add_3") self.battleData:setMaxBattleLv(MAX_LV) end