mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2025-01-19 08:55:26 +01:00
Another leak...
This commit is contained in:
parent
d393e4d124
commit
c3e1cf8681
@ -16,6 +16,7 @@ Version 2.0.00-dev
|
|||||||
= Fixed issue with Blast Mining not seeing TNT for detonation due to snow
|
= Fixed issue with Blast Mining not seeing TNT for detonation due to snow
|
||||||
= Fixed issue with block interaction returning NPEs
|
= Fixed issue with block interaction returning NPEs
|
||||||
= Fixed issue where every block broken had a mining check applied
|
= Fixed issue where every block broken had a mining check applied
|
||||||
|
= Fixed issue where every block broken had a herbalism check applied
|
||||||
= Fixed issue where blocks weren't being removed from the watchlist
|
= Fixed issue where blocks weren't being removed from the watchlist
|
||||||
! Changed Call of the Wild to activate on left-click rather than right-click
|
! Changed Call of the Wild to activate on left-click rather than right-click
|
||||||
! Changed Blast Mining to track based on Entity ID vs. Location
|
! Changed Blast Mining to track based on Entity ID vs. Location
|
||||||
|
@ -115,7 +115,7 @@ public class mcBlockListener implements Listener {
|
|||||||
Herbalism.herbalismProcCheck(block, player, event, plugin);
|
Herbalism.herbalismProcCheck(block, player, event, plugin);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (mcPermissions.getInstance().herbalism(player) && block.getData() != (byte) 5) {
|
if (mcPermissions.getInstance().herbalism(player) && block.getData() != (byte) 0x5 && Herbalism.canBeGreenTerra(block)) {
|
||||||
Herbalism.herbalismProcCheck(block, player, event, plugin);
|
Herbalism.herbalismProcCheck(block, player, event, plugin);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -153,8 +153,7 @@ public class mcBlockListener implements Listener {
|
|||||||
* EXCAVATION
|
* EXCAVATION
|
||||||
*/
|
*/
|
||||||
|
|
||||||
if (Excavation.canBeGigaDrillBroken(block) && mcPermissions.getInstance().excavation(player) && block.getData() != (byte) 0x5)
|
if (Excavation.canBeGigaDrillBroken(block) && mcPermissions.getInstance().excavation(player) && block.getData() != (byte) 0x5) {
|
||||||
{
|
|
||||||
if(LoadProperties.excavationRequiresShovel && ItemChecks.isShovel(inhand)) {
|
if(LoadProperties.excavationRequiresShovel && ItemChecks.isShovel(inhand)) {
|
||||||
Excavation.excavationProcCheck(block, player);
|
Excavation.excavationProcCheck(block, player);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user