Rename and clean up MapleDataFileEntry
This commit is contained in:
@@ -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")) {
|
||||
|
||||
Reference in New Issue
Block a user