Some patches (#4494)

Fixed blocks being dropped from blast mining even if yield was set to 0.
Tree feller not working entirely if one fake block break event is cancelled. (Fixes #4189)
Fixes no woodcutting xp being rewarded if a tree is too big while using tree feller.
This commit is contained in:
Warrior
2021-04-16 19:03:57 +02:00
committed by GitHub
parent 04459f1ea7
commit 7393421607
3 changed files with 13 additions and 2 deletions

View File

@@ -157,8 +157,10 @@ public class MiningManager extends SkillManager {
//TODO: Rewrite this garbage
//TODO: Rewrite this garbage
public void blastMiningDropProcessing(float yield, EntityExplodeEvent event) {
//Strip out only stuff that gives mining XP
if (yield == 0)
return;
//Strip out only stuff that gives mining XP
List<BlockState> ores = new ArrayList<>();
List<BlockState> notOres = new ArrayList<>();