diff --git a/build.gradle.kts b/build.gradle.kts index 32e1b8fe1..abc4f45a9 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -154,6 +154,7 @@ dependencies { // runtimeOnly(fg.deobf("ru.dbotthepony:particle-collider:0.4.5")) implementation(fg.deobf("curse.maven:jade-324717:${jade_id}")) + implementation(fg.deobf("curse.maven:spit-it-out-857141:4888738")) //runtimeOnly(fg.deobf("curse.maven:configured-457570:${configured_id}")) compileOnly(fg.deobf("curse.maven:resourceful-lib-570073:${resourceful_lib_id}")) diff --git a/src/main/kotlin/ru/dbotthepony/mc/otm/data/RecipeWrapperCodec.kt b/src/main/kotlin/ru/dbotthepony/mc/otm/data/RecipeWrapperCodec.kt index e9f950796..6f25b5ff1 100644 --- a/src/main/kotlin/ru/dbotthepony/mc/otm/data/RecipeWrapperCodec.kt +++ b/src/main/kotlin/ru/dbotthepony/mc/otm/data/RecipeWrapperCodec.kt @@ -21,7 +21,6 @@ fun > RecipeSerializer.codec(context: Codec2RecipeSerializer<*> val buffer = FriendlyByteBuf(UnpooledByteBufAllocator.DEFAULT.heapBuffer()) buffer.writeResourceLocation(input.recipe.id) toNetwork(buffer, input.recipe) - buffer.writerIndex(0) buffer.readerIndex(0) val array = ByteBuffer.allocate(buffer.readableBytes()) buffer.readBytes(array) @@ -38,7 +37,6 @@ fun > RecipeSerializer.codec(context: Codec2RecipeSerializer<*> it.position(0) val buffer = FriendlyByteBuf(UnpooledByteBufAllocator.DEFAULT.heapBuffer()) buffer.writeBytes(it) - buffer.writerIndex(0) buffer.readerIndex(0) Pair(RecipePair(fromNetwork(buffer.readResourceLocation(), buffer)!!, JsonObject()), ops.empty()) }