Make RecipeBookAdd#Entry public

This commit is contained in:
Camotoy 2024-10-19 22:13:03 -04:00
parent f4c07f23b5
commit 748ab283bf
No known key found for this signature in database
GPG key ID: 7EEFB66FE798081F

View file

@ -60,6 +60,6 @@ public class ClientboundRecipeBookAddPacket implements MinecraftPacket {
out.writeBoolean(this.replace);
}
private record Entry(RecipeDisplayEntry contents, boolean notification, boolean highlight) {
public record Entry(RecipeDisplayEntry contents, boolean notification, boolean highlight) {
}
}