Merge pull request #42 from CPearl0/fix-networkio

Fix network IO bug
This commit is contained in:
thedarkcolour 2024-01-29 10:01:41 -08:00 committed by GitHub
commit 6e84b62492
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -112,6 +112,7 @@ public class BarrelFluidMixingRecipe implements Recipe<Container> {
buffer.writeVarInt(recipe.baseFluidAmount);
buffer.writeRegistryId(ForgeRegistries.FLUIDS, recipe.additiveFluid);
buffer.writeRegistryId(ForgeRegistries.ITEMS, recipe.result);
buffer.writeBoolean(recipe.consumesAdditive);
}
@Override