fix(game): 修复寒流枪技能中宠物ID错误 - 将寒流枪技能中第二个宠物的ID从505修正为1905 - 移除了未使用的Effect138效果代码(先出手反弹伤害效果) ```
This commit is contained in:
@@ -30,7 +30,7 @@ func (h Controller) HanLiuQiang(data *C2S_2608, c *player.Player) (result *fight
|
||||
pet = model.GenPetInfo(1567, 31, -1, -1, 100, nil, 0)
|
||||
|
||||
c.Service.Pet.PetAdd(pet)
|
||||
pet = model.GenPetInfo(505, 31, -1, -1, 100, nil, 0)
|
||||
pet = model.GenPetInfo(1905, 31, -1, -1, 100, nil, 0)
|
||||
|
||||
c.Service.Pet.PetAdd(pet)
|
||||
return result, -1
|
||||
|
||||
Reference in New Issue
Block a user