Move config to annotation system

All old configs must be deleted for this to work properly. Since the rest
of the update is filled with world breaking changes, this should be fine.
This commit is contained in:
Nicholas Ignoffo 2017-08-19 18:56:50 -07:00
parent b0404599c2
commit d587a8c96f
19 changed files with 251 additions and 494 deletions

View file

@ -68,7 +68,7 @@ public class BlockSpectral extends Block implements IVariantProvider {
@Override
public EnumBlockRenderType getRenderType(IBlockState state) {
return ConfigHandler.invisibleSpectralBlocks ? EnumBlockRenderType.INVISIBLE : EnumBlockRenderType.MODEL;
return ConfigHandler.client.invisibleSpectralBlocks ? EnumBlockRenderType.INVISIBLE : EnumBlockRenderType.MODEL;
}
@Override