Add an update rule to remove 'yes' and 'no'

This commit is contained in:
abcdefg30
2019-10-07 15:28:47 +02:00
committed by reaperrr
parent 76ad9962d7
commit e9020048fb
2 changed files with 66 additions and 1 deletions

View File

@@ -136,7 +136,11 @@ namespace OpenRA.Mods.Common.UpdateRules
new RemoveMoveIntoWorldFromExit(),
}),
new UpdatePath("playtest-20190825", new UpdateRule[0])
new UpdatePath("playtest-20190825", new UpdateRule[]
{
// Bleed only changes here
new RemoveYesNo(),
})
};
public static IEnumerable<UpdateRule> FromSource(ObjectCreator objectCreator, string source, bool chain = true)