Rename and clean up MapleDataFileEntry

This commit is contained in:
P0nk
2021-09-09 21:50:40 +02:00
parent eb935b4143
commit ae59916e98
9 changed files with 15 additions and 16 deletions

View File

@@ -41,7 +41,7 @@ public class SkillFactory {
public static void loadAllSkills() {
final Map<Integer, Skill> loadedSkills = new HashMap<>();
final DataDirectoryEntry root = datasource.getRoot();
for (MapleDataFileEntry topDir : root.getFiles()) { // Loop thru jobs
for (DataFileEntry topDir : root.getFiles()) { // Loop thru jobs
if (topDir.getName().length() <= 8) {
for (Data data : datasource.getData(topDir.getName())) { // Loop thru each jobs
if (data.getName().equals("skill")) {