Skip to content

Commit 03fede8

Browse files
committed
Fixed a composter duplication glitch!
Signed-off-by: Flytre <[email protected]>
1 parent bf150c7 commit 03fede8

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

build.gradle

+1-2
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,12 @@ repositories {
1616
}
1717

1818
dependencies {
19-
//to change the versions see the gradle.properties file
2019
minecraft "com.mojang:minecraft:${project.minecraft_version}"
2120
mappings "net.fabricmc:yarn:${project.yarn_mappings}:v2"
2221
modImplementation "net.fabricmc:fabric-loader:${project.loader_version}"
2322

2423
modImplementation("net.fabricmc.fabric-api:fabric-api:${project.fabric_version}")
25-
modImplementation "com.github.Flytre:FlytreLib:${project.lib_version}"
24+
modImplementation("com.github.Flytre.FlytreLib:flytre_lib-1.18.1-${project.lib_version}-fabric:${project.lib_hash}")
2625

2726

2827
modCompileOnly "me.shedaniel:RoughlyEnoughItems-api-fabric:${project.rei_version}"

gradle.properties

+3-2
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,12 @@ minecraft_version=1.18.1
66
yarn_mappings=1.18.1+build.7
77
loader_version=0.12.12
88
# Mod Properties
9-
mod_version=1.6.0
9+
mod_version=1.6.1
1010
maven_group=net.flytre
1111
archives_base_name=pipe-1.18
1212
# Dependencies
1313
# check this on https://modmuss50.me/fabric.html
1414
fabric_version=0.44.0+1.18
15-
lib_version=45b37b0
15+
lib_version=1.6.5
16+
lib_hash=e3d3f50
1617
rei_version=7.1.356

src/main/java/net/flytre/pipe/pipe/PipeEntity.java

+1
Original file line numberDiff line numberDiff line change
@@ -495,6 +495,7 @@ private void addToQueue() {
495495
if (result != null) {
496496
items.add(new TimedPipeResult(result, ticksPerOperation * 3 / 2));
497497
stack.decrement(1);
498+
out.markDirty();
498499
markDirty();
499500
if (result.getLength() < Pipe.PIPE_CONFIG.getConfig().maxRenderPipeLength)
500501
needsSync = true;

0 commit comments

Comments
 (0)