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

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Won't this be 200? making it every 10 seconds. Because 48 was define as 480 in config

Copy link
Copy Markdown
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm confused, a value of 48 here should map 1:1 to a value of 48 in the config. That seems to be how it is on my machine at least...

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I must of added an extra 0 to my config at some point. Ignore me

Copy link
Copy Markdown
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ah np!

Original file line number Diff line number Diff line change
Expand Up @@ -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();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public void onTick()
{
((PipeFlowItems)pipe.getFlow()).tryExtractItems(1, EnumFacing.UP, null, StackFilter.ALL, false);
}

ticksSincePull = 0;
}
}

Expand Down