From 653ca8cb2e8d8601df6156c42816ba63c917241e Mon Sep 17 00:00:00 2001 From: Jamie Smith Date: Sat, 27 Sep 2025 11:08:42 -0700 Subject: [PATCH 1/2] Fix gravity feed pipe tick count never resetting --- .../additionalpipes/pipes/PipeBehaviorGravityFeed.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/buildcraft/additionalpipes/pipes/PipeBehaviorGravityFeed.java b/src/main/java/buildcraft/additionalpipes/pipes/PipeBehaviorGravityFeed.java index ff342b70..ba46af68 100644 --- a/src/main/java/buildcraft/additionalpipes/pipes/PipeBehaviorGravityFeed.java +++ b/src/main/java/buildcraft/additionalpipes/pipes/PipeBehaviorGravityFeed.java @@ -48,7 +48,7 @@ public void onTick() { ((PipeFlowItems)pipe.getFlow()).tryExtractItems(1, EnumFacing.UP, null, StackFilter.ALL, false); } - + ticksSincePull = 0; } } From 110f940df68f14bea10a9c064344e5a525285f16 Mon Sep 17 00:00:00 2001 From: Jamie Smith Date: Sat, 27 Sep 2025 12:22:10 -0700 Subject: [PATCH 2/2] Buff default gravity pipe speed --- src/main/java/buildcraft/additionalpipes/APConfiguration.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/buildcraft/additionalpipes/APConfiguration.java b/src/main/java/buildcraft/additionalpipes/APConfiguration.java index deace9b9..e55d3012 100644 --- a/src/main/java/buildcraft/additionalpipes/APConfiguration.java +++ b/src/main/java/buildcraft/additionalpipes/APConfiguration.java @@ -72,7 +72,7 @@ else if(powerTransmittanceCfg < 0.0) waterPerTickProperty.setComment("Amount of water the Water Pump Pipe produces in millibuckets/tick"); waterPumpWaterPerTick = waterPerTickProperty.getInt(); - Property gpPullRateProperty = config.get(Configuration.CATEGORY_GENERAL, "gravityFeedPipeTicksPerPull", 48); + Property gpPullRateProperty = config.get(Configuration.CATEGORY_GENERAL, "gravityFeedPipeTicksPerPull", 20); gpPullRateProperty.setComment("How many ticks the Gravity Feed Pipe needs to extract an item"); gravityFeedPipeTicksPerPull = gpPullRateProperty.getInt();