Skip to content

Commit

Permalink
fix: theurgy recipe page network sync
Browse files Browse the repository at this point in the history
  • Loading branch information
klikli-dev committed Feb 28, 2024
1 parent 81806e7 commit 67c7192
Show file tree
Hide file tree
Showing 5 changed files with 0 additions and 28 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -95,9 +95,4 @@ protected ItemStack getRecipeOutput(Level level, RecipeHolder<AccumulationRecipe
return ItemStack.EMPTY;
}

@Override
public void toNetwork(FriendlyByteBuf buffer) {
super.toNetwork(buffer);
buffer.writeUtf(this.anchor);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,4 @@ public ResourceLocation getType() {
return TheurgyModonomiconConstants.Page.CALCINATION_RECIPE;
}


@Override
public void toNetwork(FriendlyByteBuf buffer) {
super.toNetwork(buffer);
buffer.writeUtf(this.anchor);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,4 @@ public ResourceLocation getType() {
return TheurgyModonomiconConstants.Page.DISTILLATION_RECIPE;
}

@Override
public void toNetwork(FriendlyByteBuf buffer) {
super.toNetwork(buffer);
buffer.writeUtf(this.anchor);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,4 @@ public ResourceLocation getType() {
return TheurgyModonomiconConstants.Page.INCUBATION_RECIPE;
}


@Override
public void toNetwork(FriendlyByteBuf buffer) {
super.toNetwork(buffer);
buffer.writeUtf(this.anchor);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,4 @@ public static BookLiquefactionRecipePage fromNetwork(FriendlyByteBuf buffer) {
public ResourceLocation getType() {
return TheurgyModonomiconConstants.Page.LIQUEFACTION_RECIPE;
}

@Override
public void toNetwork(FriendlyByteBuf buffer) {
super.toNetwork(buffer);
buffer.writeUtf(this.anchor);
}
}

0 comments on commit 67c7192

Please sign in to comment.