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.
This commit is contained in:
He-Man 2016-11-09 17:16:43 +01:00 committed by GitHub
parent dbf16e5c61
commit a4c75841db

View File

@ -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;
};