1
1
mirror of https://github.com/OpenDiablo2/OpenDiablo2 synced 2024-06-12 10:40:42 +00:00
OpenDiablo2/d2core/d2records/unique_appellation_loader.go

28 lines
497 B
Go
Raw Permalink Normal View History

package d2records
import (
"github.com/OpenDiablo2/OpenDiablo2/d2common/d2fileformats/d2txt"
)
func uniqueAppellationsLoader(r *RecordManager, d *d2txt.DataDictionary) error {
records := make(UniqueAppellations)
for d.Next() {
record := &UniqueAppellationRecord{
Name: d.String("Name"),
}
records[record.Name] = record
}
if d.Err != nil {
return d.Err
}
r.Monster.Unique.Appellations = records
2020-12-18 06:40:54 +00:00
r.Debugf("Loaded %d UniqueAppellation records", len(records))
return nil
}