From 20dab78c271967a856a3bda17b0d15fffe5e08fb Mon Sep 17 00:00:00 2001 From: "[VB]AWOL" Date: Mon, 13 Jan 2014 09:48:29 -0600 Subject: [PATCH] spawn calls need dummy input or error out --- SQF/dayz_code/actions/player_build.sqf | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/SQF/dayz_code/actions/player_build.sqf b/SQF/dayz_code/actions/player_build.sqf index afb3f36a3..98134a461 100644 --- a/SQF/dayz_code/actions/player_build.sqf +++ b/SQF/dayz_code/actions/player_build.sqf @@ -473,7 +473,9 @@ if (_hasrequireditem) then { cutText [format[localize "str_build_01",_text], "PLAIN DOWN"]; - if (_isPole) then {spawn player_plotPreview;}; + if (_isPole) then { + 0 spawn player_plotPreview; + }; _tmpbuilt setVariable ["OEMPos",_location,true];