Commit 551a935ba50e0250864c8b367c7b81cc0d4f0f95

Authored by 熊润斐
2 parents 2f148e9e 9fe9f3d1

Merge branch 'develop' into tr/publish

config/develop.lua
@@ -2,7 +2,7 @@ include("basic.lua") @@ -2,7 +2,7 @@ include("basic.lua")
2 2
3 logd = 0 -- 是否开启日志 3 logd = 0 -- 是否开启日志
4 thread = 4 4 thread = 4
5 -codeurl = "192.168.8.223:9090" 5 +codeurl = "192.168.0.199:9090"
6 servId = 1 6 servId = 1
7 7
8 max_client = 64 8 max_client = 64
src/actions/HeroAction.lua
@@ -738,7 +738,7 @@ function _M.drawHeroRpc(agent, data) @@ -738,7 +738,7 @@ function _M.drawHeroRpc(agent, data)
738 738
739 if btype == 1 then 739 if btype == 1 then
740 -- 判断定向卡池活动开启 740 -- 判断定向卡池活动开启
741 - if not role.activity:isOpen("RaceDraw") then 741 + if not role.activity:isOpen("SsrUpPoolChange") then
742 return 742 return
743 end 743 end
744 end 744 end
src/adv/AdvBattle.lua
@@ -76,6 +76,7 @@ function Battle:initPlayer() @@ -76,6 +76,7 @@ function Battle:initPlayer()
76 end 76 end
77 player.exp = 0 77 player.exp = 0
78 player.sp = getAdvLvAttrUp(advAddAttrs, "sp", 100) 78 player.sp = getAdvLvAttrUp(advAddAttrs, "sp", 100)
  79 + player.spMax = player.sp
79 player.growth = {} 80 player.growth = {}
80 player.passives = {} 81 player.passives = {}
81 82
1 -Subproject commit d2c3deaddd4952cd4b05306144cbcdfa09734cd3 1 +Subproject commit e97f773db5d87e95086840cf48cd01b17ec8fc27
src/models/Activity.lua
@@ -18,7 +18,7 @@ Activity.ActivityType = { @@ -18,7 +18,7 @@ Activity.ActivityType = {
18 DrawHero = 12, --抽卡周 招募 18 DrawHero = 12, --抽卡周 招募
19 AdvDraw = 13, --拾荒抽周 资助 19 AdvDraw = 13, --拾荒抽周 资助
20 OpenBox = 14, --拆解周 时钟箱 20 OpenBox = 14, --拆解周 时钟箱
21 - RaceDraw = 15, -- 定向招募活动 21 + --RaceDraw = 15, -- 定向招募活动
22 } 22 }
23 23
24 24