mirror of
https://github.com/EpochModTeam/Epoch.git
synced 2024-08-30 18:22:13 +00:00
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:
parent
dbf16e5c61
commit
a4c75841db
@ -67,7 +67,6 @@ if !(isNull _object) then{
|
|||||||
_recipeItem = _x;
|
_recipeItem = _x;
|
||||||
_recipeQty = 1;
|
_recipeQty = 1;
|
||||||
if (_x isEqualType[]) then{
|
if (_x isEqualType[]) then{
|
||||||
_x params ["_recipeItem","_recipeQty"];
|
|
||||||
_recipeItem = _x select 0;
|
_recipeItem = _x select 0;
|
||||||
_recipeQty = _x select 1;
|
_recipeQty = _x select 1;
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user