Support skill list generation with used attribute

This commit is contained in:
2026-05-27 09:22:18 +02:00
parent 981288f09e
commit fd83d96c3a
2 changed files with 9 additions and 6 deletions
+3
View File
@@ -458,6 +458,9 @@ func (ctx *wikiContext) classSkillRows(classRow map[string]any) []map[string]any
row := cloneRowMap(source)
row["SkillKey"] = key
row["SkillName"] = ctx.resolveSkillName(key)
if skillRow := ctx.skillRows[key]; skillRow != nil {
row["SkillAbility"] = stringValue(skillRow, "KeyAbility")
}
rows = append(rows, row)
}
return rows