From 76ad9962d793d705bb3350b70f32b9b5cf5d1ba8 Mon Sep 17 00:00:00 2001 From: abcdefg30 Date: Mon, 7 Oct 2019 15:27:56 +0200 Subject: [PATCH] Split off a new UpdatePath for changes not going into prep-1908 --- OpenRA.Mods.Common/UpdateRules/UpdatePath.cs | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/OpenRA.Mods.Common/UpdateRules/UpdatePath.cs b/OpenRA.Mods.Common/UpdateRules/UpdatePath.cs index f223452122..5031f54bfd 100644 --- a/OpenRA.Mods.Common/UpdateRules/UpdatePath.cs +++ b/OpenRA.Mods.Common/UpdateRules/UpdatePath.cs @@ -115,9 +115,9 @@ namespace OpenRA.Mods.Common.UpdateRules new RemoveAttackSuicides(), }), - new UpdatePath("release-20190314", new UpdateRule[] + new UpdatePath("release-20190314", "playtest-20190825", new UpdateRule[] { - // Bleed only changes here + // Prep only changes here new MultipleDeploySounds(), new RemoveSimpleBeacon(), new MakeMobilePausableConditional(), @@ -134,7 +134,9 @@ namespace OpenRA.Mods.Common.UpdateRules new AddAircraftIdleBehavior(), new RenameSearchRadius(), new RemoveMoveIntoWorldFromExit(), - }) + }), + + new UpdatePath("playtest-20190825", new UpdateRule[0]) }; public static IEnumerable FromSource(ObjectCreator objectCreator, string source, bool chain = true)