Wrench doesn't use durability anymore + update changelog. 1.2 done

This commit is contained in:
Raoul Van den Berge
2016-11-03 22:37:44 +01:00
parent abef0f10ad
commit 3a00119b6c
2 changed files with 2 additions and 5 deletions

View File

@@ -1,8 +1,8 @@
# Refined Storage Changelog # Refined Storage Changelog
### 1.2 ### 1.2
- Added new autocrafting system (way2muchnoise, raoulvdberge) - Added new autocrafting system (way2muchnoise)
- Added ore dictionary autocrafting (way2muchnoise, raoulvdberge) - Added ore dictionary autocrafting (way2muchnoise)
- Added recipe transfer handler for Processing Pattern Encoder (way2muchnoise) - Added recipe transfer handler for Processing Pattern Encoder (way2muchnoise)
- Added void excess items functionality to storage blocks (geldorn, raoulvdberge, InusualZ) - Added void excess items functionality to storage blocks (geldorn, raoulvdberge, InusualZ)
- Added config option to configure RS to EU conversion rates (InusualZ) - Added config option to configure RS to EU conversion rates (InusualZ)

View File

@@ -63,7 +63,6 @@ public class ItemWrench extends ItemBase {
super("wrench"); super("wrench");
setMaxStackSize(1); setMaxStackSize(1);
setMaxDamage(64);
} }
@Override @Override
@@ -112,8 +111,6 @@ public class ItemWrench extends ItemBase {
player.addChatComponentMessage(new TextComponentTranslation("item.refinedstorage:wrench.saved")); player.addChatComponentMessage(new TextComponentTranslation("item.refinedstorage:wrench.saved"));
} }
stack.damageItem(1, player);
return EnumActionResult.SUCCESS; return EnumActionResult.SUCCESS;
} }
} }