tweak and fix salvage result chance

This commit is contained in:
nossr50
2020-02-19 13:27:21 -08:00
parent ab6dbe306d
commit 4e21f1a200
3 changed files with 4 additions and 4 deletions

View File

@@ -437,8 +437,7 @@ public class HerbalismManager extends SkillManager {
}
private HashSet<Block> getBrokenChorusBlocks(BlockState originalBreak) {
HashSet<Block> traversedBlocks = grabChorusTreeBrokenBlocksRecursive(originalBreak.getBlock(), new HashSet<>());
return traversedBlocks;
return grabChorusTreeBrokenBlocksRecursive(originalBreak.getBlock(), new HashSet<>());
}
private HashSet<Block> grabChorusTreeBrokenBlocksRecursive(Block currentBlock, HashSet<Block> traversed) {