diff --git a/build.gradle b/build.gradle index f17e14e87..518218dc0 100644 --- a/build.gradle +++ b/build.gradle @@ -80,7 +80,7 @@ if (ENV.BUILD_NUMBER) { } minecraft { - version = "1.9-12.16.0.1770-1.9" + version = "1.9-12.16.0.1776-1.9" mappings = "snapshot_20160316" replace "@MODVERSION@", project.version // makeObfSourceJar = false diff --git a/src/main/java/techreborn/client/render/parts/RenderCablePart.java b/src/main/java/techreborn/client/render/parts/RenderCablePart.java index e50191f33..f4f56284e 100644 --- a/src/main/java/techreborn/client/render/parts/RenderCablePart.java +++ b/src/main/java/techreborn/client/render/parts/RenderCablePart.java @@ -19,6 +19,7 @@ import techreborn.parts.CableMultipart; import techreborn.parts.EnumCableType; import java.util.ArrayList; +import java.util.Collections; import java.util.List; public class RenderCablePart implements IBakedModel { @@ -35,6 +36,8 @@ public class RenderCablePart implements IBakedModel { } public void addCubeToList(Vecs3dCube cube, ArrayList list, BlockPartFace face, ModelRotation modelRotation, TextureAtlasSprite cubeTexture) { + BlockFaceUV uv = new BlockFaceUV(new float[]{(float) cube.getMinX(), (float) cube.getMinY(), (float) cube.getMaxX(), (float) cube.getMaxY()}, 0); + face = new BlockPartFace(null, 0, "", uv); list.add(faceBakery.makeBakedQuad(new Vector3f((float) cube.getMinX(), (float) cube.getMinY(), (float) cube.getMinZ()), new Vector3f((float) cube.getMaxX(), (float) cube.getMinY(), (float) cube.getMaxZ()), face, cubeTexture, EnumFacing.DOWN, modelRotation, null, true, true));//down list.add(faceBakery.makeBakedQuad(new Vector3f((float) cube.getMinX(), (float) cube.getMaxY(), (float) cube.getMinZ()), new Vector3f((float) cube.getMaxX(), (float) cube.getMaxY(), (float) cube.getMaxZ()), face, cubeTexture, EnumFacing.UP, modelRotation, null, true, true));//up list.add(faceBakery.makeBakedQuad(new Vector3f((float) cube.getMinX(), (float) cube.getMinY(), (float) cube.getMinZ()), new Vector3f((float) cube.getMaxX(), (float) cube.getMaxY(), (float) cube.getMaxZ()), face, cubeTexture, EnumFacing.NORTH, modelRotation, null, true, true));//north @@ -51,6 +54,9 @@ public class RenderCablePart implements IBakedModel { double thickness = type.cableThickness; double lastThickness = 16 - thickness; IExtendedBlockState state = (IExtendedBlockState) blockState; + if(side != null){ + return Collections.emptyList(); + } addCubeToList(new Vecs3dCube(thickness, thickness, thickness, lastThickness, lastThickness, lastThickness), list, face, ModelRotation.X0_Y0, texture); if (state != null) { if (state.getValue(CableMultipart.UP)) { diff --git a/src/main/java/techreborn/parts/CableMultipart.java b/src/main/java/techreborn/parts/CableMultipart.java index fbe43db2c..923024e3b 100644 --- a/src/main/java/techreborn/parts/CableMultipart.java +++ b/src/main/java/techreborn/parts/CableMultipart.java @@ -77,10 +77,6 @@ public abstract class CableMultipart extends Multipart implements INormallyOcclu public void refreshBounding() { float centerFirst = center - offset; double w = (getCableType().cableThickness / 16) - 0.5; - boundingBoxes[6] = new Vecs3dCube(centerFirst - w - 0.03, centerFirst - - w - 0.08, centerFirst - w - 0.03, centerFirst + w + 0.08, - centerFirst + w + 0.04, centerFirst + w + 0.08); - boundingBoxes[6] = new Vecs3dCube(centerFirst - w, centerFirst - w, centerFirst - w, centerFirst + w, centerFirst + w, centerFirst + w); @@ -123,12 +119,13 @@ public abstract class CableMultipart extends Multipart implements INormallyOcclu @Override public void addSelectionBoxes(List list) { - super.addSelectionBoxes(list); + for (EnumFacing dir : EnumFacing.VALUES) { if (connectedSides.containsKey(dir)) list.add(boundingBoxes[Functions.getIntDirFromDirection(dir)].toAABB()); } list.add(boundingBoxes[6].toAABB()); + super.addSelectionBoxes(list); } @Override