1
1
mirror of https://github.com/OpenDiablo2/OpenDiablo2 synced 2024-06-11 02:10:43 +00:00
OpenDiablo2/d2core/d2records/gamble_loader.go
2020-12-18 18:46:34 +01:00

28 lines
456 B
Go

package d2records
import (
"github.com/OpenDiablo2/OpenDiablo2/d2common/d2fileformats/d2txt"
)
func gambleLoader(r *RecordManager, d *d2txt.DataDictionary) error {
records := make(Gamble)
for d.Next() {
record := &GambleRecord{
Name: d.String("name"),
Code: d.String("code"),
}
records[record.Name] = record
}
if d.Err != nil {
return d.Err
}
r.Debugf("Loaded %d Gamble records", len(records))
r.Gamble = records
return nil
}