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;