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:
parent
a4765c766e
commit
73fa5865c7
1 changed files with 7 additions and 0 deletions
|
@ -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;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue