aboutsummaryrefslogtreecommitdiff
path: root/Minecraft.World/HatchetItem.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Minecraft.World/HatchetItem.cpp')
-rw-r--r--Minecraft.World/HatchetItem.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Minecraft.World/HatchetItem.cpp b/Minecraft.World/HatchetItem.cpp
index 16bf89bf..7fa204ca 100644
--- a/Minecraft.World/HatchetItem.cpp
+++ b/Minecraft.World/HatchetItem.cpp
@@ -25,7 +25,7 @@ HatchetItem::HatchetItem(int id, const Tier *tier) : DiggerItem (id, 3, tier, di
// 4J - brought forward from 1.2.3
float HatchetItem::getDestroySpeed(shared_ptr<ItemInstance> itemInstance, Tile *tile)
{
- if (tile != NULL && tile->material == Material::wood)
+ if (tile != NULL && (tile->material == Material::wood || tile->material == Material::plant || tile->material == Material::replaceable_plant))
{
return speed;
}