Skip to content

Commit

Permalink
修复命名时一直渲染按钮反向
Browse files Browse the repository at this point in the history
  • Loading branch information
Crystal1921 committed Nov 4, 2024
1 parent 941fd49 commit aad465f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ public void render(GuiGraphics graphics, int mouseX, int mouseY, float partialTi
for (Renderable renderable : this.renderables) {
renderable.render(graphics, mouseX, mouseY, partialTicks);
}
if (alwaysShow) {
if (!alwaysShow) {
graphics.blitSprite(CANCEL_SPRITE, middleX + 82, middleY - 26, 18, 18);
} else {
graphics.blitSprite(CONFIRM_SPRITE, middleX + 82, middleY - 26, 18, 18);
Expand Down

0 comments on commit aad465f

Please sign in to comment.