mirror of
https://github.com/OpenDiablo2/OpenDiablo2
synced 2024-11-02 09:17:19 -04:00
29 lines
543 B
Go
29 lines
543 B
Go
package d2records
|
|
|
|
import (
|
|
"github.com/OpenDiablo2/OpenDiablo2/d2common/d2fileformats/d2txt"
|
|
)
|
|
|
|
func hirelingDescriptionLoader(r *RecordManager, d *d2txt.DataDictionary) error {
|
|
records := make(HirelingDescriptions)
|
|
|
|
for d.Next() {
|
|
record := &HirelingDescriptionRecord{
|
|
Name: d.String("Hireling Description"),
|
|
Token: d.String("Code"),
|
|
}
|
|
|
|
records[record.Name] = record
|
|
}
|
|
|
|
if d.Err != nil {
|
|
panic(d.Err)
|
|
}
|
|
|
|
r.Hireling.Descriptions = records
|
|
|
|
r.Debugf("Loaded %d HirelingDescription records", len(records))
|
|
|
|
return nil
|
|
}
|