Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master-1.19-lts' into master-1.2…
Browse files Browse the repository at this point in the history
…0-lts
  • Loading branch information
rubensworks committed Jul 31, 2024
2 parents e16a529 + 6c07eef commit 1434541
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions resources/changelog/1.19.2-1.19.5.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
As always, don't forget to backup your world before updating!

Fixes:
* Fix getGuiTexture() not being used in ContainerScreenExtended

Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ protected int getBaseYSize() {

@Override
protected void renderBg(GuiGraphics guiGraphics, float f, int x, int y) {
guiGraphics.blit(texture, leftPos + offsetX, topPos + offsetY, 0, 0, imageWidth - 2 * offsetX, imageHeight - 2 * offsetY);
guiGraphics.blit(getGuiTexture(), leftPos + offsetX, topPos + offsetY, 0, 0, imageWidth - 2 * offsetX, imageHeight - 2 * offsetY);
}

@Override
Expand Down

0 comments on commit 1434541

Please sign in to comment.