Little tweak to make 3rd person held wrench item look better

Just threw in isFull3D so that way the wrench is held outward instead of sideways. Looks significantly better
This commit is contained in:
oitsjustjose 2013-07-28 09:15:33 -05:00
parent a4765c766e
commit 73fa5865c7

View file

@ -37,4 +37,11 @@ public class ItemWrench extends ItemBuildCraft implements IToolWrench {
public boolean shouldPassSneakingClickToBlock(World par2World, int par4, int par5, int par6) { public boolean shouldPassSneakingClickToBlock(World par2World, int par4, int par5, int par6) {
return true; return true;
} }
@Override
@SideOnly(Side.CLIENT)
public boolean isFull3D()
{
return true;
}
} }