mirror of
https://github.com/OpenDiablo2/OpenDiablo2
synced 2024-12-27 04:26:29 -05:00
Added call to loading SuperUniques data dict (#415)
* added SuperUniques data dictionary * added a call to LoadSuperUniques() method from the main * added a call to LoadSuperUniques() method from the main
This commit is contained in:
parent
1cc5b0bfbd
commit
7f4db3b874
@ -279,6 +279,7 @@ const (
|
||||
// --- Enemy Data ---
|
||||
|
||||
MonStats = "/data/global/excel/monstats.txt"
|
||||
SuperUniques = "/data/global/excel/SuperUniques.txt"
|
||||
|
||||
// --- Skill Data ---
|
||||
|
||||
|
1
main.go
1
main.go
@ -423,6 +423,7 @@ func loadDataDict() error {
|
||||
{d2resource.LevelMaze, d2datadict.LoadLevelMazeDetails},
|
||||
{d2resource.LevelSubstitutions, d2datadict.LoadLevelSubstitutions},
|
||||
{d2resource.CubeRecipes, d2datadict.LoadCubeRecipes},
|
||||
{d2resource.SuperUniques, d2datadict.LoadSuperUniques},
|
||||
}
|
||||
|
||||
for _, entry := range entries {
|
||||
|
Loading…
Reference in New Issue
Block a user