Skip to content
This repository has been archived by the owner on Aug 28, 2024. It is now read-only.

Commit

Permalink
Added a change that was not added
Browse files Browse the repository at this point in the history
`renderQAName` is now in `GameSettings` class
  • Loading branch information
5GameMaker authored Jul 8, 2022
1 parent 966b52a commit fafd4c7
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ public RenderQANameButton(GameSettings settings) {

@Override
public String getText() {
return "Show QA build name: " + (settings.mc.ingameGUI.renderQAName ? "Yes" : "No");
return "Show QA build name: " + (settings.renderQAName ? "Yes" : "No");
}

@Override
public void run(GuiButton button, GuiScreen parent) {
settings.mc.ingameGUI.renderQAName = !settings.mc.ingameGUI.renderQAName;
settings.renderQAName = !settings.renderQAName;
}
}

0 comments on commit fafd4c7

Please sign in to comment.