MainLogger can now have debug level disabled

This commit is contained in:
Shoghi Cervantes
2014-05-29 00:08:02 +02:00
parent 7bd6f2ed91
commit 8d40f843cf
38 changed files with 132 additions and 104 deletions

View File

@ -77,6 +77,7 @@ class ShapelessRecipe implements Recipe{
$item->setCount($item->getCount() - 1);
}
}
return $this;
}
@ -88,6 +89,7 @@ class ShapelessRecipe implements Recipe{
foreach($this->ingredients as $ingredient){
$ingredients[] = clone $ingredient;
}
return $ingredients;
}
@ -99,6 +101,7 @@ class ShapelessRecipe implements Recipe{
foreach($this->ingredients as $ingredient){
$count += $ingredient->getCount();
}
return $count;
}