Remove LaysTerrain

This commit is contained in:
abcdefg30
2020-11-14 15:19:47 +01:00
committed by Matthias Mailänder
parent 99ec119ffd
commit d6c0926856
3 changed files with 36 additions and 102 deletions

View File

@@ -0,0 +1,35 @@
#region Copyright & License Information
/*
* Copyright 2007-2020 The OpenRA Developers (see AUTHORS)
* This file is part of OpenRA, which is free software. It is made
* available to you under the terms of the GNU General Public License
* as published by the Free Software Foundation, either version 3 of
* the License, or (at your option) any later version. For more
* information, see COPYING.
*/
#endregion
using System.Collections.Generic;
namespace OpenRA.Mods.Common.UpdateRules.Rules
{
public class RemoveLaysTerrain : UpdateRule
{
public override string Name { get { return "'LaysTerrain' has been removed in favor of the new 'D2kBuilding' trait."; } }
public override string Description
{
get
{
return "'LaysTerrain' was removed.";
}
}
public override IEnumerable<string> UpdateActorNode(ModData modData, MiniYamlNode actorNode)
{
if (actorNode.RemoveNodes("LaysTerrain") > 0)
yield return "'LaysTerrain' was removed from {0} ({1}) without replacement.\n".F(actorNode.Key, actorNode.Location.Filename);
yield break;
}
}
}

View File

@@ -77,6 +77,7 @@ namespace OpenRA.Mods.Common.UpdateRules
new RenameSmudgeSmokeFields(),
new RenameCircleContrast(),
new SplitDamagedByTerrain(),
new RemoveLaysTerrain(),
new RemoveBuildingInfluence(),
})
};