Replace * 25 in internal tick defaults with actual total

While the idea behind it is understandable,
this was inconsistent with the bulk of other defaults.
This commit is contained in:
reaperrr
2021-03-21 00:11:12 +01:00
committed by teinarss
parent 52d39db84a
commit e3fd54e147
9 changed files with 9 additions and 9 deletions

View File

@@ -22,7 +22,7 @@ namespace OpenRA.Mods.Common.Traits
public readonly int PanicChance = 100;
[Desc("How long (in ticks) the actor should panic for.")]
public readonly int PanicLength = 25 * 10;
public readonly int PanicLength = 250;
[Desc("Panic movement speed as a percentage of the normal speed.")]
public readonly int PanicSpeedModifier = 200;