Fixed Warhead ValidTargets and InvalidTargets.

This commit is contained in:
UberWaffe
2014-08-05 16:46:33 +02:00
parent 0904b6a1a4
commit 390ca380bd
5 changed files with 85 additions and 42 deletions

View File

@@ -19,7 +19,7 @@ namespace OpenRA.GameRules
public abstract class Warhead
{
[Desc("What types of targets are affected.")]
public readonly string[] ValidTargets = { "Air", "Ground", "Water" };
public readonly string[] ValidTargets = { "Ground", "Water" };
[Desc("What types of targets are unaffected.", "Overrules ValidTargets.")]
public readonly string[] InvalidTargets = { };