Fix lightning rod texture

This commit is contained in:
Prospector 2016-03-29 19:01:21 -07:00
parent 4af72aed00
commit 88fbcb1aaf
7 changed files with 4 additions and 4 deletions

View file

@ -20,24 +20,24 @@ public class BlockLightningRod extends BlockMachineBase implements IAdvancedRota
@Override
public String getFront(boolean isActive)
{
return prefix + "plasma_generator_side_off";
return isActive ? prefix + "lightning_rod_side_on" : prefix + "lightning_rod_side_off";
}
@Override
public String getSide(boolean isActive)
{
return prefix + "plasma_generator_side_off";
return isActive ? prefix + "lightning_rod_side_on" : prefix + "lightning_rod_side_off";
}
@Override
public String getTop(boolean isActive)
{
return prefix + "plasma_generator_side_off";
return isActive ? prefix + "lightning_rod_top_on" : prefix + "lightning_rod_top_off";
}
@Override
public String getBottom(boolean isActive)
{
return prefix + "plasma_generator_side_off";
return prefix + "generator_machine_bottom";
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 739 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 722 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 708 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 475 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 622 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 608 B