diff --git a/SQF/dayz_code/actions/player_buildVanilla.sqf b/SQF/dayz_code/actions/player_buildVanilla.sqf index c4ec31dc5..9a10ae0c7 100644 --- a/SQF/dayz_code/actions/player_buildVanilla.sqf +++ b/SQF/dayz_code/actions/player_buildVanilla.sqf @@ -332,8 +332,11 @@ while {dayz_actionInProgress and Dayz_constructionContext select 4} do { _object setPosATL _position; }; - //Check collisions - call _checkBuildingCollision; + //Need to add config based bypass checks array. + if (!_isCollisionBypass) then { + // check now that ghost is not colliding + call _checkBuildingCollision; + }; // try to dock a beam from current ghost to another beams nearby call _checkBeam2Magnet;