Open geradeaus007 opened 2 months ago
The gauge texture when looking at an Energizing Rod is empty, regardless of actual energy level.
Place an Energizing Rod on an empty Energy Cell and one on a Creative/not empty Energy Cell Look at each Energizing Rod Witness the same texture
In EnergizingRodBlock.java the following piece of code has misconfigured width/height and start x/y positions.
Draw.gaugeH(x - 37, y - 79, 72, 16, 0, 9, ((EnergizingRodTile) te).getEnergy());
Line 171 Correct would be:
Draw.gaugeH(x - 37, y - 79, 0, 9, 72, 7, ((EnergizingRodTile) te).getEnergy());
I don't know my way around github. So I don't know how to properly reference code in a repository or make a pull request for this.
Version: (make sure you are on the latest version before reporting):
Issue description:
The gauge texture when looking at an Energizing Rod is empty, regardless of actual energy level.
Steps to reproduce:
Place an Energizing Rod on an empty Energy Cell and one on a Creative/not empty Energy Cell Look at each Energizing Rod Witness the same texture
Solution
In EnergizingRodBlock.java the following piece of code has misconfigured width/height and start x/y positions.
Line 171 Correct would be:
Other
I don't know my way around github. So I don't know how to properly reference code in a repository or make a pull request for this.