mirror of
https://github.com/Ellpeck/ActuallyAdditions.git
synced 2024-12-04 20:18:34 +01:00
Fixed coal generator background rendering twice. Closes #1462
This commit is contained in:
parent
4bfa6deb2d
commit
bb57f30912
2 changed files with 1 additions and 1 deletions
|
@ -18,6 +18,7 @@
|
||||||
* Fixed the Farmer not making sounds when planting.
|
* Fixed the Farmer not making sounds when planting.
|
||||||
* Overhauled AA crop drop tables to be more in line with 1.12 numbers.
|
* Overhauled AA crop drop tables to be more in line with 1.12 numbers.
|
||||||
* Re-added native right click harvesting to AA crops.
|
* Re-added native right click harvesting to AA crops.
|
||||||
|
* Fixed coal generator gui having a extra dark background.
|
||||||
|
|
||||||
# 1.3.10+mc1.21.1
|
# 1.3.10+mc1.21.1
|
||||||
* Fixed Fluid placer not being harvestable.
|
* Fixed Fluid placer not being harvestable.
|
||||||
|
|
|
@ -43,7 +43,6 @@ public class GuiCoalGenerator extends AAScreen<ContainerCoalGenerator> {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void render(@Nonnull GuiGraphics guiGraphics, int mouseX, int mouseY, float partialTicks) {
|
public void render(@Nonnull GuiGraphics guiGraphics, int mouseX, int mouseY, float partialTicks) {
|
||||||
renderBackground(guiGraphics, mouseX, mouseY, partialTicks);
|
|
||||||
super.render(guiGraphics, mouseX, mouseY, partialTicks);
|
super.render(guiGraphics, mouseX, mouseY, partialTicks);
|
||||||
this.energy.render(guiGraphics, mouseX, mouseY);
|
this.energy.render(guiGraphics, mouseX, mouseY);
|
||||||
renderTooltip(guiGraphics, mouseX, mouseY);
|
renderTooltip(guiGraphics, mouseX, mouseY);
|
||||||
|
|
Loading…
Reference in a new issue