Fix Jumpjet default HeightOffset

Jumpjet CruiseHeight in TS was 500, roughly equivalent to
3.9 cells in OpenRA.
This commit is contained in:
reaperrr
2019-05-01 23:31:46 +02:00
committed by reaperrr
parent 2953cbd9f1
commit 83b4e448c8

View File

@@ -20,7 +20,7 @@ namespace OpenRA.Mods.Common.Traits
public readonly string TerrainType = "Jumpjet";
[Desc("Height offset relative to the smoothed terrain for movement.")]
public readonly WDist HeightOffset = new WDist(2304);
public readonly WDist HeightOffset = new WDist(3992);
[Desc("Cell radius for smoothing adjacent cell heights.")]
public readonly int SmoothingRadius = 2;