Fixed craftin recipes with wildcard

This commit is contained in:
Shoghi Cervantes
2013-06-06 19:51:24 +02:00
parent 1179369666
commit c1f79fa2f8
2 changed files with 2 additions and 5 deletions

View File

@ -268,7 +268,7 @@ class CraftingRecipes{
break;
}
$oitem = $recipeItems[$item[0]];
if(($oitem[1] != $item[1] and $item[2] !== false) or $oitem[2] != $item[2]){
if(($oitem[1] != $item[1] and $item[1] !== false) or $oitem[2] != $item[2]){
$continue = false;
break;
}