From 43bb75c1357b822e2aca4322739eef59d9515c56 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matthias=20Mail=C3=A4nder?= Date: Thu, 21 Mar 2013 18:13:18 +0100 Subject: [PATCH] sync carpet bombing --- OpenRA.Mods.RA/CarpetBomb.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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; }