Skip to content

Commit b1458a4

Browse files
Merge pull request #7 from meawplex-plus/1.21.1-released
Fix crashes rendering pipes in 6.0.6
2 parents 630b984 + c41a0d4 commit b1458a4

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

gradle.properties

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ minecraft_version=1.21.1
1818
# as they do not follow standard versioning conventions.
1919
minecraft_version_range=[1.21.1, 1.22)
2020
# The Neo version must agree with the Minecraft version to get a valid artifact
21-
neo_version=21.1.138
21+
neo_version=21.1.152
2222
# The Neo version range can use any version of Neo as bounds
2323
neo_version_range=[21.1.0,)
2424
# The loader version range can only use the major version of FML as bounds
@@ -35,9 +35,9 @@ mod_license=All Rights Reserved
3535

3636
mod_version=1.21.1_1.3b
3737

38-
create_version = 6.0.4-55
38+
create_version = 6.0.6-106
3939
flywheel_version = 1.0.2
40-
ponder_version = 1.0.46
40+
ponder_version = 1.0.59
4141
registrate_version = MC1.21-1.3.0+62
4242
jei_version=19.10.0.126
4343

src/main/java/com/rae/crowns/mixin/FluidTransportBehaviourMixin.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ public void replaceTick(CallbackInfo ci){
6868
boolean sendUpdate = false;
6969
for (PipeConnection connection : connections) {
7070
sendUpdate |= connection.flipFlowsIfPressureReversed();
71-
connection.manageSource(world, pos);
71+
connection.manageSource(world, pos, blockEntity);
7272
}
7373
if (sendUpdate)
7474
blockEntity.notifyUpdate();

0 commit comments

Comments
 (0)