```
All checks were successful
ci/woodpecker/push/my-first-workflow Pipeline was successful

fix(game): 修复寒流枪技能中宠物ID错误

- 将寒流枪技能中第二个宠物的ID从505修正为1905
- 移除了未使用的Effect138效果代码(先出手反弹伤害效果)
```
This commit is contained in:
昔念
2026-03-09 22:49:48 +08:00
parent ce279cd992
commit 0961dc43e3
3 changed files with 51 additions and 30 deletions

View File

@@ -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