BuildCraft 6.4.5

This commit is contained in:
asiekierka 2015-03-25 15:38:08 +01:00
parent 60802f5045
commit 5adaf78a02
7 changed files with 8 additions and 8 deletions

View file

@ -22,7 +22,7 @@ apply plugin: 'forge' // adds the forge dependency
apply plugin: 'maven' // for uploading to a maven repo
apply plugin: 'checkstyle'
version = "6.4.4"
version = "6.4.5"
group= "com.mod-buildcraft"
archivesBaseName = "buildcraft" // the name that all artifacts will use as a base. artifacts names follow this pattern: [baseName]-[appendix]-[version]-[classifier].[extension]

View file

@ -0,0 +1,5 @@
Bugfixes:
* [#2585] Dupe bug with Thermal Expansion (asie)
* [#2582] Laser rendering not working properly with solid blocks on front (davboecki)
* (Fix attempt) [#2584] Filler lag when out of blocks (asie)
* Massive FPS lag with filler/builder effects (asie)

View file

@ -1,3 +1,3 @@
1.6.4:BuildCraft:4.2.2
1.7.2:BuildCraft:6.0.16
1.7.10:BuildCraft:6.4.4
1.7.10:BuildCraft:6.4.5

View file

@ -8,10 +8,7 @@
*/
package buildcraft.core.blueprints;
import java.util.ArrayList;
import java.util.Collection;
import java.util.HashSet;
import java.util.Iterator;
import java.util.LinkedList;
import org.apache.logging.log4j.Level;

View file

@ -8,7 +8,6 @@
*/
package buildcraft.core.builders;
import java.util.ArrayList;
import java.util.Collection;
public interface IBuildingItemsProvider {

View file

@ -8,7 +8,6 @@
*/
package buildcraft.core.builders;
import java.util.ArrayList;
import java.util.Collection;
import java.util.HashSet;
import java.util.Iterator;

View file

@ -168,7 +168,7 @@ public class RenderEngine extends TileEntitySpecialRenderer implements IInventor
bindTexture(chamberTexture);
float chamberf = 2F / 16F;
int chamberc = (((int) step + 2) / 2);
int chamberc = ((int) step + 2) / 2;
for (int i = 0; i <= step + 2; i += 2) {
chamber.render(factor);