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

fix(boss): 修复新选择效果ID初始化错误

修正NewSeIdx_183.go和NewSeIdx_184.go中EffectType.NewSel的ID参数,
将错误的83和84分别更正为正确的183和184,确保技能效果正确注册。
```
This commit is contained in:
昔念
2026-03-05 01:01:56 +08:00
parent ab5ad94d65
commit 2e7215946b
2 changed files with 2 additions and 2 deletions

View File

@@ -26,5 +26,5 @@ func (e *NewSel183) SkillUseed() bool {
}
func init() {
input.InitEffect(input.EffectType.NewSel, 83, &NewSel183{})
input.InitEffect(input.EffectType.NewSel, 183, &NewSel183{})
}

View File

@@ -30,5 +30,5 @@ func (e *NewSel184) DamageLockEx(t *info.DamageZone) bool {
return true
}
func init() {
input.InitEffect(input.EffectType.NewSel, 84, &NewSel184{})
input.InitEffect(input.EffectType.NewSel, 184, &NewSel184{})
}