Skip to content

Commit

Permalink
Fixed the clever's mining fatigue still active after throwing the cle…
Browse files Browse the repository at this point in the history
…aver, closes #731
  • Loading branch information
Glassmaker committed Jul 27, 2014
1 parent efbed8a commit 47726d1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/tconstruct/items/tools/Cleaver.java
Expand Up @@ -150,7 +150,7 @@ public void onUpdate (ItemStack stack, World world, Entity entity, int par4, boo
ItemStack equipped = player.getCurrentEquippedItem();
if (equipped == stack)
{
player.addPotionEffect(new PotionEffect(Potion.digSlowdown.id, 1, 2));
player.addPotionEffect(new PotionEffect(Potion.digSlowdown.id, 2, 2, true));
}
}
}
Expand Down

0 comments on commit 47726d1

Please sign in to comment.