|
|
@@ -1377,8 +1377,13 @@ function createCombatMoshow(human, combatType, moshowIdArr)
|
|
|
end
|
|
|
|
|
|
-- 获取出战魔兽的skillID
|
|
|
-function getPutMoshouSkillID(human, combatType)
|
|
|
- local putOnMoshou = CombatPosLogic.getCombatMoshou(human, combatType)
|
|
|
+function getPutMoshouSkillID(human, combatType, helpList)
|
|
|
+ local putOnMoshou
|
|
|
+ if combatType == CombatDefine.COMBAT_TYPE36 and helpList then
|
|
|
+ putOnMoshou = helpList[1]
|
|
|
+ else
|
|
|
+ putOnMoshou = CombatPosLogic.getCombatMoshou(human, combatType)
|
|
|
+ end
|
|
|
if not putOnMoshou or putOnMoshou < 1 then return end
|
|
|
if not MOSHOU_SKILL[MOSHOU_ID1][putOnMoshou] then return end
|
|
|
|