Moved/Replaced Textures
This commit is contained in:
parent
8191e1eaaa
commit
60bcbd10ad
493 changed files with 22 additions and 20 deletions
|
@ -66,7 +66,7 @@ public class BlockOre extends Block{
|
|||
|
||||
for (int i = 0; i < types.length; i++)
|
||||
{
|
||||
textures[i] = iconRegister.registerIcon("techreborn:" + "ore"+types[i]);
|
||||
textures[i] = iconRegister.registerIcon("techreborn:" + "ore/ore"+types[i]);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -41,8 +41,8 @@ public class BlockQuantumChest extends BlockContainer {
|
|||
@Override
|
||||
@SideOnly(Side.CLIENT)
|
||||
public void registerBlockIcons(IIconRegister icon) {
|
||||
top = icon.registerIcon("techreborn:quantum_top");
|
||||
other = icon.registerIcon("techreborn:quantum_chest");
|
||||
top = icon.registerIcon("techreborn:machine/quantum_top");
|
||||
other = icon.registerIcon("techreborn:machine/quantum_chest");
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
@ -40,8 +40,8 @@ public class BlockQuantumTank extends BlockContainer {
|
|||
@Override
|
||||
@SideOnly(Side.CLIENT)
|
||||
public void registerBlockIcons(IIconRegister icon) {
|
||||
top = icon.registerIcon("techreborn:quantum_top");
|
||||
other = icon.registerIcon("techreborn:ThermalGenerator_other");
|
||||
top = icon.registerIcon("techreborn:machine/quantum_top");
|
||||
other = icon.registerIcon("techreborn:machine/ThermalGenerator_other");
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
@ -47,8 +47,8 @@ public class BlockRollingMachine extends BlockContainer{
|
|||
@SideOnly(Side.CLIENT)
|
||||
public void registerBlockIcons(IIconRegister icon)
|
||||
{
|
||||
top = icon.registerIcon("techreborn:rollingmachine_top");
|
||||
other = icon.registerIcon("techreborn:rollingmachine_side");
|
||||
top = icon.registerIcon("techreborn:machine/rollingmachine_top");
|
||||
other = icon.registerIcon("techreborn:machine/rollingmachine_side");
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
@ -64,7 +64,7 @@ public class BlockStorage extends Block{
|
|||
|
||||
for (int i = 0; i < types.length; i++)
|
||||
{
|
||||
textures[i] = iconRegister.registerIcon("techreborn:" + "storage"+types[i]);
|
||||
textures[i] = iconRegister.registerIcon("techreborn:" + "storage/storage"+types[i]);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -33,8 +33,8 @@ public class BlockThermalGenerator extends BlockContainer {
|
|||
@Override
|
||||
@SideOnly(Side.CLIENT)
|
||||
public void registerBlockIcons(IIconRegister icon) {
|
||||
top = icon.registerIcon("techreborn:ThermalGenerator_top");
|
||||
other = icon.registerIcon("techreborn:ThermalGenerator_other");
|
||||
top = icon.registerIcon("techreborn:machine/ThermalGenerator_top");
|
||||
other = icon.registerIcon("techreborn:machine/ThermalGenerator_other");
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue