From d1c20d6c72a0b1b021110f721d9f248a76b99367 Mon Sep 17 00:00:00 2001 From: Curtis Shmyr Date: Sun, 21 Oct 2012 14:55:25 -0600 Subject: [PATCH] Fix #2434 and #2442 --- OpenRA.Mods.RA/ChronoshiftDeploy.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OpenRA.Mods.RA/ChronoshiftDeploy.cs b/OpenRA.Mods.RA/ChronoshiftDeploy.cs index 4575d0ae68..4bd6a40e45 100644 --- a/OpenRA.Mods.RA/ChronoshiftDeploy.cs +++ b/OpenRA.Mods.RA/ChronoshiftDeploy.cs @@ -95,7 +95,7 @@ namespace OpenRA.Mods.RA var movement = self.TraitOrDefault(); if (chargeTick <= 0 // Can jump - && self.World.LocalPlayer.Shroud.IsExplored(xy) // Not in shroud + && self.World.LocalShroud.IsExplored(xy) // Not in shroud && movement.CanEnterCell(xy) // Can enter cell && (self.Location - xy).Length <= Info.JumpDistance) // Within jump range return true;