Remove order latency checks from BaseBuilderQueueManager.

This commit is contained in:
Paul Chote
2021-08-24 14:03:35 +01:00
committed by teinarss
parent 8a587ddeab
commit 52b597d5d2
2 changed files with 3 additions and 4 deletions

View File

@@ -78,8 +78,8 @@ namespace OpenRA.Mods.Common.Traits
public readonly int StructureProductionInactiveDelay = 125;
[Desc("Additional delay (in ticks) added between structure production checks when actively building things.",
"Note: The total delay is gamespeed OrderLatency x 4 + this + StructureProductionRandomBonusDelay.")]
public readonly int StructureProductionActiveDelay = 0;
"Note: this should be at least as large as the typical order latency to avoid duplicated build choices.")]
public readonly int StructureProductionActiveDelay = 25;
[Desc("A random delay (in ticks) of up to this is added to active/inactive production delays.")]
public readonly int StructureProductionRandomBonusDelay = 10;