Renamed WithHarvestAnimation to WithHarvestOverlay

This commit is contained in:
reaperrr
2015-06-23 20:15:57 +02:00
parent cd6c96db82
commit 1abe7ab2dc
5 changed files with 16 additions and 8 deletions

View File

@@ -1221,6 +1221,14 @@ namespace OpenRA.Mods.Common.UtilityCommands
}
}
// Removed RenderUnit
if (engineVersion < 20150704)
{
// Renamed WithHarvestAnimation to WithHarvestOverlay
if (node.Key == "WithHarvestAnimation")
node.Key = "WithHarvestOverlay";
}
UpgradeActorRules(engineVersion, ref node.Value.Nodes, node, depth + 1);
}
}