mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2025-12-14 04:02:37 +03:00
Fix wooden splint recipe output
It was outputting two when it should only be one.
This commit is contained in:
@@ -2,12 +2,12 @@ class Blueprint_woodensplint : Recipe {
|
|||||||
displayName = $STR_ITEM_NAME_WOODENSPLINT;
|
displayName = $STR_ITEM_NAME_WOODENSPLINT;
|
||||||
input[] =
|
input[] =
|
||||||
{
|
{
|
||||||
{"PartWoodPile","CfgMagazines",2},
|
{"PartWoodPile","CfgMagazines",1},
|
||||||
{"equip_string","CfgMagazines",1}
|
{"equip_string","CfgMagazines",1}
|
||||||
};
|
};
|
||||||
output[] =
|
output[] =
|
||||||
{
|
{
|
||||||
{"equip_woodensplint","CfgMagazines",2}
|
{"equip_woodensplint","CfgMagazines",1}
|
||||||
};
|
};
|
||||||
required[] =
|
required[] =
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user