-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Adds packager cycle config #8577
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: mc1.20.1/dev
Are you sure you want to change the base?
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -9,6 +9,7 @@ public class CLogistics extends ConfigBase { | |
| public final ConfigInt psiTimeout = i(60, 1, "psiTimeout", Comments.psiTimeout); | ||
| public final ConfigInt mechanicalArmRange = i(5, 1, "mechanicalArmRange", Comments.mechanicalArmRange); | ||
| public final ConfigInt packagePortRange = i(5, 1, "packagePortRange", Comments.packagePortRange); | ||
| public final ConfigInt packagePackCycle = i(20, 0, "packagePackCycle", Comments.packagePackCycle); | ||
|
||
| public final ConfigInt linkRange = i(256, 1, "linkRange", Comments.linkRange); | ||
| public final ConfigInt displayLinkRange = i(64, 1, "displayLinkRange", Comments.displayLinkRange); | ||
| public final ConfigInt vaultCapacity = i(20, 1, 2048, "vaultCapacity", Comments.vaultCapacity); | ||
|
|
@@ -32,6 +33,7 @@ private static class Comments { | |
| "The amount of ticks a portable storage interface waits for transfers until letting contraptions move along."; | ||
| static String mechanicalArmRange = "Maximum distance in blocks a Mechanical Arm can reach across."; | ||
| static String packagePortRange = "Maximum distance in blocks a Package Port can be placed at from its target."; | ||
| static String packagePackCycle = "The amount of ticks the packager waits to pack the next package"; | ||
| static String vaultCapacity = "The total amount of stacks a vault can hold per block in size."; | ||
| static String chainConveyorCapacity = "The amount of packages a chain conveyor can carry at a time."; | ||
| static String brassTunnelTimer = "The amount of ticks a brass tunnel waits between distributions."; | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This config value is only applied after the game is reloaded, when used this way.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
CYCLE is also used outside PackagerBlockEntity.java, which this PR doesn't account for.