diff --git a/OpenRA.Mods.RA/CarpetBomb.cs b/OpenRA.Mods.RA/CarpetBomb.cs index a6162d66c7..e452477dc5 100644 --- a/OpenRA.Mods.RA/CarpetBomb.cs +++ b/OpenRA.Mods.RA/CarpetBomb.cs @@ -21,10 +21,10 @@ namespace OpenRA.Mods.RA public readonly int Range = 3; } - class CarpetBomb : ITick // todo: maybe integrate this better with the normal weapons system? + class CarpetBomb : ITick, ISync // todo: maybe integrate this better with the normal weapons system? { - CPos Target; - int dropDelay; + [Sync] CPos Target; + [Sync] int dropDelay; public void SetTarget(CPos targetCell) { Target = targetCell; }