diff --git a/Changelog.txt b/Changelog.txt index e382ac2a7..2eb5ae658 100644 --- a/Changelog.txt +++ b/Changelog.txt @@ -1,5 +1,6 @@ Version 2.1.101 Fixed an exploit where chorus plants could be used to gain automatic XP + Added blast furnace, cartography table, grindstone, lectern, loom, scaffolding, smoker, stonecutter, and sweet berry bush to the list of internal blocks that don't trigger tool readying Version 2.1.100 Fixed a bug where plants could double drop when the skill was not yet unlocked diff --git a/pom.xml b/pom.xml index 9e5d20cf1..21ef3c13d 100755 --- a/pom.xml +++ b/pom.xml @@ -2,7 +2,7 @@ 4.0.0 com.gmail.nossr50.mcMMO mcMMO - 2.1.101-SNAPSHOT + 2.1.101 mcMMO https://github.com/mcMMO-Dev/mcMMO diff --git a/src/main/java/com/gmail/nossr50/util/MaterialMapStore.java b/src/main/java/com/gmail/nossr50/util/MaterialMapStore.java index 9ae5d9cf7..8534a6bf4 100644 --- a/src/main/java/com/gmail/nossr50/util/MaterialMapStore.java +++ b/src/main/java/com/gmail/nossr50/util/MaterialMapStore.java @@ -299,6 +299,14 @@ public class MaterialMapStore { abilityBlackList.add("shulker_box"); abilityBlackList.add("wall_sign"); //1.13 and lower? abilityBlackList.add("sign"); //1.13 and lower? + abilityBlackList.add("cartography_table"); + abilityBlackList.add("grindstone"); + abilityBlackList.add("lectern"); + abilityBlackList.add("loom"); + abilityBlackList.add("scaffolding"); + abilityBlackList.add("smoker"); + abilityBlackList.add("stonecutter"); + abilityBlackList.add("sweet_berry_bush"); } private void fillToolBlackList()