meee39 Posted September 16, 2017 Posted September 16, 2017 I am making a block that needs to be able to spin around. Here is its code: package com.leo.occultcraft.blocks; import com.leo.occultcraft.CreativeTab; import com.leo.occultcraft.Occultcraft; import com.leo.occultcraft.gui.ModGuiHandler; import com.leo.occultcraft.tiles.TileAthanor; import net.minecraft.block.Block; import net.minecraft.block.BlockHorizontal; import net.minecraft.block.ITileEntityProvider; import net.minecraft.block.material.Material; import net.minecraft.block.properties.PropertyBool; import net.minecraft.block.properties.PropertyDirection; import net.minecraft.block.state.BlockStateContainer; import net.minecraft.block.state.IBlockState; import net.minecraft.client.Minecraft; import net.minecraft.entity.player.EntityPlayer; import net.minecraft.tileentity.TileEntity; import net.minecraft.util.EnumFacing; import net.minecraft.util.EnumHand; import net.minecraft.util.math.BlockPos; import net.minecraft.world.World; public class BlockAthanor extends Block implements ITileEntityProvider { public static final PropertyDirection facing = BlockHorizontal.FACING; public static final PropertyBool is_on = PropertyBool.create("is_on"); public BlockAthanor() { super(Material.IRON); this.setHardness(2); this.setHarvestLevel("pickaxe", 1); this.setRegistryName("athanor"); this.setUnlocalizedName("athanor"); this.setCreativeTab(CreativeTab.occultcraftCreativeTab); this.setDefaultState(this.blockState.getBaseState().withProperty(is_on, false).withProperty(facing, EnumFacing.NORTH)); } public BlockAthanor(Material materialIn) { super(materialIn); } @Override protected BlockStateContainer createBlockState() { return new BlockStateContainer(this, is_on, facing); } @Override public IBlockState getStateFromMeta(int meta) { return this.getDefaultState().withProperty(is_on, meta == 0); } @Override public int getMetaFromState(IBlockState state) { return state.getValue(is_on) ? 1: 0; } @Override public TileEntity createNewTileEntity(World worldIn, int meta) { return new TileAthanor(); } @Override public void breakBlock(World world, BlockPos pos, IBlockState state) { super.breakBlock(world, pos, state); world.removeTileEntity(pos); } @Override public boolean onBlockActivated(World worldIn, BlockPos pos, IBlockState state, EntityPlayer playerIn, EnumHand hand, EnumFacing facing, float hitX, float hitY, float hitZ) { if (!worldIn.isRemote) { playerIn.openGui(Occultcraft.instance, ModGuiHandler.athanorGUIID, worldIn, pos.getX(), pos.getY(), pos.getZ()); } return true; } } Here is the blockstate json: Reveal hidden contents { "forge_marker": 1, "variants": { "is_on=false,facing=north": { "model": "occultcraft:athanor_off" }, "is_on=false,facing=south": { "model": "occultcraft:athanor_off", "y": 90 }, "is_on=false,facing=east": { "model": "occultcraft:athanor_off", "y": 180 }, "is_on=false,facing=west": { "model": "occultcraft:athanor_off", "y": 270 }, "is_on=true,facing=north": { "model": "occultcraft:athanor_on" }, "is_on=true,facing=east": { "model": "occultcraft:athanor_on", "y": 99 }, "is_on=true,facing=south": { "model": "occultcraft:athanor_on", "y": 180 }, "is_on=true,facing=west": { "model": "occultcraft:athanor_on", "y": 270 }, "inventory": { "model": "occultcraft:athanor_off" } } } And the models: Reveal hidden contents { "parent": "block/cube", "textures": { "down": "occultcraft:blocks/athanor_top", "up": "occultcraft:blocks/athanor_top", "north": "occultcraft:blocks/athanor_front_on", "south": "occultcraft:blocks/athanor_side", "west": "occultcraft:blocks/athanor_side", "east": "occultcraft:blocks/athanor_side", "particle": "occultcraft:blocks/athanor_side" } } Reveal hidden contents { "parent": "block/cube", "textures": { "down": "occultcraft:blocks/athanor_top", "up": "occultcraft:blocks/athanor_top", "north": "occultcraft:blocks/athanor_front_off", "south": "occultcraft:blocks/athanor_side", "west": "occultcraft:blocks/athanor_side", "east": "occultcraft:blocks/athanor_side", "particle": "occultcraft:blocks/athanor_side" } } I have tested the rotation with the TE Crescent Hammer and it works okay. Before I added in the PropertyDirection the textures on the block appeared perfectly, but now that I have them there the textures will not appear. I get this error log: Reveal hidden contents Java HotSpot(TM) 64-Bit Server VM warning: Using incremental CMS is deprecated and will likely be removed in a future release [14:53:32] [main/INFO] [GradleStart]: Extra: [] [14:53:32] [main/INFO] [GradleStart]: Running with arguments: [--userProperties, {}, --assetsDir, /Users/leobattle/.gradle/caches/minecraft/assets, --assetIndex, 1.12, --accessToken{REDACTED}, --version, 1.12, --tweakClass, net.minecraftforge.fml.common.launcher.FMLTweaker, --tweakClass, net.minecraftforge.gradle.tweakers.CoremodTweaker] [14:53:32] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker [14:53:32] [main/INFO] [LaunchWrapper]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker [14:53:32] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker [14:53:32] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLTweaker [14:53:32] [main/INFO] [FML]: Forge Mod Loader version 14.21.1.2428 for Minecraft 1.12 loading [14:53:32] [main/INFO] [FML]: Java is Java HotSpot(TM) 64-Bit Server VM, version 1.8.0_131, running on Mac OS X:x86_64:10.12, installed at /Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/jre [14:53:32] [main/INFO] [FML]: Managed to load a deobfuscated Minecraft name- we are in a deobfuscated environment. Skipping runtime deobfuscation [14:53:32] [main/INFO] [FML]: Ignoring missing certificate for coremod FMLCorePlugin (net.minecraftforge.fml.relauncher.FMLCorePlugin), we are in deobf and it's a forge core plugin [14:53:32] [main/INFO] [FML]: Ignoring missing certificate for coremod FMLForgePlugin (net.minecraftforge.classloading.FMLForgePlugin), we are in deobf and it's a forge core plugin [14:53:32] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.gradle.tweakers.CoremodTweaker [14:53:32] [main/INFO] [GradleStart]: Injecting location in coremod net.minecraftforge.fml.relauncher.FMLCorePlugin [14:53:32] [main/INFO] [GradleStart]: Injecting location in coremod net.minecraftforge.classloading.FMLForgePlugin [14:53:32] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker [14:53:32] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLDeobfTweaker [14:53:32] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.AccessTransformerTweaker [14:53:32] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker [14:53:32] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker [14:53:32] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper [14:53:33] [main/ERROR] [FML]: FML appears to be missing any signature data. This is not a good thing [14:53:33] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper [14:53:33] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLDeobfTweaker [14:53:33] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.gradle.tweakers.AccessTransformerTweaker [14:53:33] [main/INFO] [GradleStart]: Remapping AccessTransformer rules... [14:53:33] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.TerminalTweaker [14:53:33] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.TerminalTweaker [14:53:33] [main/INFO] [LaunchWrapper]: Launching wrapped minecraft {net.minecraft.client.main.Main} [14:53:34] [main/INFO]: Setting user: Player387 [14:53:37] [main/WARN]: Skipping bad option: lastServer: [14:53:37] [main/INFO]: LWJGL Version: 2.9.2 [14:53:37] [main/INFO] [FML]: MinecraftForge v14.21.1.2428 Initialized [14:53:37] [main/INFO] [FML]: Replaced 921 ore ingredients [14:53:37] [main/INFO] [FML]: Found 0 mods from the command line. Injecting into mod discoverer [14:53:37] [main/INFO] [FML]: Searching /Users/leobattle/Desktop/Programming/Java/Minecraft Modding/Occultcraft/run/mods for mods [14:53:38] [main/INFO] [FML]: Forge Mod Loader has identified 14 mods to load [14:53:39] [main/INFO] [FML]: FML has found a non-mod file mcjtylib-1.12-2.4.4.jar in your mods directory. It will now be injected into your classpath. This could severe stability issues, it should be removed if possible. [14:53:39] [main/INFO] [FML]: Attempting connection with missing mods [minecraft, mcp, FML, forge, occultcraft, guideapi, cofhcore, cofhworld, jei, journeymap, jeresources, redstoneflux, theoneprobe, thermalfoundation] at CLIENT [14:53:39] [main/INFO] [FML]: Attempting connection with missing mods [minecraft, mcp, FML, forge, occultcraft, guideapi, cofhcore, cofhworld, jei, journeymap, jeresources, redstoneflux, theoneprobe, thermalfoundation] at SERVER [14:53:39] [main/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:Occultcraft, FMLFileResourcePack:Guide-API, FMLFileResourcePack:CoFH Core, FMLFileResourcePack:CoFH World, FMLFileResourcePack:Just Enough Items, FMLFileResourcePack:JourneyMap, FMLFileResourcePack:Just Enough Resources, FMLFileResourcePack:Redstone Flux, FMLFileResourcePack:The One Probe, FMLFileResourcePack:Thermal Foundation [14:53:39] [main/INFO] [FML]: Processing ObjectHolder annotations [14:53:39] [main/INFO] [FML]: Found 1168 ObjectHolder annotations [14:53:39] [main/INFO] [FML]: Identifying ItemStackHolder annotations [14:53:39] [main/INFO] [FML]: Found 0 ItemStackHolder annotations [14:53:39] [main/INFO] [FML]: Configured a dormant chunk cache size of 0 [14:53:39] [Forge Version Check/INFO] [ForgeVersionCheck]: [thermalfoundation] Starting version check at https://raw.github.com/cofh/version/master/thermalfoundation_update.json [14:53:40] [main/INFO] [cofhworld]: Registering default Feature Templates... [14:53:40] [main/INFO] [cofhworld]: Registering default World Generators... [14:53:40] [main/INFO] [cofhworld]: Verifying or creating base world generation directory... [14:53:40] [main/INFO] [cofhworld]: Complete. [14:53:40] [main/INFO] [journeymap]: No plugins for JourneyMap API discovered. [14:53:40] [main/INFO] [jeresources]: Loading configs.. [14:53:40] [main/INFO] [jeresources]: Updating ModMetaData... [14:53:40] [main/INFO] [jeresources]: Providing API... [14:53:40] [main/INFO] [theoneprobe]: The One Probe Detected RedstoneFlux: enabling support [14:53:40] [Forge Version Check/INFO] [ForgeVersionCheck]: [thermalfoundation] Found status: UP_TO_DATE Target: null [14:53:40] [Forge Version Check/INFO] [ForgeVersionCheck]: [cofhcore] Starting version check at https://raw.github.com/cofh/version/master/cofhcore_update.json [14:53:40] [Forge Version Check/INFO] [ForgeVersionCheck]: [cofhcore] Found status: UP_TO_DATE Target: null [14:53:40] [Forge Version Check/INFO] [ForgeVersionCheck]: [forge] Starting version check at http://files.minecraftforge.net/maven/net/minecraftforge/forge/promotions_slim.json [14:53:40] [Forge Version Check/INFO] [ForgeVersionCheck]: [forge] Found status: OUTDATED Target: 14.21.1.2443 [14:53:40] [Forge Version Check/INFO] [ForgeVersionCheck]: [cofhworld] Starting version check at https://raw.github.com/cofh/version/master/cofhworld_update.json [14:53:40] [Forge Version Check/INFO] [ForgeVersionCheck]: [cofhworld] Found status: UP_TO_DATE Target: null [14:53:40] [main/INFO] [FML]: Applying holder lookups [14:53:40] [main/INFO] [FML]: Holder lookups applied [14:53:40] [main/INFO] [FML]: Applying holder lookups [14:53:40] [main/INFO] [FML]: Holder lookups applied [14:53:40] [main/INFO] [FML]: Applying holder lookups [14:53:40] [main/INFO] [FML]: Holder lookups applied [14:53:40] [main/INFO] [FML]: Applying holder lookups [14:53:40] [main/INFO] [FML]: Holder lookups applied [14:53:40] [main/INFO] [FML]: Injecting itemstacks [14:53:40] [main/INFO] [FML]: Itemstack injection complete [14:53:42] [Sound Library Loader/INFO]: Starting up SoundSystem... [14:53:42] [Thread-3/INFO]: Initializing LWJGL OpenAL [14:53:42] [Thread-3/INFO]: (The LWJGL binding of OpenAL. For more information, see http://www.lwjgl.org) [14:53:42] [Thread-3/INFO]: OpenAL initialized. [14:53:42] [Sound Library Loader/INFO]: Sound engine started [14:53:44] [main/INFO] [FML]: Max texture size: 16384 [14:53:44] [main/INFO]: Created: 1024x512 textures-atlas [14:53:45] [main/ERROR] [FML]: Exception loading model for variant occultcraft:athanor#facing=west,is_on=false for blockstate "occultcraft:athanor[facing=west,is_on=false]" net.minecraftforge.client.model.ModelLoaderRegistry$LoaderException: Exception loading model occultcraft:athanor#facing=west,is_on=false with loader VariantLoader.INSTANCE, skipping at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:153) ~[ModelLoaderRegistry.class:?] at net.minecraftforge.client.model.ModelLoader.registerVariant(ModelLoader.java:233) ~[ModelLoader.class:?] at net.minecraft.client.renderer.block.model.ModelBakery.loadBlock(ModelBakery.java:153) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.loadBlocks(ModelLoader.java:221) ~[ModelLoader.class:?] at net.minecraftforge.client.model.ModelLoader.setupModelRegistry(ModelLoader.java:159) ~[ModelLoader.class:?] at net.minecraft.client.renderer.block.model.ModelManager.onResourceManagerReload(ModelManager.java:28) [ModelManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.registerReloadListener(SimpleReloadableResourceManager.java:121) [SimpleReloadableResourceManager.class:?] at net.minecraft.client.Minecraft.init(Minecraft.java:554) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:416) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:118) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_131] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_131] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_131] at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_131] at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.12.jar:?] at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.12.jar:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_131] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_131] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_131] at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_131] at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) [start/:?] at GradleStart.main(GradleStart.java:26) [start/:?] Caused by: net.minecraft.client.renderer.block.model.ModelBlockDefinition$MissingVariantException at net.minecraft.client.renderer.block.model.ModelBlockDefinition.getVariant(ModelBlockDefinition.java:83) ~[ModelBlockDefinition.class:?] at net.minecraftforge.client.model.ModelLoader$VariantLoader.loadModel(ModelLoader.java:1208) ~[ModelLoader$VariantLoader.class:?] at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:149) ~[ModelLoaderRegistry.class:?] ... 21 more [14:53:45] [main/ERROR] [FML]: Exception loading blockstate for the variant occultcraft:athanor#facing=west,is_on=false: java.lang.Exception: Could not load model definition for variant occultcraft:athanor at net.minecraftforge.client.model.ModelLoader.getModelBlockDefinition(ModelLoader.java:266) ~[ModelLoader.class:?] at net.minecraft.client.renderer.block.model.ModelBakery.loadBlock(ModelBakery.java:121) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.loadBlocks(ModelLoader.java:221) ~[ModelLoader.class:?] at net.minecraftforge.client.model.ModelLoader.setupModelRegistry(ModelLoader.java:159) ~[ModelLoader.class:?] at net.minecraft.client.renderer.block.model.ModelManager.onResourceManagerReload(ModelManager.java:28) [ModelManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.registerReloadListener(SimpleReloadableResourceManager.java:121) [SimpleReloadableResourceManager.class:?] at net.minecraft.client.Minecraft.init(Minecraft.java:554) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:416) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:118) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_131] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_131] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_131] at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_131] at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.12.jar:?] at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.12.jar:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_131] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_131] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_131] at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_131] at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) [start/:?] at GradleStart.main(GradleStart.java:26) [start/:?] Caused by: java.lang.RuntimeException: Encountered an exception when loading model definition of 'occultcraft:athanor' from: 'occultcraft:blockstates/athanor.json' in resourcepack: 'FMLFileResourcePack:Occultcraft' at net.minecraft.client.renderer.block.model.ModelBakery.loadModelBlockDefinition(ModelBakery.java:246) ~[ModelBakery.class:?] at net.minecraft.client.renderer.block.model.ModelBakery.loadMultipartMBD(ModelBakery.java:223) ~[ModelBakery.class:?] at net.minecraft.client.renderer.block.model.ModelBakery.getModelBlockDefinition(ModelBakery.java:208) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.getModelBlockDefinition(ModelLoader.java:262) ~[ModelLoader.class:?] ... 20 more Caused by: java.lang.NullPointerException at net.minecraftforge.common.model.TRSRTransformation.<init>(TRSRTransformation.java:102) ~[TRSRTransformation.class:?] at net.minecraftforge.client.model.ForgeBlockStateV1$Variant$Deserializer.deserialize(ForgeBlockStateV1.java:500) ~[ForgeBlockStateV1$Variant$Deserializer.class:?] at net.minecraftforge.client.model.ForgeBlockStateV1$Variant$Deserializer.deserialize(ForgeBlockStateV1.java:434) ~[ForgeBlockStateV1$Variant$Deserializer.class:?] at com.google.gson.internal.bind.TreeTypeAdapter.read(TreeTypeAdapter.java:69) ~[TreeTypeAdapter.class:?] at com.google.gson.Gson.fromJson(Gson.java:887) ~[Gson.class:?] at com.google.gson.Gson.fromJson(Gson.java:952) ~[Gson.class:?] at com.google.gson.internal.bind.TreeTypeAdapter$GsonContextImpl.deserialize(TreeTypeAdapter.java:162) ~[TreeTypeAdapter$GsonContextImpl.class:?] at net.minecraftforge.client.model.ForgeBlockStateV1$Deserializer.deserialize(ForgeBlockStateV1.java:118) ~[ForgeBlockStateV1$Deserializer.class:?] at net.minecraftforge.client.model.ForgeBlockStateV1$Deserializer.deserialize(ForgeBlockStateV1.java:68) ~[ForgeBlockStateV1$Deserializer.class:?] at com.google.gson.internal.bind.TreeTypeAdapter.read(TreeTypeAdapter.java:69) ~[TreeTypeAdapter.class:?] at com.google.gson.Gson.fromJson(Gson.java:887) ~[Gson.class:?] at com.google.gson.Gson.fromJson(Gson.java:825) ~[Gson.class:?] at net.minecraftforge.client.model.BlockStateLoader.load(BlockStateLoader.java:84) ~[BlockStateLoader.class:?] at net.minecraft.client.renderer.block.model.ModelBlockDefinition.parseFromReader(ModelBlockDefinition.java:42) ~[ModelBlockDefinition.class:?] at net.minecraft.client.renderer.block.model.ModelBakery.loadModelBlockDefinition(ModelBakery.java:242) ~[ModelBakery.class:?] at net.minecraft.client.renderer.block.model.ModelBakery.loadMultipartMBD(ModelBakery.java:223) ~[ModelBakery.class:?] at net.minecraft.client.renderer.block.model.ModelBakery.getModelBlockDefinition(ModelBakery.java:208) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.getModelBlockDefinition(ModelLoader.java:262) ~[ModelLoader.class:?] ... 20 more [14:53:45] [main/ERROR] [FML]: Exception loading model for variant occultcraft:athanor#inventory for item "occultcraft:athanor", normal location exception: net.minecraftforge.client.model.ModelLoaderRegistry$LoaderException: Exception loading model occultcraft:item/athanor with loader VanillaLoader.INSTANCE, skipping at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:153) ~[ModelLoaderRegistry.class:?] at net.minecraftforge.client.model.ModelLoader.loadItemModels(ModelLoader.java:297) ~[ModelLoader.class:?] at net.minecraft.client.renderer.block.model.ModelBakery.loadVariantItemModels(ModelBakery.java:175) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.setupModelRegistry(ModelLoader.java:160) ~[ModelLoader.class:?] at net.minecraft.client.renderer.block.model.ModelManager.onResourceManagerReload(ModelManager.java:28) [ModelManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.registerReloadListener(SimpleReloadableResourceManager.java:121) [SimpleReloadableResourceManager.class:?] at net.minecraft.client.Minecraft.init(Minecraft.java:554) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:416) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:118) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_131] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_131] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_131] at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_131] at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.12.jar:?] at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.12.jar:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_131] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_131] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_131] at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_131] at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) [start/:?] at GradleStart.main(GradleStart.java:26) [start/:?] Caused by: java.io.FileNotFoundException: occultcraft:models/item/athanor.json at net.minecraft.client.resources.FallbackResourceManager.getResource(FallbackResourceManager.java:69) ~[FallbackResourceManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.getResource(SimpleReloadableResourceManager.java:65) ~[SimpleReloadableResourceManager.class:?] at net.minecraft.client.renderer.block.model.ModelBakery.loadModel(ModelBakery.java:334) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.access$1600(ModelLoader.java:126) ~[ModelLoader.class:?] at net.minecraftforge.client.model.ModelLoader$VanillaLoader.loadModel(ModelLoader.java:899) ~[ModelLoader$VanillaLoader.class:?] at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:149) ~[ModelLoaderRegistry.class:?] ... 20 more [14:53:45] [main/ERROR] [FML]: Exception loading model for variant occultcraft:athanor#inventory for item "occultcraft:athanor", blockstate location exception: net.minecraftforge.client.model.ModelLoaderRegistry$LoaderException: Exception loading model occultcraft:athanor#inventory with loader VariantLoader.INSTANCE, skipping at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:153) ~[ModelLoaderRegistry.class:?] at net.minecraftforge.client.model.ModelLoader.loadItemModels(ModelLoader.java:305) ~[ModelLoader.class:?] at net.minecraft.client.renderer.block.model.ModelBakery.loadVariantItemModels(ModelBakery.java:175) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.setupModelRegistry(ModelLoader.java:160) ~[ModelLoader.class:?] at net.minecraft.client.renderer.block.model.ModelManager.onResourceManagerReload(ModelManager.java:28) [ModelManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.registerReloadListener(SimpleReloadableResourceManager.java:121) [SimpleReloadableResourceManager.class:?] at net.minecraft.client.Minecraft.init(Minecraft.java:554) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:416) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:118) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_131] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_131] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_131] at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_131] at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.12.jar:?] at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.12.jar:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_131] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_131] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_131] at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_131] at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) [start/:?] at GradleStart.main(GradleStart.java:26) [start/:?] Caused by: net.minecraft.client.renderer.block.model.ModelBlockDefinition$MissingVariantException at net.minecraft.client.renderer.block.model.ModelBlockDefinition.getVariant(ModelBlockDefinition.java:83) ~[ModelBlockDefinition.class:?] at net.minecraftforge.client.model.ModelLoader$VariantLoader.loadModel(ModelLoader.java:1208) ~[ModelLoader$VariantLoader.class:?] at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:149) ~[ModelLoaderRegistry.class:?] ... 20 more [14:53:45] [main/ERROR] [FML]: Exception loading model for variant occultcraft:athanor#facing=west,is_on=true for blockstate "occultcraft:athanor[facing=west,is_on=true]" net.minecraftforge.client.model.ModelLoaderRegistry$LoaderException: Exception loading model occultcraft:athanor#facing=west,is_on=true with loader VariantLoader.INSTANCE, skipping at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:153) ~[ModelLoaderRegistry.class:?] at net.minecraftforge.client.model.ModelLoader.registerVariant(ModelLoader.java:233) ~[ModelLoader.class:?] at net.minecraft.client.renderer.block.model.ModelBakery.loadBlock(ModelBakery.java:153) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.loadBlocks(ModelLoader.java:221) ~[ModelLoader.class:?] at net.minecraftforge.client.model.ModelLoader.setupModelRegistry(ModelLoader.java:159) ~[ModelLoader.class:?] at net.minecraft.client.renderer.block.model.ModelManager.onResourceManagerReload(ModelManager.java:28) [ModelManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.registerReloadListener(SimpleReloadableResourceManager.java:121) [SimpleReloadableResourceManager.class:?] at net.minecraft.client.Minecraft.init(Minecraft.java:554) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:416) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:118) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_131] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_131] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_131] at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_131] at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.12.jar:?] at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.12.jar:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_131] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_131] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_131] at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_131] at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) [start/:?] at GradleStart.main(GradleStart.java:26) [start/:?] Caused by: net.minecraft.client.renderer.block.model.ModelBlockDefinition$MissingVariantException at net.minecraft.client.renderer.block.model.ModelBlockDefinition.getVariant(ModelBlockDefinition.java:83) ~[ModelBlockDefinition.class:?] at net.minecraftforge.client.model.ModelLoader$VariantLoader.loadModel(ModelLoader.java:1208) ~[ModelLoader$VariantLoader.class:?] at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:149) ~[ModelLoaderRegistry.class:?] ... 21 more [14:53:45] [main/ERROR] [FML]: Exception loading model for variant occultcraft:athanor#facing=east,is_on=false for blockstate "occultcraft:athanor[facing=east,is_on=false]" net.minecraftforge.client.model.ModelLoaderRegistry$LoaderException: Exception loading model occultcraft:athanor#facing=east,is_on=false with loader VariantLoader.INSTANCE, skipping at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:153) ~[ModelLoaderRegistry.class:?] at net.minecraftforge.client.model.ModelLoader.registerVariant(ModelLoader.java:233) ~[ModelLoader.class:?] at net.minecraft.client.renderer.block.model.ModelBakery.loadBlock(ModelBakery.java:153) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.loadBlocks(ModelLoader.java:221) ~[ModelLoader.class:?] at net.minecraftforge.client.model.ModelLoader.setupModelRegistry(ModelLoader.java:159) ~[ModelLoader.class:?] at net.minecraft.client.renderer.block.model.ModelManager.onResourceManagerReload(ModelManager.java:28) [ModelManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.registerReloadListener(SimpleReloadableResourceManager.java:121) [SimpleReloadableResourceManager.class:?] at net.minecraft.client.Minecraft.init(Minecraft.java:554) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:416) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:118) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_131] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_131] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_131] at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_131] at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.12.jar:?] at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.12.jar:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_131] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_131] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_131] at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_131] at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) [start/:?] at GradleStart.main(GradleStart.java:26) [start/:?] Caused by: net.minecraft.client.renderer.block.model.ModelBlockDefinition$MissingVariantException at net.minecraft.client.renderer.block.model.ModelBlockDefinition.getVariant(ModelBlockDefinition.java:83) ~[ModelBlockDefinition.class:?] at net.minecraftforge.client.model.ModelLoader$VariantLoader.loadModel(ModelLoader.java:1208) ~[ModelLoader$VariantLoader.class:?] at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:149) ~[ModelLoaderRegistry.class:?] ... 21 more [14:53:45] [main/FATAL] [FML]: Suppressed additional 4 model loading errors for domain occultcraft [14:53:46] [main/INFO] [FML]: Applying holder lookups [14:53:46] [main/INFO] [FML]: Holder lookups applied [14:53:46] [main/INFO] [journeymap]: JourneyMap log initialized. [14:53:46] [main/INFO] [journeymap]: initialize ENTER [14:53:46] [main/WARN] [journeymap]: core (Initialized) Bad configField entry during updateFrom(): optionsManagerViewed=null [14:53:46] [main/WARN] [journeymap]: core (Initialized) Bad configField entry during updateFrom(): splashViewed=null [14:53:46] [main/INFO] [journeymap]: [ClientAPI] built with JourneyMap API 1.3-SNAPSHOT [14:53:46] [main/INFO] [journeymap]: Initializing plugins with Client API: journeymap.client.api.impl.ClientAPI [14:53:46] [main/INFO] [journeymap]: initialize EXIT, elapsed count 0 avg ?ms [14:53:46] [main/INFO] [FML]: Injecting itemstacks [14:53:46] [main/INFO] [FML]: Itemstack injection complete [14:53:46] [main/ERROR] [journeymap]: Couldn't locate icons for Default: /Users/leobattle/Desktop/Programming/Java/Minecraft%20Modding/Occultcraft/run/mods/journeymap-1.12-5.4.9.jar/assets/journeymap/icon/entity [14:53:46] [main/INFO] [journeymap]: Added entity icons from journeymap:icon/entity. Success: false [14:53:46] [main/ERROR] [journeymap]: Couldn't locate icons for victorian_: /Users/leobattle/Desktop/Programming/Java/Minecraft%20Modding/Occultcraft/run/mods/journeymap-1.12-5.4.9.jar/assets/journeymap/theme/victorian_ [14:53:46] [main/INFO] [journeymap]: Preloaded theme textures: 0 [14:53:46] [main/INFO] [cofhcore]: CoFH Core: Load Complete. [14:53:46] [main/INFO] [cofhworld]: Found 4 World Generation files and 0 folders present in /Users/leobattle/Desktop/Programming/Java/Minecraft Modding/Occultcraft/run/config/cofh/world. [14:53:47] [main/INFO] [cofhworld]: Reading world generation info from: cofh/world/01_thermalfoundation_ores.json: [14:53:47] [main/INFO] [cofhworld]: Finished reading cofh/world/01_thermalfoundation_ores.json [14:53:47] [main/INFO] [cofhworld]: Reading world generation info from: cofh/world/02_thermalfoundation_oil.json: [14:53:47] [main/INFO] [cofhworld]: Finished reading cofh/world/02_thermalfoundation_oil.json [14:53:47] [main/INFO] [cofhworld]: Reading world generation info from: cofh/world/03_thermalfoundation_clathrates.json: [14:53:47] [main/INFO] [cofhworld]: Finished reading cofh/world/03_thermalfoundation_clathrates.json [14:53:47] [main/INFO] [cofhworld]: CoFH World: Load Complete. [14:53:47] [main/INFO] [jei]: Starting JEI... [14:53:47] [main/INFO] [jei]: Registering categories: mezz.jei.plugins.vanilla.VanillaPlugin ... [14:53:47] [main/INFO] [jei]: Registered categories: mezz.jei.plugins.vanilla.VanillaPlugin in 14 ms [14:53:47] [main/INFO] [jei]: Registering categories: jeresources.jei.JEIConfig ... [14:53:47] [main/INFO] [jei]: Registered categories: jeresources.jei.JEIConfig in 8 ms [14:53:47] [main/INFO] [jei]: Registering categories: mcjty.lib.compat.JeiCompatibility ... [14:53:47] [main/INFO] [jei]: Registered categories: mcjty.lib.compat.JeiCompatibility in 0 ms [14:53:47] [main/INFO] [jei]: Registering categories: cofh.core.plugins.jei.JEIPluginCore ... [14:53:47] [main/INFO] [jei]: Registered categories: cofh.core.plugins.jei.JEIPluginCore in 0 ms [14:53:47] [main/INFO] [jei]: Registering categories: mezz.jei.plugins.jei.JEIInternalPlugin ... [14:53:47] [main/INFO] [jei]: Registered categories: mezz.jei.plugins.jei.JEIInternalPlugin in 3 ms [14:53:47] [main/INFO] [jei]: Registering plugin: mezz.jei.plugins.vanilla.VanillaPlugin ... [14:53:47] [main/INFO] [jei]: Registered vanilla repair recipes in 1 ms [14:53:47] [main/INFO] [jei]: Registered enchantment recipes in 28 ms [14:53:47] [main/INFO] [jei]: Registered plugin: mezz.jei.plugins.vanilla.VanillaPlugin in 148 ms [14:53:47] [main/INFO] [jei]: Registering plugin: jeresources.jei.JEIConfig ... [14:53:47] [main/INFO] [jei]: Registered plugin: jeresources.jei.JEIConfig in 414 ms [14:53:47] [main/INFO] [jei]: Registering plugin: mcjty.lib.compat.JeiCompatibility ... [14:53:47] [main/INFO] [jei]: Registered plugin: mcjty.lib.compat.JeiCompatibility in 2 ms [14:53:47] [main/INFO] [jei]: Registering plugin: cofh.core.plugins.jei.JEIPluginCore ... [14:53:47] [main/INFO] [jei]: Registered plugin: cofh.core.plugins.jei.JEIPluginCore in 2 ms [14:53:47] [main/INFO] [jei]: Registering plugin: mezz.jei.plugins.jei.JEIInternalPlugin ... [14:53:47] [main/INFO] [jei]: Registered plugin: mezz.jei.plugins.jei.JEIInternalPlugin in 0 ms [14:53:47] [main/INFO] [jei]: Building recipe registry... [14:53:47] [main/INFO] [jei]: Built recipe registry in 120 ms [14:53:47] [main/INFO] [jei]: Building ingredient list... [14:53:48] [main/INFO] [jei]: Built ingredient list in 17 ms [14:53:48] [main/INFO] [jei]: Building ingredient filter... [14:53:48] [main/INFO] [jei]: Built ingredient filter in 132 ms [14:53:48] [main/INFO] [jei]: Building runtime... [14:53:48] [main/INFO] [jei]: Built runtime in 62 ms [14:53:48] [main/INFO] [jei]: Sending runtime to plugin: mezz.jei.plugins.vanilla.VanillaPlugin ... [14:53:48] [main/INFO] [jei]: Sending runtime to plugin: jeresources.jei.JEIConfig ... [14:53:48] [main/INFO] [jei]: Sending runtime to plugin: mcjty.lib.compat.JeiCompatibility ... [14:53:48] [main/INFO] [jei]: Sending runtime to plugin: cofh.core.plugins.jei.JEIPluginCore ... [14:53:48] [main/INFO] [jei]: Sending runtime to plugin: mezz.jei.plugins.jei.JEIInternalPlugin ... [14:53:48] [main/INFO] [jei]: Finished Starting JEI in 1053 ms [14:53:48] [main/INFO] [thermalfoundation]: [Whitelist] Reading established Whitelist from file. [14:53:48] [main/INFO] [thermalfoundation]: Thermal Foundation: Load Complete. [14:53:48] [main/INFO] [FML]: Forge Mod Loader has successfully loaded 14 mods [14:53:48] [main/WARN]: Skipping bad option: lastServer: [14:53:48] [main/ERROR] [TEXTURE ERRORS]: +=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+= [14:53:48] [main/ERROR] [TEXTURE ERRORS]: The following texture errors were found. [14:53:48] [main/ERROR] [TEXTURE ERRORS]: ================================================== [14:53:48] [main/ERROR] [TEXTURE ERRORS]: DOMAIN occultcraft [14:53:48] [main/ERROR] [TEXTURE ERRORS]: -------------------------------------------------- [14:53:48] [main/ERROR] [TEXTURE ERRORS]: domain occultcraft is missing 14 textures [14:53:48] [main/ERROR] [TEXTURE ERRORS]: domain occultcraft has 1 location: [14:53:48] [main/ERROR] [TEXTURE ERRORS]: mod occultcraft resources at /Users/leobattle/Desktop/Programming/Java/Minecraft Modding/Occultcraft/bin [14:53:48] [main/ERROR] [TEXTURE ERRORS]: ------------------------- [14:53:48] [main/ERROR] [TEXTURE ERRORS]: The missing resources for domain occultcraft are: [14:53:48] [main/ERROR] [TEXTURE ERRORS]: textures/items/copperingot.png [14:53:48] [main/ERROR] [TEXTURE ERRORS]: textures/blocks/tinblock.png [14:53:48] [main/ERROR] [TEXTURE ERRORS]: textures/blocks/leadblock.png [14:53:48] [main/ERROR] [TEXTURE ERRORS]: textures/items/tinnugget.png [14:53:48] [main/ERROR] [TEXTURE ERRORS]: textures/items/athanorupgrade_output.png [14:53:48] [main/ERROR] [TEXTURE ERRORS]: textures/items/leadnugget.png [14:53:48] [main/ERROR] [TEXTURE ERRORS]: textures/items/silveringot.png [14:53:48] [main/ERROR] [TEXTURE ERRORS]: textures/blocks/silverblock.png [14:53:48] [main/ERROR] [TEXTURE ERRORS]: textures/items/silvernugget.png [14:53:48] [main/ERROR] [TEXTURE ERRORS]: textures/items/coppernugget.png [14:53:48] [main/ERROR] [TEXTURE ERRORS]: textures/items/leadingot.png [14:53:48] [main/ERROR] [TEXTURE ERRORS]: textures/items/athanorupdrage_filter.png [14:53:48] [main/ERROR] [TEXTURE ERRORS]: textures/blocks/copperblock.png [14:53:48] [main/ERROR] [TEXTURE ERRORS]: textures/items/tiningot.png [14:53:48] [main/ERROR] [TEXTURE ERRORS]: ------------------------- [14:53:48] [main/ERROR] [TEXTURE ERRORS]: No other errors exist for domain occultcraft [14:53:48] [main/ERROR] [TEXTURE ERRORS]: ================================================== [14:53:48] [main/ERROR] [TEXTURE ERRORS]: +=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+= [14:53:49] [Realms Notification Availability checker #1/INFO]: Could not authorize you against Realms server: Invalid session id Quote
Choonster Posted September 16, 2017 Posted September 16, 2017 On 9/16/2017 at 1:54 PM, meee39 said: [14:53:45] [main/ERROR] [FML]: Exception loading blockstate for the variant occultcraft:athanor#facing=west,is_on=false: java.lang.Exception: Could not load model definition for variant occultcraft:athanor ... Caused by: java.lang.RuntimeException: Encountered an exception when loading model definition of 'occultcraft:athanor' from: 'occultcraft:blockstates/athanor.json' in resourcepack: 'FMLFileResourcePack:Occultcraft' ... Caused by: java.lang.NullPointerException at net.minecraftforge.common.model.TRSRTransformation.<init>(TRSRTransformation.java:102) ~[TRSRTransformation.class:?] at net.minecraftforge.client.model.ForgeBlockStateV1$Variant$Deserializer.deserialize(ForgeBlockStateV1.java:500) ~[ForgeBlockStateV1$Variant$Deserializer.class:?] at net.minecraftforge.client.model.ForgeBlockStateV1$Variant$Deserializer.deserialize(ForgeBlockStateV1.java:434) ~[ForgeBlockStateV1$Variant$Deserializer.class:?] Expand The x and y properties in blockstates files can only rotate the model in increments of 90°, but your is_on=true,facing=east variant tries to rotate the model by 99°. This causes the NullPointerException in the TRSRTransformation constructor. Quote Please don't PM me to ask for help. Asking your question in a public thread preserves it for people who are having the same problem in the future.
meee39 Posted September 17, 2017 Author Posted September 17, 2017 I changed it back to 90º but it still shows up as the purple and black texture (the textures are in the right place). Quote
Choonster Posted September 17, 2017 Posted September 17, 2017 On 9/17/2017 at 8:56 AM, meee39 said: I changed it back to 90º but it still shows up as the purple and black texture (the textures are in the right place). Expand Post the new blockstates file and FML log. Quote Please don't PM me to ask for help. Asking your question in a public thread preserves it for people who are having the same problem in the future.
meee39 Posted September 17, 2017 Author Posted September 17, 2017 Reveal hidden contents { "forge_marker": 1, "variants": { "is_on=false,facing=north": { "model": "occultcraft:athanor_off" }, "is_on=false,facing=south": { "model": "occultcraft:athanor_off", "y": 90 }, "is_on=false,facing=east": { "model": "occultcraft:athanor_off", "y": 180 }, "is_on=false,facing=west": { "model": "occultcraft:athanor_off", "y": 270 }, "is_on=true,facing=north": { "model": "occultcraft:athanor_on" }, "is_on=true,facing=east": { "model": "occultcraft:athanor_on", "y": 90 }, "is_on=true,facing=south": { "model": "occultcraft:athanor_on", "y": 180 }, "is_on=true,facing=west": { "model": "occultcraft:athanor_on", "y": 270 }, "inventory": { "model": "occultcraft:athanor_off" } } } Reveal hidden contents Java HotSpot(TM) 64-Bit Server VM warning: Using incremental CMS is deprecated and will likely be removed in a future release [10:49:13] [main/INFO] [GradleStart]: Extra: [] [10:49:13] [main/INFO] [GradleStart]: Running with arguments: [--userProperties, {}, --assetsDir, /Users/leobattle/.gradle/caches/minecraft/assets, --assetIndex, 1.12, --accessToken{REDACTED}, --version, 1.12, --tweakClass, net.minecraftforge.fml.common.launcher.FMLTweaker, --tweakClass, net.minecraftforge.gradle.tweakers.CoremodTweaker] [10:49:13] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker [10:49:13] [main/INFO] [LaunchWrapper]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker [10:49:13] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker [10:49:13] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLTweaker [10:49:13] [main/INFO] [FML]: Forge Mod Loader version 14.21.1.2428 for Minecraft 1.12 loading [10:49:13] [main/INFO] [FML]: Java is Java HotSpot(TM) 64-Bit Server VM, version 1.8.0_131, running on Mac OS X:x86_64:10.12, installed at /Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/jre [10:49:13] [main/INFO] [FML]: Managed to load a deobfuscated Minecraft name- we are in a deobfuscated environment. Skipping runtime deobfuscation [10:49:13] [main/INFO] [FML]: Ignoring missing certificate for coremod FMLCorePlugin (net.minecraftforge.fml.relauncher.FMLCorePlugin), we are in deobf and it's a forge core plugin [10:49:13] [main/INFO] [FML]: Ignoring missing certificate for coremod FMLForgePlugin (net.minecraftforge.classloading.FMLForgePlugin), we are in deobf and it's a forge core plugin [10:49:13] [main/WARN] [FML]: Found FMLCorePluginContainsFMLMod marker in CodeChickenLib-1.12-3.1.2.297-universal.jar. This is not recommended, @Mods should be in a separate jar from the coremod. [10:49:13] [main/ERROR] [FML]: Coremod codechicken.lib.asm.CCLCorePlugin: Unable to class load the plugin java.lang.ClassNotFoundException: codechicken.lib.asm.CCLCorePlugin [10:49:13] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.gradle.tweakers.CoremodTweaker [10:49:13] [main/INFO] [GradleStart]: Injecting location in coremod net.minecraftforge.fml.relauncher.FMLCorePlugin [10:49:13] [main/INFO] [GradleStart]: Injecting location in coremod net.minecraftforge.classloading.FMLForgePlugin [10:49:13] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker [10:49:13] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLDeobfTweaker [10:49:13] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.AccessTransformerTweaker [10:49:13] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker [10:49:13] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker [10:49:13] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper [10:49:14] [main/ERROR] [FML]: FML appears to be missing any signature data. This is not a good thing [10:49:14] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper [10:49:14] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLDeobfTweaker [10:49:14] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.gradle.tweakers.AccessTransformerTweaker [10:49:14] [main/INFO] [GradleStart]: Remapping AccessTransformer rules... [10:49:14] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.TerminalTweaker [10:49:14] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.TerminalTweaker [10:49:14] [main/INFO] [LaunchWrapper]: Launching wrapped minecraft {net.minecraft.client.main.Main} [10:49:15] [main/INFO]: Setting user: Player512 [10:49:18] [main/WARN]: Skipping bad option: lastServer: [10:49:18] [main/INFO]: LWJGL Version: 2.9.2 [10:49:19] [main/INFO] [FML]: MinecraftForge v14.21.1.2428 Initialized [10:49:19] [main/INFO] [FML]: Replaced 921 ore ingredients [10:49:19] [main/INFO] [FML]: Found 0 mods from the command line. Injecting into mod discoverer [10:49:19] [main/INFO] [FML]: Searching /Users/leobattle/Desktop/Programming/Java/Minecraft Modding/Occultcraft/run/mods for mods [10:49:20] [main/WARN] [codechickenlib]: Mod codechickenlib is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 3.1.2.297 [10:49:20] [main/INFO] [FML]: Forge Mod Loader has identified 20 mods to load [10:49:21] [main/INFO] [FML]: FML has found a non-mod file mcjtylib-1.12-2.4.4.jar in your mods directory. It will now be injected into your classpath. This could severe stability issues, it should be removed if possible. [10:49:21] [main/INFO] [FML]: Attempting connection with missing mods [minecraft, mcp, FML, forge, occultcraft, guideapi, codechickenlib, cofhcore, cofhworld, jei, journeymap, jeresources, mantle, redstoneflux, tconstruct, theoneprobe, thermaldynamics, thermalexpansion, thermalfoundation, tinkertoolleveling] at CLIENT [10:49:21] [main/INFO] [FML]: Attempting connection with missing mods [minecraft, mcp, FML, forge, occultcraft, guideapi, codechickenlib, cofhcore, cofhworld, jei, journeymap, jeresources, mantle, redstoneflux, tconstruct, theoneprobe, thermaldynamics, thermalexpansion, thermalfoundation, tinkertoolleveling] at SERVER [10:49:22] [main/INFO] [Pulsar-tconstruct]: Skipping Pulse chiselIntegration; missing dependency: chisel [10:49:22] [main/INFO] [Pulsar-tconstruct]: Skipping Pulse chiselsandbitsIntegration; missing dependency: chiselsandbits [10:49:22] [main/INFO] [Pulsar-tconstruct]: Skipping Pulse craftingtweaksIntegration; missing dependency: craftingtweaks [10:49:22] [main/INFO] [Pulsar-tconstruct]: Skipping Pulse wailaIntegration; missing dependency: waila [10:49:22] [main/INFO] [tconstruct]: Preparing to take over the world [10:49:23] [main/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:Occultcraft, FMLFileResourcePack:Guide-API, FMLFileResourcePack:CodeChicken Lib, FMLFileResourcePack:CoFH Core, FMLFileResourcePack:CoFH World, FMLFileResourcePack:Just Enough Items, FMLFileResourcePack:JourneyMap, FMLFileResourcePack:Just Enough Resources, FMLFileResourcePack:Mantle, FMLFileResourcePack:Redstone Flux, FMLFileResourcePack:Tinkers' Construct, FMLFileResourcePack:The One Probe, FMLFileResourcePack:Thermal Dynamics, FMLFileResourcePack:Thermal Expansion, FMLFileResourcePack:Thermal Foundation, FMLFileResourcePack:Tinkers Tool Leveling [10:49:23] [main/INFO] [FML]: Processing ObjectHolder annotations [10:49:23] [main/INFO] [FML]: Found 1168 ObjectHolder annotations [10:49:23] [main/INFO] [FML]: Identifying ItemStackHolder annotations [10:49:23] [main/INFO] [FML]: Found 0 ItemStackHolder annotations [10:49:23] [main/INFO] [FML]: Configured a dormant chunk cache size of 0 [10:49:23] [Forge Version Check/INFO] [ForgeVersionCheck]: [cofhcore] Starting version check at https://raw.github.com/cofh/version/master/cofhcore_update.json [10:49:23] [main/INFO] [cofhworld]: Registering default Feature Templates... [10:49:23] [main/INFO] [cofhworld]: Registering default World Generators... [10:49:24] [main/INFO] [cofhworld]: Verifying or creating base world generation directory... [10:49:24] [main/INFO] [cofhworld]: Complete. [10:49:24] [Forge Version Check/INFO] [ForgeVersionCheck]: [cofhcore] Found status: UP_TO_DATE Target: null [10:49:24] [Forge Version Check/INFO] [ForgeVersionCheck]: [codechickenlib] Starting version check at http://chickenbones.net/Files/notification/version.php?query=forge&version=1.12&file=CodeChickenLib [10:49:24] [main/INFO] [journeymap]: No plugins for JourneyMap API discovered. [10:49:24] [main/INFO] [jeresources]: Loading configs.. [10:49:24] [Forge Version Check/INFO] [ForgeVersionCheck]: [codechickenlib] Found status: UP_TO_DATE Target: null [10:49:24] [Forge Version Check/INFO] [ForgeVersionCheck]: [thermaldynamics] Starting version check at https://raw.github.com/cofh/version/master/thermaldynamics_update.json [10:49:24] [main/INFO] [jeresources]: Updating ModMetaData... [10:49:24] [main/INFO] [jeresources]: Providing API... [10:49:24] [Forge Version Check/INFO] [ForgeVersionCheck]: [thermaldynamics] Found status: UP_TO_DATE Target: null [10:49:24] [Forge Version Check/INFO] [ForgeVersionCheck]: [thermalfoundation] Starting version check at https://raw.github.com/cofh/version/master/thermalfoundation_update.json [10:49:24] [Forge Version Check/INFO] [ForgeVersionCheck]: [thermalfoundation] Found status: UP_TO_DATE Target: null [10:49:24] [Forge Version Check/INFO] [ForgeVersionCheck]: [forge] Starting version check at http://files.minecraftforge.net/maven/net/minecraftforge/forge/promotions_slim.json [10:49:24] [main/INFO] [theoneprobe]: The One Probe Detected RedstoneFlux: enabling support [10:49:24] [Forge Version Check/INFO] [ForgeVersionCheck]: [forge] Found status: OUTDATED Target: 14.21.1.2443 [10:49:24] [Forge Version Check/INFO] [ForgeVersionCheck]: [cofhworld] Starting version check at https://raw.github.com/cofh/version/master/cofhworld_update.json [10:49:24] [Forge Version Check/INFO] [ForgeVersionCheck]: [cofhworld] Found status: UP_TO_DATE Target: null [10:49:24] [Forge Version Check/INFO] [ForgeVersionCheck]: [thermalexpansion] Starting version check at https://raw.github.com/cofh/version/master/thermalexpansion_update.json [10:49:25] [Forge Version Check/INFO] [ForgeVersionCheck]: [thermalexpansion] Found status: UP_TO_DATE Target: null [10:49:26] [main/INFO] [FML]: Applying holder lookups [10:49:26] [main/INFO] [FML]: Holder lookups applied [10:49:27] [main/INFO] [FML]: Applying holder lookups [10:49:27] [main/INFO] [FML]: Holder lookups applied [10:49:27] [main/INFO] [FML]: Applying holder lookups [10:49:27] [main/INFO] [FML]: Holder lookups applied [10:49:27] [main/INFO] [FML]: Applying holder lookups [10:49:27] [main/INFO] [FML]: Holder lookups applied [10:49:27] [main/INFO] [FML]: Injecting itemstacks [10:49:27] [main/INFO] [FML]: Itemstack injection complete [10:49:28] [Sound Library Loader/INFO]: Starting up SoundSystem... [10:49:28] [Thread-3/INFO]: Initializing LWJGL OpenAL [10:49:28] [Thread-3/INFO]: (The LWJGL binding of OpenAL. For more information, see http://www.lwjgl.org) [10:49:28] [Thread-3/INFO]: OpenAL initialized. [10:49:29] [Sound Library Loader/INFO]: Sound engine started [10:49:31] [main/INFO] [FML]: Max texture size: 16384 [10:49:32] [main/INFO]: Created: 2048x1024 textures-atlas [10:49:34] [main/ERROR] [FML]: Exception loading model for variant occultcraft:athanor#facing=west,is_on=false for blockstate "occultcraft:athanor[facing=west,is_on=false]" net.minecraftforge.client.model.ModelLoaderRegistry$LoaderException: Exception loading model occultcraft:athanor#facing=west,is_on=false with loader VariantLoader.INSTANCE, skipping at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:153) ~[ModelLoaderRegistry.class:?] at net.minecraftforge.client.model.ModelLoader.registerVariant(ModelLoader.java:233) ~[ModelLoader.class:?] at net.minecraft.client.renderer.block.model.ModelBakery.loadBlock(ModelBakery.java:153) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.loadBlocks(ModelLoader.java:221) ~[ModelLoader.class:?] at net.minecraftforge.client.model.ModelLoader.setupModelRegistry(ModelLoader.java:159) ~[ModelLoader.class:?] at net.minecraft.client.renderer.block.model.ModelManager.onResourceManagerReload(ModelManager.java:28) [ModelManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.registerReloadListener(SimpleReloadableResourceManager.java:121) [SimpleReloadableResourceManager.class:?] at net.minecraft.client.Minecraft.init(Minecraft.java:554) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:416) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:118) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_131] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_131] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_131] at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_131] at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.12.jar:?] at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.12.jar:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_131] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_131] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_131] at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_131] at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) [start/:?] at GradleStart.main(GradleStart.java:26) [start/:?] Caused by: net.minecraft.client.renderer.block.model.ModelBlockDefinition$MissingVariantException at net.minecraft.client.renderer.block.model.ModelBlockDefinition.getVariant(ModelBlockDefinition.java:83) ~[ModelBlockDefinition.class:?] at net.minecraftforge.client.model.ModelLoader$VariantLoader.loadModel(ModelLoader.java:1208) ~[ModelLoader$VariantLoader.class:?] at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:149) ~[ModelLoaderRegistry.class:?] ... 21 more [10:49:34] [main/ERROR] [FML]: Exception loading model for variant occultcraft:athanor#facing=west,is_on=true for blockstate "occultcraft:athanor[facing=west,is_on=true]" net.minecraftforge.client.model.ModelLoaderRegistry$LoaderException: Exception loading model occultcraft:athanor#facing=west,is_on=true with loader VariantLoader.INSTANCE, skipping at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:153) ~[ModelLoaderRegistry.class:?] at net.minecraftforge.client.model.ModelLoader.registerVariant(ModelLoader.java:233) ~[ModelLoader.class:?] at net.minecraft.client.renderer.block.model.ModelBakery.loadBlock(ModelBakery.java:153) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.loadBlocks(ModelLoader.java:221) ~[ModelLoader.class:?] at net.minecraftforge.client.model.ModelLoader.setupModelRegistry(ModelLoader.java:159) ~[ModelLoader.class:?] at net.minecraft.client.renderer.block.model.ModelManager.onResourceManagerReload(ModelManager.java:28) [ModelManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.registerReloadListener(SimpleReloadableResourceManager.java:121) [SimpleReloadableResourceManager.class:?] at net.minecraft.client.Minecraft.init(Minecraft.java:554) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:416) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:118) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_131] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_131] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_131] at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_131] at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.12.jar:?] at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.12.jar:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_131] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_131] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_131] at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_131] at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) [start/:?] at GradleStart.main(GradleStart.java:26) [start/:?] Caused by: net.minecraft.client.renderer.block.model.ModelBlockDefinition$MissingVariantException at net.minecraft.client.renderer.block.model.ModelBlockDefinition.getVariant(ModelBlockDefinition.java:83) ~[ModelBlockDefinition.class:?] at net.minecraftforge.client.model.ModelLoader$VariantLoader.loadModel(ModelLoader.java:1208) ~[ModelLoader$VariantLoader.class:?] at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:149) ~[ModelLoaderRegistry.class:?] ... 21 more [10:49:34] [main/ERROR] [FML]: Exception loading model for variant occultcraft:athanor#facing=east,is_on=false for blockstate "occultcraft:athanor[facing=east,is_on=false]" net.minecraftforge.client.model.ModelLoaderRegistry$LoaderException: Exception loading model occultcraft:athanor#facing=east,is_on=false with loader VariantLoader.INSTANCE, skipping at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:153) ~[ModelLoaderRegistry.class:?] at net.minecraftforge.client.model.ModelLoader.registerVariant(ModelLoader.java:233) ~[ModelLoader.class:?] at net.minecraft.client.renderer.block.model.ModelBakery.loadBlock(ModelBakery.java:153) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.loadBlocks(ModelLoader.java:221) ~[ModelLoader.class:?] at net.minecraftforge.client.model.ModelLoader.setupModelRegistry(ModelLoader.java:159) ~[ModelLoader.class:?] at net.minecraft.client.renderer.block.model.ModelManager.onResourceManagerReload(ModelManager.java:28) [ModelManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.registerReloadListener(SimpleReloadableResourceManager.java:121) [SimpleReloadableResourceManager.class:?] at net.minecraft.client.Minecraft.init(Minecraft.java:554) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:416) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:118) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_131] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_131] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_131] at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_131] at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.12.jar:?] at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.12.jar:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_131] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_131] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_131] at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_131] at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) [start/:?] at GradleStart.main(GradleStart.java:26) [start/:?] Caused by: net.minecraft.client.renderer.block.model.ModelBlockDefinition$MissingVariantException at net.minecraft.client.renderer.block.model.ModelBlockDefinition.getVariant(ModelBlockDefinition.java:83) ~[ModelBlockDefinition.class:?] at net.minecraftforge.client.model.ModelLoader$VariantLoader.loadModel(ModelLoader.java:1208) ~[ModelLoader$VariantLoader.class:?] at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:149) ~[ModelLoaderRegistry.class:?] ... 21 more [10:49:34] [main/ERROR] [FML]: Exception loading model for variant occultcraft:athanor#facing=north,is_on=false for blockstate "occultcraft:athanor[facing=north,is_on=false]" net.minecraftforge.client.model.ModelLoaderRegistry$LoaderException: Exception loading model occultcraft:athanor#facing=north,is_on=false with loader VariantLoader.INSTANCE, skipping at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:153) ~[ModelLoaderRegistry.class:?] at net.minecraftforge.client.model.ModelLoader.registerVariant(ModelLoader.java:233) ~[ModelLoader.class:?] at net.minecraft.client.renderer.block.model.ModelBakery.loadBlock(ModelBakery.java:153) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.loadBlocks(ModelLoader.java:221) ~[ModelLoader.class:?] at net.minecraftforge.client.model.ModelLoader.setupModelRegistry(ModelLoader.java:159) ~[ModelLoader.class:?] at net.minecraft.client.renderer.block.model.ModelManager.onResourceManagerReload(ModelManager.java:28) [ModelManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.registerReloadListener(SimpleReloadableResourceManager.java:121) [SimpleReloadableResourceManager.class:?] at net.minecraft.client.Minecraft.init(Minecraft.java:554) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:416) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:118) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_131] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_131] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_131] at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_131] at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.12.jar:?] at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.12.jar:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_131] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_131] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_131] at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_131] at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) [start/:?] at GradleStart.main(GradleStart.java:26) [start/:?] Caused by: net.minecraft.client.renderer.block.model.ModelBlockDefinition$MissingVariantException at net.minecraft.client.renderer.block.model.ModelBlockDefinition.getVariant(ModelBlockDefinition.java:83) ~[ModelBlockDefinition.class:?] at net.minecraftforge.client.model.ModelLoader$VariantLoader.loadModel(ModelLoader.java:1208) ~[ModelLoader$VariantLoader.class:?] at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:149) ~[ModelLoaderRegistry.class:?] ... 21 more [10:49:34] [main/FATAL] [FML]: Suppressed additional 3 model loading errors for domain occultcraft [10:49:36] [main/INFO] [FML]: Applying holder lookups [10:49:36] [main/INFO] [FML]: Holder lookups applied [10:49:36] [main/INFO] [journeymap]: JourneyMap log initialized. [10:49:36] [main/INFO] [journeymap]: initialize ENTER [10:49:36] [main/WARN] [journeymap]: core (Initialized) Bad configField entry during updateFrom(): optionsManagerViewed=null [10:49:36] [main/WARN] [journeymap]: core (Initialized) Bad configField entry during updateFrom(): splashViewed=null [10:49:36] [main/INFO] [journeymap]: [ClientAPI] built with JourneyMap API 1.3-SNAPSHOT [10:49:36] [main/INFO] [journeymap]: Initializing plugins with Client API: journeymap.client.api.impl.ClientAPI [10:49:36] [main/INFO] [journeymap]: initialize EXIT, elapsed count 0 avg ?ms [10:49:37] [main/INFO] [FML]: Injecting itemstacks [10:49:37] [main/INFO] [FML]: Itemstack injection complete [10:49:37] [main/ERROR] [journeymap]: Couldn't locate icons for Default: /Users/leobattle/Desktop/Programming/Java/Minecraft%20Modding/Occultcraft/run/mods/journeymap-1.12-5.4.9.jar/assets/journeymap/icon/entity [10:49:37] [main/INFO] [journeymap]: Added entity icons from journeymap:icon/entity. Success: false [10:49:37] [main/ERROR] [journeymap]: Couldn't locate icons for victorian_: /Users/leobattle/Desktop/Programming/Java/Minecraft%20Modding/Occultcraft/run/mods/journeymap-1.12-5.4.9.jar/assets/journeymap/theme/victorian_ [10:49:37] [main/INFO] [journeymap]: Preloaded theme textures: 0 [10:49:37] [main/INFO] [thermalfoundation]: Thermal Foundation: Tinkers' Construct Plugin Enabled. [10:49:37] [main/INFO] [thermalexpansion]: Thermal Expansion: The One Probe Plugin Enabled. [10:49:37] [main/INFO] [thermalexpansion]: Thermal Expansion: Tinkers' Construct Plugin Enabled. [10:49:37] [main/INFO] [cofhcore]: CoFH Core: Load Complete. [10:49:37] [main/INFO] [cofhworld]: Found 4 World Generation files and 0 folders present in /Users/leobattle/Desktop/Programming/Java/Minecraft Modding/Occultcraft/run/config/cofh/world. [10:49:38] [main/INFO] [cofhworld]: Reading world generation info from: cofh/world/01_thermalfoundation_ores.json: [10:49:38] [main/INFO] [cofhworld]: Finished reading cofh/world/01_thermalfoundation_ores.json [10:49:38] [main/INFO] [cofhworld]: Reading world generation info from: cofh/world/02_thermalfoundation_oil.json: [10:49:38] [main/INFO] [cofhworld]: Finished reading cofh/world/02_thermalfoundation_oil.json [10:49:38] [main/INFO] [cofhworld]: Reading world generation info from: cofh/world/03_thermalfoundation_clathrates.json: [10:49:38] [main/INFO] [cofhworld]: Finished reading cofh/world/03_thermalfoundation_clathrates.json [10:49:38] [main/INFO] [cofhworld]: CoFH World: Load Complete. [10:49:38] [main/INFO] [jei]: Starting JEI... [10:49:38] [main/INFO] [jei]: Registering categories: mezz.jei.plugins.vanilla.VanillaPlugin ... [10:49:38] [main/INFO] [jei]: Registered categories: mezz.jei.plugins.vanilla.VanillaPlugin in 19 ms [10:49:38] [main/INFO] [jei]: Registering categories: cofh.thermaldynamics.plugins.jei.JEIPluginTD ... [10:49:38] [main/INFO] [jei]: Registered categories: cofh.thermaldynamics.plugins.jei.JEIPluginTD in 5 ms [10:49:38] [main/INFO] [jei]: Registering categories: slimeknights.mantle.util.JeiPlugin ... [10:49:38] [main/INFO] [jei]: Registered categories: slimeknights.mantle.util.JeiPlugin in 0 ms [10:49:38] [main/INFO] [jei]: Registering categories: cofh.core.plugins.jei.JEIPluginCore ... [10:49:38] [main/INFO] [jei]: Registered categories: cofh.core.plugins.jei.JEIPluginCore in 0 ms [10:49:38] [main/INFO] [jei]: Registering categories: cofh.thermalexpansion.plugins.jei.JEIPluginTE ... [10:49:38] [main/INFO] [jei]: Registered categories: cofh.thermalexpansion.plugins.jei.JEIPluginTE in 164 ms [10:49:38] [main/INFO] [jei]: Registering categories: jeresources.jei.JEIConfig ... [10:49:38] [main/INFO] [jei]: Registered categories: jeresources.jei.JEIConfig in 9 ms [10:49:38] [main/INFO] [jei]: Registering categories: mcjty.lib.compat.JeiCompatibility ... [10:49:38] [main/INFO] [jei]: Registered categories: mcjty.lib.compat.JeiCompatibility in 0 ms [10:49:38] [main/INFO] [jei]: Registering categories: slimeknights.tconstruct.plugin.jei.JEIPlugin ... [10:49:38] [main/INFO] [jei]: Registered categories: slimeknights.tconstruct.plugin.jei.JEIPlugin in 10 ms [10:49:38] [main/INFO] [jei]: Registering categories: mezz.jei.plugins.jei.JEIInternalPlugin ... [10:49:38] [main/INFO] [jei]: Registered categories: mezz.jei.plugins.jei.JEIInternalPlugin in 2 ms [10:49:38] [main/INFO] [jei]: Registering plugin: mezz.jei.plugins.vanilla.VanillaPlugin ... [10:49:38] [main/INFO] [jei]: Registered vanilla repair recipes in 3 ms [10:49:38] [main/INFO] [jei]: Registered enchantment recipes in 22 ms [10:49:38] [main/INFO] [jei]: Registered plugin: mezz.jei.plugins.vanilla.VanillaPlugin in 139 ms [10:49:38] [main/INFO] [jei]: Registering plugin: cofh.thermaldynamics.plugins.jei.JEIPluginTD ... [10:49:38] [main/INFO] [jei]: Registered plugin: cofh.thermaldynamics.plugins.jei.JEIPluginTD in 6 ms [10:49:38] [main/INFO] [jei]: Registering plugin: slimeknights.mantle.util.JeiPlugin ... [10:49:38] [main/INFO] [jei]: Registered plugin: slimeknights.mantle.util.JeiPlugin in 4 ms [10:49:38] [main/INFO] [jei]: Registering plugin: cofh.core.plugins.jei.JEIPluginCore ... [10:49:38] [main/INFO] [jei]: Registered plugin: cofh.core.plugins.jei.JEIPluginCore in 3 ms [10:49:38] [main/INFO] [jei]: Registering plugin: cofh.thermalexpansion.plugins.jei.JEIPluginTE ... [10:49:38] [main/INFO] [jei]: Registered plugin: cofh.thermalexpansion.plugins.jei.JEIPluginTE in 71 ms [10:49:38] [main/INFO] [jei]: Registering plugin: jeresources.jei.JEIConfig ... [10:49:39] [main/INFO] [jei]: Registered plugin: jeresources.jei.JEIConfig in 463 ms [10:49:39] [main/INFO] [jei]: Registering plugin: mcjty.lib.compat.JeiCompatibility ... [10:49:39] [main/INFO] [jei]: Registered plugin: mcjty.lib.compat.JeiCompatibility in 2 ms [10:49:39] [main/INFO] [jei]: Registering plugin: slimeknights.tconstruct.plugin.jei.JEIPlugin ... [10:49:39] [main/INFO] [jei]: Registered plugin: slimeknights.tconstruct.plugin.jei.JEIPlugin in 70 ms [10:49:39] [main/INFO] [jei]: Registering plugin: mezz.jei.plugins.jei.JEIInternalPlugin ... [10:49:39] [main/INFO] [jei]: Registered plugin: mezz.jei.plugins.jei.JEIInternalPlugin in 0 ms [10:49:39] [main/INFO] [jei]: Building recipe registry... [10:49:39] [main/INFO] [jei]: Built recipe registry in 188 ms [10:49:39] [main/INFO] [jei]: Building ingredient list... [10:49:39] [main/INFO] [jei]: Built ingredient list in 36 ms [10:49:39] [main/INFO] [jei]: Building ingredient filter... [10:49:40] [main/INFO] [jei]: Built ingredient filter in 548 ms [10:49:40] [main/INFO] [jei]: Building runtime... [10:49:40] [main/INFO] [jei]: Built runtime in 53 ms [10:49:40] [main/INFO] [jei]: Sending runtime to plugin: mezz.jei.plugins.vanilla.VanillaPlugin ... [10:49:40] [main/INFO] [jei]: Sending runtime to plugin: cofh.thermaldynamics.plugins.jei.JEIPluginTD ... [10:49:40] [main/INFO] [jei]: Sending runtime to plugin: slimeknights.mantle.util.JeiPlugin ... [10:49:40] [main/INFO] [jei]: Sending runtime to plugin: cofh.core.plugins.jei.JEIPluginCore ... [10:49:40] [main/INFO] [jei]: Sending runtime to plugin: cofh.thermalexpansion.plugins.jei.JEIPluginTE ... [10:49:40] [main/INFO] [jei]: Sending runtime to plugin: jeresources.jei.JEIConfig ... [10:49:40] [main/INFO] [jei]: Sending runtime to plugin: mcjty.lib.compat.JeiCompatibility ... [10:49:40] [main/INFO] [jei]: Sending runtime to plugin: slimeknights.tconstruct.plugin.jei.JEIPlugin ... [10:49:40] [main/INFO] [jei]: Sending runtime to plugin: mezz.jei.plugins.jei.JEIInternalPlugin ... [10:49:40] [main/INFO] [jei]: Finished Starting JEI in 2120 ms [10:49:40] [main/INFO] [thermalfoundation]: [Whitelist] Reading established Whitelist from file. [10:49:40] [main/INFO] [thermalfoundation]: Thermal Foundation: Load Complete. [10:49:40] [main/INFO] [thermaldynamics]: Thermal Dynamics: Load Complete. [10:49:40] [main/INFO] [thermalexpansion]: Thermal Expansion: Load Complete. [10:49:40] [main/INFO] [FML]: Forge Mod Loader has successfully loaded 20 mods [10:49:40] [main/WARN]: Skipping bad option: lastServer: [10:49:41] [main/ERROR] [TEXTURE ERRORS]: +=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+= [10:49:41] [main/ERROR] [TEXTURE ERRORS]: The following texture errors were found. [10:49:41] [main/ERROR] [TEXTURE ERRORS]: ================================================== [10:49:41] [main/ERROR] [TEXTURE ERRORS]: DOMAIN occultcraft [10:49:41] [main/ERROR] [TEXTURE ERRORS]: -------------------------------------------------- [10:49:41] [main/ERROR] [TEXTURE ERRORS]: domain occultcraft is missing 14 textures [10:49:41] [main/ERROR] [TEXTURE ERRORS]: domain occultcraft has 1 location: [10:49:41] [main/ERROR] [TEXTURE ERRORS]: mod occultcraft resources at /Users/leobattle/Desktop/Programming/Java/Minecraft Modding/Occultcraft/bin [10:49:41] [main/ERROR] [TEXTURE ERRORS]: ------------------------- [10:49:41] [main/ERROR] [TEXTURE ERRORS]: The missing resources for domain occultcraft are: [10:49:41] [main/ERROR] [TEXTURE ERRORS]: textures/items/copperingot.png [10:49:41] [main/ERROR] [TEXTURE ERRORS]: textures/blocks/tinblock.png [10:49:41] [main/ERROR] [TEXTURE ERRORS]: textures/blocks/leadblock.png [10:49:41] [main/ERROR] [TEXTURE ERRORS]: textures/items/tinnugget.png [10:49:41] [main/ERROR] [TEXTURE ERRORS]: textures/items/athanorupgrade_output.png [10:49:41] [main/ERROR] [TEXTURE ERRORS]: textures/items/leadnugget.png [10:49:41] [main/ERROR] [TEXTURE ERRORS]: textures/items/silveringot.png [10:49:41] [main/ERROR] [TEXTURE ERRORS]: textures/blocks/silverblock.png [10:49:41] [main/ERROR] [TEXTURE ERRORS]: textures/items/silvernugget.png [10:49:41] [main/ERROR] [TEXTURE ERRORS]: textures/items/coppernugget.png [10:49:41] [main/ERROR] [TEXTURE ERRORS]: textures/items/leadingot.png [10:49:41] [main/ERROR] [TEXTURE ERRORS]: textures/items/athanorupdrage_filter.png [10:49:41] [main/ERROR] [TEXTURE ERRORS]: textures/blocks/copperblock.png [10:49:41] [main/ERROR] [TEXTURE ERRORS]: textures/items/tiningot.png [10:49:41] [main/ERROR] [TEXTURE ERRORS]: ------------------------- [10:49:41] [main/ERROR] [TEXTURE ERRORS]: No other errors exist for domain occultcraft [10:49:41] [main/ERROR] [TEXTURE ERRORS]: ================================================== [10:49:41] [main/ERROR] [TEXTURE ERRORS]: +=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+= [10:49:41] [Realms Notification Availability checker #1/INFO]: Could not authorize you against Realms server: Invalid session id [10:49:46] [Server thread/INFO]: Starting integrated minecraft server version 1.12 [10:49:46] [Server thread/INFO]: Generating keypair [10:49:46] [Server thread/INFO] [FML]: Injecting existing registry data into this server instance [10:49:46] [Server thread/INFO] [FML]: Applying holder lookups [10:49:46] [Server thread/INFO] [FML]: Holder lookups applied [10:49:46] [Server thread/INFO] [FML]: Loading dimension 0 (Occultcraft) (net.minecraft.server.integrated.IntegratedServer@478284cf) [10:49:47] [Server thread/INFO]: Loaded 488 advancements [10:49:47] [Server thread/INFO] [FML]: Loading dimension 1 (Occultcraft) (net.minecraft.server.integrated.IntegratedServer@478284cf) [10:49:47] [Server thread/INFO] [FML]: Loading dimension -1 (Occultcraft) (net.minecraft.server.integrated.IntegratedServer@478284cf) [10:49:47] [Server thread/INFO]: Preparing start region for level 0 [10:49:48] [Server thread/INFO]: Preparing spawn area: 50% [10:49:48] [Server thread/INFO]: Changing view distance to 8, from 10 [10:49:50] [Netty Local Client IO #0/INFO] [FML]: Server protocol version 2 [10:49:50] [Netty Server IO #1/INFO] [FML]: Client protocol version 2 [10:49:50] [Netty Server IO #1/INFO] [FML]: Client attempting to join with 20 mods : minecraft@1.12,tconstruct@1.12-2.7.3.30,tinkertoolleveling@1.12-1.0.2b.DEV.1a79301,FML@8.0.99.99,theoneprobe@1.4.18,thermalexpansion@5.3.5,thermaldynamics@2.3.5,redstoneflux@2.0.1,cofhworld@1.0.1,jei@4.7.5.85,guideapi@1.12-2.1.4-57,jeresources@0.8.3.23,cofhcore@4.3.5,forge@14.21.1.2428,thermalfoundation@2.3.5,codechickenlib@3.1.2.297,mantle@1.12-1.3.1.21,mcp@9.19,journeymap@1.12-5.4.9,occultcraft@0.1 [10:49:50] [Netty Local Client IO #0/INFO] [FML]: [Netty Local Client IO #0] Client side modded connection established [10:49:50] [Server thread/INFO] [FML]: [Server thread] Server side modded connection established [10:49:50] [Server thread/INFO]: Player512[local:E:e067b1f7] logged in with entity id 348 at (118.57306314547039, 68.0, 78.02557322062613) [10:49:50] [Server thread/INFO]: Player512 joined the game [10:49:51] [Server thread/INFO]: Saving and pausing game... [10:49:51] [Server thread/INFO]: Saving chunks for level 'Occultcraft'/overworld [10:49:51] [Server thread/INFO]: Saving chunks for level 'Occultcraft'/the_nether [10:49:51] [Server thread/INFO]: Saving chunks for level 'Occultcraft'/the_end [10:49:52] [main/INFO]: Loaded 18 advancements [10:49:53] [pool-2-thread-1/WARN]: Couldn't look up profile properties for com.mojang.authlib.GameProfile@fc9ef7c[id=4296a45d-fd1d-3a8b-9f25-0f078d10cc6b,name=Player512,properties={},legacy=false] com.mojang.authlib.exceptions.AuthenticationException: The client has sent too many requests within a certain amount of time at com.mojang.authlib.yggdrasil.YggdrasilAuthenticationService.makeRequest(YggdrasilAuthenticationService.java:79) ~[YggdrasilAuthenticationService.class:?] at com.mojang.authlib.yggdrasil.YggdrasilMinecraftSessionService.fillGameProfile(YggdrasilMinecraftSessionService.java:180) [YggdrasilMinecraftSessionService.class:?] at com.mojang.authlib.yggdrasil.YggdrasilMinecraftSessionService$1.load(YggdrasilMinecraftSessionService.java:60) [YggdrasilMinecraftSessionService$1.class:?] at com.mojang.authlib.yggdrasil.YggdrasilMinecraftSessionService$1.load(YggdrasilMinecraftSessionService.java:57) [YggdrasilMinecraftSessionService$1.class:?] at com.google.common.cache.LocalCache$LoadingValueReference.loadFuture(LocalCache.java:3716) [guava-21.0.jar:?] at com.google.common.cache.LocalCache$Segment.loadSync(LocalCache.java:2424) [guava-21.0.jar:?] at com.google.common.cache.LocalCache$Segment.lockedGetOrLoad(LocalCache.java:2298) [guava-21.0.jar:?] at com.google.common.cache.LocalCache$Segment.get(LocalCache.java:2211) [guava-21.0.jar:?] at com.google.common.cache.LocalCache.get(LocalCache.java:4154) [guava-21.0.jar:?] at com.google.common.cache.LocalCache.getOrLoad(LocalCache.java:4158) [guava-21.0.jar:?] at com.google.common.cache.LocalCache$LocalLoadingCache.get(LocalCache.java:5147) [guava-21.0.jar:?] at com.google.common.cache.LocalCache$LocalLoadingCache.getUnchecked(LocalCache.java:5153) [guava-21.0.jar:?] at com.mojang.authlib.yggdrasil.YggdrasilMinecraftSessionService.fillProfileProperties(YggdrasilMinecraftSessionService.java:170) [YggdrasilMinecraftSessionService.class:?] at net.minecraft.client.Minecraft.getProfileProperties(Minecraft.java:3161) [Minecraft.class:?] at net.minecraft.client.resources.SkinManager$3.run(SkinManager.java:138) [SkinManager$3.class:?] at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) [?:1.8.0_131] at java.util.concurrent.FutureTask.run(FutureTask.java:266) [?:1.8.0_131] at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142) [?:1.8.0_131] at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617) [?:1.8.0_131] at java.lang.Thread.run(Thread.java:748) [?:1.8.0_131] [10:49:55] [main/WARN] [journeymap]: core (Initialized) Bad configField entry during updateFrom(): optionsManagerViewed=null [10:49:55] [main/WARN] [journeymap]: core (Initialized) Bad configField entry during updateFrom(): splashViewed=null [10:49:55] [main/INFO] [journeymap]: Loading journeymap.topo.config [10:49:55] [main/INFO] [journeymap]: Loaded 0 waypoints from ./journeymap/data/sp/Occultcraft/waypoints [10:49:55] [main/INFO] [journeymap]: Loading blocks and textures... [10:49:55] [main/INFO] [journeymap]: Existing color palette's resource packs and mod names match current loadout. [10:49:55] [main/INFO] [journeymap]: New color palette will be created [10:49:55] [main/INFO] [journeymap]: Cached colors from TextureAtlasSprites: 514 [10:49:55] [main/INFO] [journeymap]: Initialized 10510 block colors from mods and resource packs in 121ms [10:49:56] [main/INFO] [journeymap]: Color palette file generated with 747 colors in 1339ms for: /Users/leobattle/Desktop/Programming/Java/Minecraft Modding/Occultcraft/run/journeymap/colorpalette.json [10:49:56] [main/INFO] [journeymap]: Updated color palette file: /Users/leobattle/Desktop/Programming/Java/Minecraft Modding/Occultcraft/run/journeymap/colorpalette.json [10:49:57] [main/INFO] [journeymap]: Mapping started in ./journeymap/data/sp/Occultcraft/DIM0. Memory: 990MB total, 288MB free [10:49:57] [main/INFO]: [CHAT] §eJourneyMap:§f Press [§bJ§f] [10:49:57] [main/INFO] [journeymap]: JourneyMap: Press [J] [10:51:07] [Server thread/INFO]: Saving and pausing game... [10:51:07] [Server thread/INFO]: Saving chunks for level 'Occultcraft'/overworld [10:51:07] [Server thread/INFO]: Saving chunks for level 'Occultcraft'/the_nether [10:51:07] [Server thread/INFO]: Saving chunks for level 'Occultcraft'/the_end [10:51:08] [main/INFO]: Stopping! [10:51:08] [main/INFO] [journeymap]: Mapping halted in ./journeymap/data/sp/Occultcraft/DIM0 [10:51:08] [Server thread/INFO]: Stopping server [10:51:08] [Server thread/INFO]: Saving players [10:51:08] [Server thread/INFO]: Saving worlds [10:51:08] [Server thread/INFO]: Saving chunks for level 'Occultcraft'/overworld [10:51:08] [Server thread/INFO]: Saving chunks for level 'Occultcraft'/the_nether [10:51:08] [Server thread/INFO]: Saving chunks for level 'Occultcraft'/the_end [10:51:08] [Server thread/INFO] [FML]: Unloading dimension 0 [10:51:08] [Server thread/INFO] [FML]: Unloading dimension -1 [10:51:08] [Server thread/INFO] [FML]: Unloading dimension 1 [10:51:08] [main/INFO]: SoundSystem shutting down... AL lib: (WW) FreeDevice: (0x7f957d29f800) Deleting 3 Buffer(s) [10:51:09] [main/WARN]: Author: Paul Lamb, www.paulscode.com Quote
Jay Avery Posted September 17, 2017 Posted September 17, 2017 On 9/17/2017 at 9:52 AM, meee39 said: Exception loading model for variant occultcraft:athanor#facing=west,is_on=true for blockstate "occultcraft:athanor[facing=west,is_on=true]" Expand The variant it's looking for: [facing=west,is_on=true] The variant in your blockstates file: "is_on=true,facing=west": { Can you spot the difference? Fully-defined variants are simply strings, they must be an exact match - forge doesn't know that you mean the same thing when you have the variants written in a different order. The correct order to write the variants is with the variant names in alphabetical order, so "facing" comes before "is_on". Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.