From 5782dde1c788688a2688209c7f7f24cd6397eec7 Mon Sep 17 00:00:00 2001 From: tovl Date: Sat, 23 Mar 2019 14:46:10 +0100 Subject: [PATCH] Remove ISync from AttackMove. --- OpenRA.Mods.Common/Traits/AttackMove.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OpenRA.Mods.Common/Traits/AttackMove.cs b/OpenRA.Mods.Common/Traits/AttackMove.cs index 44a28ab3fd..59f8854479 100644 --- a/OpenRA.Mods.Common/Traits/AttackMove.cs +++ b/OpenRA.Mods.Common/Traits/AttackMove.cs @@ -38,7 +38,7 @@ namespace OpenRA.Mods.Common.Traits public object Create(ActorInitializer init) { return new AttackMove(init.Self, this); } } - class AttackMove : INotifyCreated, ITick, IResolveOrder, IOrderVoice, ISync + class AttackMove : INotifyCreated, ITick, IResolveOrder, IOrderVoice { public readonly AttackMoveInfo Info; readonly IMove move;