Added Scrapboxinator, reverted yellow energy outlines, added grinder textures

This commit is contained in:
TheDoctorSoda 2016-03-14 21:53:05 -07:00
parent 5c07626959
commit e90592403b
38 changed files with 556 additions and 172 deletions

View file

@ -52,12 +52,12 @@ public class BlockAESU extends BlockMachineBase implements IRotationTexture {
@Override
public String getTop() {
return prefix + "aesu_side";
return prefix + "aesu_top";
}
@Override
public String getBottom() {
return prefix + "aesu_side";
return prefix + "aesu_bottom";
}
}

View file

@ -63,12 +63,12 @@ public class BlockIDSU extends BlockMachineBase implements IAdvancedRotationText
@Override
public String getTop(boolean isActive) {
return prefix + "idsu_side";
return prefix + "idsu_top";
}
@Override
public String getBottom(boolean isActive) {
return prefix + "idsu_side";
return prefix + "idsu_bottom";
}
}

View file

@ -50,12 +50,12 @@ public class BlockLESU extends BlockMachineBase implements IAdvancedRotationText
@Override
public String getTop(boolean isActive) {
return prefix + "lesu_side";
return prefix + "lesu_top";
}
@Override
public String getBottom(boolean isActive) {
return prefix + "lesu_side";
return prefix + "lesu_bottom";
}
}

View file

@ -23,7 +23,7 @@ public class BlockMFSU extends BlockBatBox {
@Override
public String getFrontOff() {
return prefix + "mfsubatbox_front";
return prefix + "mfsu_front";
}
@Override