Fixes #1333: Updated old code parts related to recipes

Fixed an additional bug, where the disassembling recipes were not working properly. The fail logic was flawed, so that it would never match the recipe
This commit is contained in:
thatsIch
2015-04-26 23:20:08 +02:00
parent bbde2443e1
commit 9210069d9b
3 changed files with 63 additions and 47 deletions
@@ -79,9 +79,7 @@ public enum AEFeature
AEFeature( String cat )
{
this.category = cat;
this.isVisible = !this.name().equals( "Core" );
this.defaultValue = true;
this(cat, true);
}
AEFeature( String cat, boolean defaultValue )