Update nodemanger.go

This commit is contained in:
2025-09-15 08:36:48 +08:00
committed by GitHub
parent d9f09aa96a
commit 4c36c1f176

View File

@@ -141,12 +141,10 @@ func (c *Input) Exec(fn func(Effect) bool) bool {
if effect.Alive() {
result := fn(effect)
if !result {
results = result //如果是false,说明存在阻止向下执行的effect比如免疫能力提升效果
return result //如果是false,说明存在阻止向下执行的effect比如免疫能力提升效果
}
if result {
results = true
}
}
}