Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
serenibyss committed Dec 7, 2023
1 parent 0821c56 commit 75b31cf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/gregtech/api/mui/GTThemes.java
Original file line number Diff line number Diff line change
Expand Up @@ -98,13 +98,13 @@ private void onReload() {
builder.add("itemSlot", new JsonBuilder()
.add("background", new JsonBuilder()
.add("type", "texture")
.add("id", button)));
.add("id", itemSlot)));
}
if (fluidSlot != null) {
builder.add("fluidSlot", new JsonBuilder()
.add("background", new JsonBuilder()
.add("type", "texture")
.add("id", button)));
.add("id", fluidSlot)));
}
if (color.get() >= 0) {
builder.add("color", color.get());
Expand Down

0 comments on commit 75b31cf

Please sign in to comment.