Bug Fixes

This commit is contained in:
Brian 2018-12-17 17:22:07 +02:00
parent 4813fc9032
commit 92d4899cd9
3 changed files with 6 additions and 4 deletions

View File

@ -31,6 +31,8 @@ public class CustomLoot {
public static void initializeCustomItems() {
itemMap.clear();
FileConfiguration fileConfiguration = UltimateTimber.getInstance().getConfig();
List<String> arrayList = (List<String>) fileConfiguration.getList(DefaultConfig.CUSTOM_LOOT_LIST);

View File

@ -57,7 +57,7 @@ public class TreeChecker {
offset determines the search radius around the main trunk
maxheight sets the maximum height the plugin will crawl through to find a tree
*/
int offset = 5;
int offset = 7;
int maxHeight = 31;
/*
@ -141,11 +141,11 @@ public class TreeChecker {
int radMin, radMax;
if (i > 5) {
radMin = -5;
radMax = 7;
} else {
radMin = -4;
radMax = 6;
} else {
radMin = -3;
radMax = 5;
}

Binary file not shown.