horsegen: rename character/id -> character/character-id

This commit is contained in:
2026-01-09 15:03:27 -05:00
parent 7d8c6ae82e
commit 96c6273419
2 changed files with 2 additions and 2 deletions

View File

@@ -163,7 +163,7 @@ pub fun character/from-id(id: int): maybe<character>
_ -> Nothing
// Get the ID for a character.
pub fun character/id(c: character): int
pub fun character/character-id(c: character): int
match c
Special-Week -> 1001
Silence-Suzuka -> 1002

View File

@@ -29,7 +29,7 @@ pub fun character/from-id(id: int): maybe<character>
_ -> Nothing
// Get the ID for a character.
pub fun character/id(c: character): int
pub fun character/character-id(c: character): int
match c
{{- range $uma := $.Characters }}
{{ kkenum $uma.Name }} -> {{ $uma.ID }}