Renamed Debug Option.
This commit is contained in:
@@ -46,7 +46,7 @@ public enum AEFeature
|
||||
|
||||
MassCannonBlockDamage("BlockFeatures"), TinyTNTBlockDamage("BlockFeatures"), Facades("Facades"),
|
||||
|
||||
DuplicateItems("Misc", false), Profiler("Services", false), VersionChecker("Services"), Debug("Misc", false), Creative("Misc"),
|
||||
DuplicateItems("Misc", false), Profiler("Services", false), VersionChecker("Services"), UnsupportedDeveloperTools("Misc", false), Creative("Misc"),
|
||||
|
||||
GrinderLogging("Misc", false), Logging("Misc"), IntegrationLogging("Misc", false), CustomRecipes("Crafting", false), WebsiteRecipes("Misc", false),
|
||||
|
||||
|
||||
@@ -18,7 +18,7 @@ public class BlockChunkloader extends AEBaseBlock implements LoadingCallback
|
||||
|
||||
public BlockChunkloader() {
|
||||
super( BlockChunkloader.class, Material.iron );
|
||||
setfeature( EnumSet.of( AEFeature.Debug, AEFeature.Creative ) );
|
||||
setfeature( EnumSet.of( AEFeature.UnsupportedDeveloperTools, AEFeature.Creative ) );
|
||||
setTileEntiy( TileChunkLoader.class );
|
||||
ForgeChunkManager.setForcedChunkLoadingCallback( AppEng.instance, this );
|
||||
}
|
||||
|
||||
@@ -12,7 +12,7 @@ public class BlockItemGen extends AEBaseBlock
|
||||
|
||||
public BlockItemGen() {
|
||||
super( BlockItemGen.class, Material.iron );
|
||||
setfeature( EnumSet.of( AEFeature.Debug, AEFeature.Creative ) );
|
||||
setfeature( EnumSet.of( AEFeature.UnsupportedDeveloperTools, AEFeature.Creative ) );
|
||||
setTileEntiy( TileItemGen.class );
|
||||
}
|
||||
|
||||
|
||||
@@ -30,7 +30,7 @@ public class ToolDebugCard extends AEBaseItem
|
||||
|
||||
public ToolDebugCard() {
|
||||
super( ToolDebugCard.class );
|
||||
setfeature( EnumSet.of( AEFeature.Debug, AEFeature.Creative ) );
|
||||
setfeature( EnumSet.of( AEFeature.UnsupportedDeveloperTools, AEFeature.Creative ) );
|
||||
}
|
||||
|
||||
public String timeMeasurement(long nanos)
|
||||
|
||||
@@ -21,7 +21,7 @@ public class ToolEraser extends AEBaseItem
|
||||
|
||||
public ToolEraser() {
|
||||
super( ToolEraser.class );
|
||||
setfeature( EnumSet.of( AEFeature.Debug, AEFeature.Creative ) );
|
||||
setfeature( EnumSet.of( AEFeature.UnsupportedDeveloperTools, AEFeature.Creative ) );
|
||||
}
|
||||
|
||||
@Override
|
||||
|
||||
@@ -18,7 +18,7 @@ public class ToolMeteoritePlacer extends AEBaseItem
|
||||
|
||||
public ToolMeteoritePlacer() {
|
||||
super( ToolMeteoritePlacer.class );
|
||||
setfeature( EnumSet.of( AEFeature.Debug, AEFeature.Creative ) );
|
||||
setfeature( EnumSet.of( AEFeature.UnsupportedDeveloperTools, AEFeature.Creative ) );
|
||||
}
|
||||
|
||||
@Override
|
||||
|
||||
@@ -25,7 +25,7 @@ public class ToolReplicatorCard extends AEBaseItem
|
||||
|
||||
public ToolReplicatorCard() {
|
||||
super( ToolReplicatorCard.class );
|
||||
setfeature( EnumSet.of( AEFeature.Debug, AEFeature.Creative ) );
|
||||
setfeature( EnumSet.of( AEFeature.UnsupportedDeveloperTools, AEFeature.Creative ) );
|
||||
}
|
||||
|
||||
@Override
|
||||
|
||||
Reference in New Issue
Block a user