Skip to content

Commit

Permalink
Fix Texture toBuilder()
Browse files Browse the repository at this point in the history
  • Loading branch information
MelonHell committed Jan 1, 2024
1 parent 1bc8834 commit 3969207
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion api/src/main/java/team/unnamed/creative/texture/Texture.java
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,8 @@ public interface Texture extends ResourcePackPart, Keyed, Examinable, Metadatabl
default @NotNull Builder toBuilder() {
return builder()
.key(this.key())
.data(this.data());
.data(this.data())
.meta(this.meta());
}

/**
Expand Down

0 comments on commit 3969207

Please sign in to comment.