diff --git a/megamek/src/megamek/common/MoveStep.java b/megamek/src/megamek/common/MoveStep.java index acb100937a5..1b883977ffa 100644 --- a/megamek/src/megamek/common/MoveStep.java +++ b/megamek/src/megamek/common/MoveStep.java @@ -3806,7 +3806,7 @@ && isPavementStep() && entity.isLocationProhibited(dest, getElevation()) // QuadVees can still convert to vehicle mode in prohibited terrain, but cannot // leave && (type != MoveStepType.CONVERT_MODE) - && entity.isLocationProhibited(src, getElevation()) && !isPavementStep()) { + && entity.isLocationProhibited(src, srcEl) && !isPavementStep()) { return false; } if (type == MoveStepType.UP) {