0.996 released

+ Corrected some code related to moving crafting recipes to config.
+ Crafting system now checks for correct number of items.
This commit is contained in:
vbawol
2013-03-12 17:13:04 -05:00
parent 9768ca96f0
commit c4ea450657
6 changed files with 65 additions and 51 deletions

View File

@@ -650,8 +650,8 @@ class cfgMagazines
{
text = "Melt into Bars";
script = "spawn player_craftItem;";
output[] = {["ItemTinBar",1]};
input[] = {["TrashTinCan",6]};
output[] = {{"ItemTinBar",1}};
input[] = {{"TrashTinCan",6}};
};
};
};
@@ -669,8 +669,8 @@ class cfgMagazines
{
text = "Melt into Bars";
script = "spawn player_craftItem;";
output[] = {["ItemAluminumBar",1]};
input[] = {["ItemSodaEmpty",6]};
output[] = {{"ItemAluminumBar",1}};
input[] = {{"ItemSodaEmpty",6}};
};
};
};