Skip to content

Commit 0772287

Browse files
committed
Fix fabric remapping conflict in dev
1 parent e4a41ff commit 0772287

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

Library/src/main/java/mezz/jei/library/plugins/vanilla/crafting/JeiShapedRecipe.java

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -75,10 +75,6 @@ public List<RecipeDisplay> display() {
7575
);
7676
}
7777

78-
public List<SlotDisplay> getDisplays() {
79-
return displays;
80-
}
81-
8278
@Override
8379
public boolean showNotification() {
8480
return false;
@@ -158,7 +154,7 @@ private static void toNetwork(RegistryFriendlyByteBuf buffer, JeiShapedRecipe re
158154
buffer.writeEnum(recipe.category);
159155
ShapedRecipePattern.STREAM_CODEC.encode(buffer, recipe.pattern);
160156

161-
List<SlotDisplay> displays = recipe.getDisplays();
157+
List<SlotDisplay> displays = recipe.displays;
162158
buffer.writeVarInt(displays.size());
163159
for (SlotDisplay display : displays) {
164160
SlotDisplay.STREAM_CODEC.encode(buffer, display);

0 commit comments

Comments
 (0)