BuildCraft 7.1.7

This commit is contained in:
asiekierka 2015-10-02 18:40:14 +02:00
parent 91590f4391
commit a9dc45e72e
5 changed files with 10 additions and 3 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 = "7.1.6"
version = "7.1.7"
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,3 @@
Bugs fixed:
* [#3049] BuildCraft 7.1.6 not working in SMP (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:7.1.6
1.7.10:BuildCraft:7.1.7

View file

@ -69,6 +69,7 @@ public class BuilderProxyClient extends BuilderProxy {
public EntityBlock newDrill(World w, double i, double j, double k, double l, double d, double e, boolean xz) {
EntityBlock eb = super.newDrill(w, i, j, k, l, d, e, xz);
if (xz) {
eb.texture = new IIcon[6];
for (int a = 0; a < 6; a++) {
eb.texture[a] = a >= 2 ? drillSideTexture : drillTexture;
}

View file

@ -19,7 +19,7 @@ import cpw.mods.fml.relauncher.SideOnly;
public class EntityBlock extends Entity {
@SideOnly(Side.CLIENT)
public IIcon[] texture = new IIcon[6];
public IIcon[] texture;
public float shadowSize = 0;
public float rotationX = 0;
public float rotationY = 0;
@ -51,6 +51,9 @@ public class EntityBlock extends Entity {
}
public void setTexture(IIcon icon) {
if (this.texture == null) {
this.texture = new IIcon[6];
}
for (int i = 0; i < 6; i++) {
this.texture[i] = icon;
}