From ff66d5d63a6e0da6ba346b15caecb6583ba36a38 Mon Sep 17 00:00:00 2001 From: Abrar Syed Date: Sun, 4 May 2014 11:17:16 -0500 Subject: [PATCH 1/3] fixed readme for gradle dependencies --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index b1c86a27..8eabf612 100644 --- a/README.md +++ b/README.md @@ -81,7 +81,7 @@ this repository will have to be rejected. add the following to your build.gradle file ``` dependencies { - compile 'com.mod-buildcraft:buildcraft:5.0.0.+:dev' + compile 'com.mod-buildcraft:buildcraft:6.0.8:dev' } ``` -where `5.0.0` is the desired version of BuildCraft +where `6.0.8` is the desired version of BuildCraft From 37b765083ce3b4994d67b8cb03faaee0ebc8dea9 Mon Sep 17 00:00:00 2001 From: Raul Tambre Date: Sun, 4 May 2014 20:58:30 +0300 Subject: [PATCH 2/3] Better fix to laser dot, fix #1692 --- common/buildcraft/silicon/TileLaser.java | 3 --- 1 file changed, 3 deletions(-) diff --git a/common/buildcraft/silicon/TileLaser.java b/common/buildcraft/silicon/TileLaser.java index 6fbd5d7a..d3967b69 100644 --- a/common/buildcraft/silicon/TileLaser.java +++ b/common/buildcraft/silicon/TileLaser.java @@ -58,9 +58,6 @@ public class TileLaser extends TileBuildCraft implements IActionReceptor, IMachi @Override public void initialize () { super.initialize(); - - laser.head = new Position(xCoord, yCoord, zCoord); - laser.tail = new Position(xCoord, yCoord, zCoord); } @Override From 5033dace6cb6e57e0e7845f2148773560345a440 Mon Sep 17 00:00:00 2001 From: Raul Tambre Date: Sun, 4 May 2014 22:07:26 +0300 Subject: [PATCH 3/3] Fix the fix for the fix of red dot --- common/buildcraft/silicon/TileLaser.java | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/common/buildcraft/silicon/TileLaser.java b/common/buildcraft/silicon/TileLaser.java index d3967b69..5ed9e4a3 100644 --- a/common/buildcraft/silicon/TileLaser.java +++ b/common/buildcraft/silicon/TileLaser.java @@ -58,6 +58,10 @@ public class TileLaser extends TileBuildCraft implements IActionReceptor, IMachi @Override public void initialize () { super.initialize(); + + laser.isVisible = false; + laser.head = new Position(xCoord, yCoord, zCoord); + laser.tail = new Position(xCoord, yCoord, zCoord); } @Override