mirror of
https://github.com/Creators-of-Create/Create.git
synced 2025-02-05 01:45:00 +01:00
brass tunnel distribution speed config added
This commit is contained in:
parent
5a9f0443d9
commit
0347038c9a
2 changed files with 11 additions and 10 deletions
|
@ -174,7 +174,7 @@ public class BrassTunnelTileEntity extends BeltTunnelTileEntity implements IHave
|
|||
return;
|
||||
|
||||
if (selectionMode.get() != SelectionMode.SYNCHRONIZE || syncedOutputActive) {
|
||||
distributionProgress = 10;
|
||||
distributionProgress = AllConfigs.SERVER.logistics.brassTunnelTimer.get();
|
||||
sendData();
|
||||
}
|
||||
return;
|
||||
|
|
|
@ -10,7 +10,7 @@ public class CLogistics extends ConfigBase {
|
|||
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, "vaultCapacity", Comments.vaultCapacity);
|
||||
|
||||
public final ConfigInt brassTunnelTimer = i(1,10,10, "brassTunnelTimer",Comments.brassTunnelTimer);
|
||||
@Override
|
||||
public String getName() {
|
||||
return "logistics";
|
||||
|
@ -28,6 +28,7 @@ public class CLogistics extends ConfigBase {
|
|||
"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 vaultCapacity = "The total amount of stacks a vault can hold per block in size.";
|
||||
static String brassTunnelTimer = "The amount of ticks a brass tunnel waits between distributions";
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue