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 e97edfb commit 16be310
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 @@ -93,9 +93,4 @@ protected ItemStack getRecipeOutput(Level level, AccumulationRecipe recipe) {
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 @@ -43,10 +43,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 @@ -43,9 +43,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 @@ -43,10 +43,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 @@ -42,10 +42,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 16be310

Please sign in to comment.