From a4c75841dbfec0996a384fef45601bfa0024b4d7 Mon Sep 17 00:00:00 2001 From: He-Man Date: Wed, 9 Nov 2016 17:16:43 +0100 Subject: [PATCH] Fix for "add wall" to Wooden Tower Add Wall on Wooden Tower was not working since 0.4. _x params ["_recipeItem","_recipeQty"]; seem not work here and the paramterer was twice loaded. This fix is already tested and works. --- Sources/epoch_code/compile/building/EPOCH_changeWallState.sqf | 1 - 1 file changed, 1 deletion(-) diff --git a/Sources/epoch_code/compile/building/EPOCH_changeWallState.sqf b/Sources/epoch_code/compile/building/EPOCH_changeWallState.sqf index 1181b2f5..dcd7cff3 100644 --- a/Sources/epoch_code/compile/building/EPOCH_changeWallState.sqf +++ b/Sources/epoch_code/compile/building/EPOCH_changeWallState.sqf @@ -67,7 +67,6 @@ if !(isNull _object) then{ _recipeItem = _x; _recipeQty = 1; if (_x isEqualType[]) then{ - _x params ["_recipeItem","_recipeQty"]; _recipeItem = _x select 0; _recipeQty = _x select 1; };