Applied-Energistics-2-tiler.../src/main/java/appeng/core/features/ActivityState.java
thatsIch 9986ffc458 Fixes #675 No disabled feature should log spam or crash anymore.
Deprecates the old usage of the AEItemDefinitions via the direct method access of

* blocks()
* parts()
* items()
* materials()

and thus use the new re-direct via definitions().

All definitions are now initialized, no matter what. But SubItems, Items and Blocks are not registered, if by chance are disabled.
2015-03-28 16:21:37 +01:00

7 lines
81 B
Java

package appeng.core.features;
public enum ActivityState
{
Enabled, Disabled
}