Rename and clean up MapleFootholdTree

This commit is contained in:
P0nk
2021-09-09 22:20:42 +02:00
parent 032f111b53
commit 0ddf49c7b6
3 changed files with 22 additions and 25 deletions

View File

@@ -98,7 +98,7 @@ public class MapleMap {
private Map<MobLootEntry, Long> mobLootEntries = new HashMap(20);
private List<Runnable> statUpdateRunnables = new ArrayList(50);
private List<Rectangle> areas = new ArrayList<>();
private MapleFootholdTree footholds = null;
private FootholdTree footholds = null;
private Pair<Integer, Integer> xLimits; // caches the min and max x's with available footholds
private Rectangle mapArea = new Rectangle();
private int mapid;
@@ -3036,11 +3036,11 @@ public class MapleMap {
return areas.get(index);
}
public void setFootholds(MapleFootholdTree footholds) {
public void setFootholds(FootholdTree footholds) {
this.footholds = footholds;
}
public MapleFootholdTree getFootholds() {
public FootholdTree getFootholds() {
return footholds;
}