Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ minecraft_version=1.21.1
# as they do not follow standard versioning conventions.
minecraft_version_range=[1.21.1, 1.22)
# The Neo version must agree with the Minecraft version to get a valid artifact
neo_version=21.1.138
neo_version=21.1.152
# The Neo version range can use any version of Neo as bounds
neo_version_range=[21.1.0,)
# The loader version range can only use the major version of FML as bounds
Expand All @@ -35,9 +35,9 @@ mod_license=All Rights Reserved

mod_version=1.21.1_1.3b

create_version = 6.0.4-55
create_version = 6.0.6-106
flywheel_version = 1.0.2
ponder_version = 1.0.46
ponder_version = 1.0.59
registrate_version = MC1.21-1.3.0+62
jei_version=19.10.0.126

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ public void replaceTick(CallbackInfo ci){
boolean sendUpdate = false;
for (PipeConnection connection : connections) {
sendUpdate |= connection.flipFlowsIfPressureReversed();
connection.manageSource(world, pos);
connection.manageSource(world, pos, blockEntity);
}
if (sendUpdate)
blockEntity.notifyUpdate();
Expand Down