Swap the default value for FlyOffMap.Interruptible. The common case (scripted aircraft) don't want to be interruptible. Fixes badr desync caused by the mono 2.6.7 compiler dropping initializers for bools that default to true.

This commit is contained in:
Paul Chote
2011-06-21 14:19:11 +12:00
parent 74b2b36a40
commit af4093f380
5 changed files with 6 additions and 6 deletions

View File

@@ -52,7 +52,7 @@ namespace OpenRA.Mods.RA
camera.QueueActivity(new Wait(25 * (Info as SpyPlanePowerInfo).RevealTime));
camera.QueueActivity(new RemoveSelf());
})));
plane.QueueActivity(new FlyOffMap { Interruptible = false });
plane.QueueActivity(new FlyOffMap());
plane.QueueActivity(new RemoveSelf());
}
}