mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2024-11-22 13:16:45 +01:00
Tree Feller bug fix
This commit is contained in:
parent
f6ad530660
commit
3673d3fb7b
@ -1,3 +1,6 @@
|
|||||||
|
Version 2.1.89
|
||||||
|
Fixed a bug that could result in Tree Feller failing to remove parts of a tree
|
||||||
|
|
||||||
Version 2.1.88
|
Version 2.1.88
|
||||||
mcMMO is now more compatible with a plugin named Project Korra
|
mcMMO is now more compatible with a plugin named Project Korra
|
||||||
mcMMO will no longer process combat triggers for damage at or below 0
|
mcMMO will no longer process combat triggers for damage at or below 0
|
||||||
|
2
pom.xml
2
pom.xml
@ -2,7 +2,7 @@
|
|||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<groupId>com.gmail.nossr50.mcMMO</groupId>
|
<groupId>com.gmail.nossr50.mcMMO</groupId>
|
||||||
<artifactId>mcMMO</artifactId>
|
<artifactId>mcMMO</artifactId>
|
||||||
<version>2.1.88</version>
|
<version>2.1.89-SNAPSHOT</version>
|
||||||
<name>mcMMO</name>
|
<name>mcMMO</name>
|
||||||
<url>https://github.com/mcMMO-Dev/mcMMO</url>
|
<url>https://github.com/mcMMO-Dev/mcMMO</url>
|
||||||
<scm>
|
<scm>
|
||||||
|
@ -193,7 +193,8 @@ public class BlockListener implements Listener {
|
|||||||
|
|
||||||
if(ExperienceConfig.getInstance().preventStoneLavaFarming())
|
if(ExperienceConfig.getInstance().preventStoneLavaFarming())
|
||||||
{
|
{
|
||||||
if(event.getNewState().getType() != Material.OBSIDIAN && BlockUtils.shouldBeWatched(event.getNewState()))
|
if(event.getNewState().getType() != Material.OBSIDIAN && BlockUtils.shouldBeWatched(event.getNewState())
|
||||||
|
&& ExperienceConfig.getInstance().doesBlockGiveSkillXP(PrimarySkillType.MINING, event.getNewState().getBlockData()))
|
||||||
{
|
{
|
||||||
mcMMO.getPlaceStore().setTrue(event.getNewState());
|
mcMMO.getPlaceStore().setTrue(event.getNewState());
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user