Fix lightning rod texture
This commit is contained in:
parent
4af72aed00
commit
88fbcb1aaf
7 changed files with 4 additions and 4 deletions
|
@ -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 |
Loading…
Add table
Reference in a new issue