mirror of
https://github.com/Creators-of-Create/Create.git
synced 2024-12-14 20:43:43 +01:00
Implement #4597
This commit is contained in:
parent
bd24fead0f
commit
81babd3a39
2 changed files with 4 additions and 2 deletions
|
@ -176,6 +176,7 @@ public class GantryContraptionEntity extends AbstractContraptionEntity {
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
@OnlyIn(Dist.CLIENT)
|
||||||
public void applyLocalTransforms(PoseStack matrixStack, float partialTicks) { }
|
public void applyLocalTransforms(PoseStack matrixStack, float partialTicks) { }
|
||||||
|
|
||||||
public void updateClientMotion() {
|
public void updateClientMotion() {
|
||||||
|
|
|
@ -10,7 +10,8 @@ public class CLogistics extends ConfigBase {
|
||||||
public final ConfigInt linkRange = i(256, 1, "linkRange", Comments.linkRange);
|
public final ConfigInt linkRange = i(256, 1, "linkRange", Comments.linkRange);
|
||||||
public final ConfigInt displayLinkRange = i(64, 1, "displayLinkRange", Comments.displayLinkRange);
|
public final ConfigInt displayLinkRange = i(64, 1, "displayLinkRange", Comments.displayLinkRange);
|
||||||
public final ConfigInt vaultCapacity = i(20, 1, "vaultCapacity", Comments.vaultCapacity);
|
public final ConfigInt vaultCapacity = i(20, 1, "vaultCapacity", Comments.vaultCapacity);
|
||||||
public final ConfigInt brassTunnelTimer = i(10,1,10, "brassTunnelTimer",Comments.brassTunnelTimer);
|
public final ConfigInt brassTunnelTimer = i(10, 1, 10, "brassTunnelTimer", Comments.brassTunnelTimer);
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public String getName() {
|
public String getName() {
|
||||||
return "logistics";
|
return "logistics";
|
||||||
|
@ -28,7 +29,7 @@ public class CLogistics extends ConfigBase {
|
||||||
"The amount of ticks a portable storage interface waits for transfers until letting contraptions move along.";
|
"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 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 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";
|
static String brassTunnelTimer = "The amount of ticks a brass tunnel waits between distributions.";
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue