Renamed WaterPaletteRotation to RotationPaletteEffect

This commit is contained in:
reaperrr
2015-08-18 22:14:49 +02:00
parent ca055eb7bb
commit 96c7d4345e
5 changed files with 19 additions and 11 deletions

View File

@@ -2051,6 +2051,13 @@ namespace OpenRA.Mods.Common.UtilityCommands
}
}
// WaterPaletteRotation renamed to RotationPaletteEffect
if (engineVersion < 20150903)
{
if (depth == 1 && node.Key == "WaterPaletteRotation")
node.Key = "RotationPaletteEffect";
}
UpgradeActorRules(engineVersion, ref node.Value.Nodes, node, depth + 1);
}
}