This commit is contained in:
Yavolte 2025-06-26 18:30:17 +08:00
parent 8409716217
commit 3b130c9d14
1 changed files with 0 additions and 5 deletions

View File

@ -58,10 +58,5 @@ func recursiveTier[T comparable](parent T, values []*types.TierValue[T]) []*type
items = append(items, row)
}
}
for _, row := range values {
if !row.Used {
items = append(items, row)
}
}
return items
}