mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2024-11-22 13:16:45 +01:00
Fixed bug where Mining wasn't awarding double drops
This commit is contained in:
parent
dafa690a09
commit
171026ba23
@ -9,7 +9,8 @@ Key:
|
|||||||
|
|
||||||
Version 1.4.04-dev
|
Version 1.4.04-dev
|
||||||
= Fixed bug where trying to activate a Chimaera Wing would require one item too much
|
= Fixed bug where trying to activate a Chimaera Wing would require one item too much
|
||||||
= Fixed bug where Treefeller would try to cut too many leaves and reach the threshold when it shouldn't
|
= Fixed bug where Treefeller would try to cut too many leaves and reach the threshold when it shouldn't
|
||||||
|
= Fixed bug where Mining wasn't awarding double drops
|
||||||
|
|
||||||
Version 1.4.03
|
Version 1.4.03
|
||||||
+ Added option to advanced.yml to determine the # of enchant levels used when buffing Super Breaker & Giga Drill Breaker
|
+ Added option to advanced.yml to determine the # of enchant levels used when buffing Super Breaker & Giga Drill Breaker
|
||||||
|
@ -58,7 +58,7 @@ public class MiningManager extends SkillManager{
|
|||||||
|
|
||||||
applyXpGain(Mining.getBlockXp(blockState));
|
applyXpGain(Mining.getBlockXp(blockState));
|
||||||
|
|
||||||
if (Permissions.doubleDrops(player, skill)) {
|
if (!Permissions.doubleDrops(player, skill)) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user