From ab7737302b2e1368dde7a4b9f7ad6ce2866b0303 Mon Sep 17 00:00:00 2001 From: Chris Forbes Date: Thu, 5 Nov 2009 22:21:36 +1300 Subject: [PATCH] fixing trees breaking our replay --- OpenRa.Game/Actor.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/OpenRa.Game/Actor.cs b/OpenRa.Game/Actor.cs index 9c6890cc29..94976b2067 100755 --- a/OpenRa.Game/Actor.cs +++ b/OpenRa.Game/Actor.cs @@ -47,6 +47,7 @@ namespace OpenRa.Game public Actor( TreeReference tree, TreeCache treeRenderer ) { + ActorID = 0xffffffff; Location = new int2( tree.Location ); traits.Add( new Traits.Tree( treeRenderer.GetImage( tree.Image ) ) ); }