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:
Gürkan Kaymak 2020-06-23 16:30:39 +03:00 committed by GitHub
parent 1cc5b0bfbd
commit 7f4db3b874
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 0 deletions

View File

@ -279,6 +279,7 @@ const (
// --- Enemy Data ---
MonStats = "/data/global/excel/monstats.txt"
SuperUniques = "/data/global/excel/SuperUniques.txt"
// --- Skill Data ---

View File

@ -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 {