Jump to content
View in the app

A better way to browse. Learn more.

Forge Forums

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

DarkProd02

Members
  • Joined

  • Last visited

Everything posted by DarkProd02

  1. Yes i changed my web site from zenserv to 000webhost and now it's work thnx all
  2. So the problem come from the website?
  3. There is no emerald that tells me that an update is available
  4. Done i have did it but now forge version checker says UP_TO_DATE.... but no because mod version = 1.0 , update.json = 2.0
  5. the checker is enable in forge.cfg
  6. It says nothing there is no trace with forge. Version check
  7. No because even if I change the version of the mod there is no emerald to indicate that an update is available
  8. HI , I have a problem with forge updater : https://mcforge.readthedocs.io/en/latest/gettingstarted/autoupdate/ . I have everything as said in the documentations but it does not work. My update.json : http://archydium.zenserv.fr/minecraft/update/update.json ArchyMod.java (Main class) : package fr.darkprod.archymod; import fr.darkprod.archymod.commands.CommandArchydium1; import fr.darkprod.archymod.commands.CommandArchydium2; import fr.darkprod.archymod.fuel.IFuelHandlerArchydium; import fr.darkprod.archymod.gen.GenOres; import fr.darkprod.archymod.gui.GuiHandler; import fr.darkprod.archymod.handlers.ArchydiumSoundHandler; import fr.darkprod.archymod.init.ModBlocks; import fr.darkprod.archymod.init.ModItems; import fr.darkprod.archymod.init.ModRecipies; import fr.darkprod.archymod.proxy.CommonProxy; import fr.darkprod.archymod.tiles.TileInventoryFurnace; import net.minecraft.client.renderer.BlockModelRenderer; import net.minecraft.creativetab.CreativeTabs; import net.minecraft.init.Blocks; import net.minecraft.item.Item; import net.minecraft.item.ItemStack; import net.minecraftforge.fml.common.Loader; import net.minecraftforge.fml.common.Mod; import net.minecraftforge.fml.common.Mod.CustomProperty; import net.minecraftforge.fml.common.Mod.EventHandler; import net.minecraftforge.fml.common.ModClassLoader; import net.minecraftforge.fml.common.SidedProxy; import net.minecraftforge.fml.common.event.FMLInitializationEvent; import net.minecraftforge.fml.common.event.FMLPostInitializationEvent; import net.minecraftforge.fml.common.event.FMLPreInitializationEvent; import net.minecraftforge.fml.common.event.FMLServerStartingEvent; import net.minecraftforge.fml.common.network.NetworkRegistry; import net.minecraftforge.fml.common.registry.GameRegistry; import net.minecraftforge.fml.relauncher.Side; import net.minecraftforge.fml.relauncher.SideOnly; import net.minecraftforge.oredict.OreDictionary; @Mod(modid = References.MOD_ID, name = References.MOD_NAME, version = References.VERSION, acceptedMinecraftVersions = "[1.10,1.10.2]" , updateJSON = References.updateJSON) public class ArchyMod { @SidedProxy(clientSide = References.CLIENT_PROXY, serverSide = References.SERVER_PROXY) public static CommonProxy proxy; @Mod.Instance(References.MOD_ID) public static ArchyMod instance; public static final int GUI_BACKPACK = 0; public static final int GUI_FURNACE = 1; public static CreativeTabs ArchyMod = new CreativeTabs("ArchyMod") { @SideOnly(Side.CLIENT) public Item getTabIconItem() { return ModItems.ArchydiumIngot; } }; @Mod.EventHandler public void serverLoad(FMLServerStartingEvent e) { e.registerServerCommand(new CommandArchydium1()); //e.registerServerCommand(new CommandArchydium2()); } @Mod.EventHandler public void preInit(FMLPreInitializationEvent e) { proxy.preInit(); ModItems.init(); ModItems.register(); ModBlocks.init(); GameRegistry.registerFuelHandler(new IFuelHandlerArchydium()); } @Mod.EventHandler public void init(FMLInitializationEvent e) { proxy.init(); GameRegistry.registerTileEntity(TileInventoryFurnace.class, "TileArchydiumFurnace"); NetworkRegistry.INSTANCE.registerGuiHandler(instance, new GuiHandler()); ArchydiumSoundHandler.init(); GameRegistry.registerWorldGenerator(new GenOres(), 0); OreDictionary.registerOre("oreArchydium", ModBlocks.oreArchydium); OreDictionary.registerOre("oreArpaz", ModBlocks.ArpazOre); OreDictionary.registerOre("oreArzot", ModBlocks.ArzotOre); OreDictionary.registerOre("blockBush", ModBlocks.ArchyBush); ModRecipies.init(); } @Mod.EventHandler public void postInit(FMLPostInitializationEvent e) { proxy.postInit(); } } References class : package fr.darkprod.archymod; import com.mojang.realmsclient.gui.ChatFormatting; public class References { public static final String MOD_ID = "archydium"; public static final String MOD_NAME = "Archydium Mod"; public static final String VERSION = "1.0"; public static final String CLIENT_PROXY = "fr.darkprod.archymod.proxy.ClientProxy"; public static final String SERVER_PROXY = "fr.darkprod.archymod.proxy.ServerProxy"; public static final String HoldShift = ChatFormatting.GREEN + "Hold" + ChatFormatting.RESET + ChatFormatting.BLUE + ChatFormatting.ITALIC +" <Shift>" + ChatFormatting.RESET + ChatFormatting.GREEN + " To Open" + ChatFormatting.RESET; public static final String updateJSON = "http://archydium.zenserv.fr/minecraft/update/update.json"; } Help me please
  9. Hello everyone, I make a mod for mc 1.10.2 and I would like to make an auto updater mod. I explain ,for example the mod is in version 1.0, the developer made an update in 1.1 and the next start of the game I want that the mod automatically updates how to do it?
  10. Okay and how u can do that?
  11. On the server a player can't do a right click on an item, he can do that only on client side
  12. Yes of course but on the server an item. Can't be right clicked
  13. So what i need to Do With sides?
  14. okay thx but do you have the code plz?
  15. So how i can do to send a message to all players?
  16. Hi all, I try to send a message to all players when a players do right-click on an item. here is my code: package fr.darkprod.archymod.items; import java.util.List; import org.lwjgl.input.Keyboard; import com.mojang.realmsclient.gui.ChatFormatting; import com.mojang.realmsclient.util.Pair; import fr.darkprod.archymod.ArchyMod; import fr.darkprod.archymod.References; import fr.darkprod.archymod.handlers.ArchydiumSoundHandler; import fr.darkprod.archymod.init.ModBlocks; import net.minecraft.block.Block; import net.minecraft.block.state.IBlockState; import net.minecraft.client.Minecraft; import net.minecraft.entity.player.EntityPlayer; import net.minecraft.entity.player.EntityPlayerMP; import net.minecraft.init.Blocks; import net.minecraft.inventory.ISidedInventory; import net.minecraft.item.Item; import net.minecraft.item.ItemStack; import net.minecraft.server.MinecraftServer; import net.minecraft.util.ActionResult; import net.minecraft.util.EnumActionResult; import net.minecraft.util.EnumFacing; import net.minecraft.util.EnumHand; import net.minecraft.util.SoundCategory; import net.minecraft.util.SoundEvent; import net.minecraft.util.math.BlockPos; import net.minecraft.util.text.ITextComponent; import net.minecraft.util.text.TextComponentString; import net.minecraft.world.World; import net.minecraftforge.fml.common.FMLCommonHandler; import net.minecraftforge.items.IItemHandler; import net.minecraftforge.items.ItemHandlerHelper; import scala.util.Random; public class PremiumLeather extends Item { public PremiumLeather(String name) { this.setRegistryName(name); this.setUnlocalizedName(name); this.setCreativeTab(ArchyMod.ArchyMod); } @Override public ActionResult<ItemStack> onItemRightClick(ItemStack itemStackIn, World worldIn, EntityPlayer playerIn,EnumHand hand) { if (playerIn.capabilities.isCreativeMode) { if (worldIn.isRemote) { Random randomX = new Random(); int maxX = 200; int minX = 1; int randomX1 = randomX.nextInt((maxX - minX) + 1);//random number from 1 to 100. Random randomY = new Random(); int maxY = 200; int minY = 1; int randomY1 = randomY.nextInt((maxY - minY) + 1);//random number from 1 to 100. Random randomZ = new Random(); int maxZ = 200; int minZ = 1; int randomZ1 = randomZ.nextInt((maxZ - minZ) + 1);//random number from 1 to 100. Block block = ModBlocks.ArchydiumBlock; BlockPos blockPos = new BlockPos(randomX1,randomY1-1,randomZ1); IBlockState blockState = block.getDefaultState(); worldIn.setBlockState(blockPos,blockState); /*Block block2 = Blocks.STONE; BlockPos blockPos2 = new BlockPos(randomX1,randomY1-2,randomZ1); IBlockState blockState2 = block2.getDefaultState(); worldIn.setBlockState(blockPos2,blockState2);*/ FMLCommonHandler.instance().getMinecraftServerInstance().getServer().getPlayerList().sendChatMsg(new TextComponentString("Test")); if (playerIn instanceof EntityPlayer) { } worldIn.playSound(playerIn, randomX1, randomY1, randomZ1, ArchydiumSoundHandler.music, SoundCategory.RECORDS, 1.0F, 1.0F); }else { } }else { playerIn.addChatMessage(new TextComponentString(ChatFormatting.RED+"Vous devez etre en mode creatif pour faire un right-click et lancer la musique!")); } return new ActionResult<ItemStack>(EnumActionResult.SUCCESS, itemStackIn); } @Override public void addInformation(ItemStack stack, EntityPlayer playerIn, List<String> tooltip, boolean advanced) { String ifOpen = ""+ ChatFormatting.GOLD + ChatFormatting.ITALIC + "Right-Click on this item to Play Music "; if (Keyboard.isKeyDown(Keyboard.KEY_LSHIFT)){ tooltip.remove(References.HoldShift); tooltip.add(ifOpen); }else { tooltip.remove(ifOpen); tooltip.add(References.HoldShift); } } } and here is the error : Thnx :)
  17. I want the person who executes this command (in this case a player) to be able to execute it only on a server while being OP and that it can not execute it on the singleplayer world
  18. I want the person who will enter this command can only do it on a server side
  19. I don ´t use compareTo its an auto implementation when i created the class And when i am on a singleplayer the command works
  20. hi peoples , i tried to allow a command only on server side but this doesn't work . Code: package fr.darkprod.archymod.commands; import java.util.ArrayList; import java.util.List; import net.minecraft.block.Block; import net.minecraft.block.state.IBlockState; import net.minecraft.command.CommandBase; import net.minecraft.command.CommandException; import net.minecraft.command.ICommand; import net.minecraft.command.ICommandSender; import net.minecraft.entity.player.EntityPlayer; import net.minecraft.init.Blocks; import net.minecraft.item.ItemStack; import net.minecraft.item.crafting.FurnaceRecipes; import net.minecraft.server.MinecraftServer; import net.minecraft.util.math.BlockPos; import net.minecraft.util.text.ITextComponent; import net.minecraft.util.text.TextComponentString; import net.minecraft.util.text.TextFormatting; import net.minecraft.world.World; public class CommandArchydium1 extends CommandBase { @Override public int compareTo(ICommand arg0) { // TODO Auto-generated method stub return 0; } @Override public String getCommandName() { // TODO Auto-generated method stub return "archydium"; } @Override public String getCommandUsage(ICommandSender sender) { // TODO Auto-generated method stub return "commande temporaire"; } @Override public List<String> getCommandAliases() { List<String> commandAliases = new ArrayList(); //commandAliases.add("cuire"); //commandAliases.add("afurnace"); return commandAliases; } @Override public void execute(MinecraftServer server, ICommandSender sender, String[] args) throws CommandException { if ((sender instanceof EntityPlayer)) { EntityPlayer player1 = (EntityPlayer)sender; World w = player1.getEntityWorld(); if(!w.isRemote){ EntityPlayer player = (EntityPlayer)sender; ItemStack item = player.getHeldItemMainhand(); if (item == null) { player.addChatMessage(new TextComponentString(TextFormatting.RED+"Erreur: Votre main est vide !")); return; } ItemStack itemResult = FurnaceRecipes.instance().getSmeltingResult(item); if (itemResult == null) { player.addChatMessage(new TextComponentString(TextFormatting.RED+"Erreur: Impossible de cuire ces items")); return; } itemResult.stackSize = player.inventory.getStackInSlot(player.inventory.currentItem).stackSize; player.inventory.setInventorySlotContents(player.inventory.currentItem, null); player.inventory.addItemStackToInventory(itemResult); player.addChatMessage(new TextComponentString(TextFormatting.GREEN+"Item(s) cuit(s) !")); } else { server.addChatMessage(new TextComponentString("La commande doit etre execute depuis un joueur !")); } } } @Override public boolean checkPermission(MinecraftServer server, ICommandSender sender) { return sender.canCommandSenderUseCommand(this.getRequiredPermissionLevel(), this.getCommandName()); } @Override public int getRequiredPermissionLevel() { return 4; } @Override public List<String> getTabCompletionOptions(MinecraftServer server, ICommandSender sender, String[] args, BlockPos pos) { // TODO Auto-generated method stub return null; } @Override public boolean isUsernameIndex(String[] args, int index) { // TODO Auto-generated method stub return false; } }
  21. No because on 1.10.2 resources can be in uppercase
  22. Hello peoples, I have a problem with my mod (with a block textures) Error : 2018-01-16 10:34:03,385 WARN Unable to instantiate org.fusesource.jansi.WindowsAnsiOutputStream 2018-01-16 10:34:03,395 WARN Unable to instantiate org.fusesource.jansi.WindowsAnsiOutputStream [10:34:03] [main/INFO] [GradleStart]: Extra: [] [10:34:03] [main/INFO] [GradleStart]: Running with arguments: [--userProperties, {}, --assetsDir, C:/Users/IMENE PC/.gradle/caches/minecraft/assets, --assetIndex, 1.10, --accessToken{REDACTED}, --version, 1.10.2, --tweakClass, net.minecraftforge.fml.common.launcher.FMLTweaker, --tweakClass, net.minecraftforge.gradle.tweakers.CoremodTweaker] [10:34:04] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker [10:34:04] [main/INFO] [LaunchWrapper]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker [10:34:04] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker [10:34:04] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLTweaker [10:34:04] [main/INFO] [FML]: Forge Mod Loader version 12.18.3.2185 for Minecraft 1.10.2 loading [10:34:04] [main/INFO] [FML]: Java is Java HotSpot(TM) 64-Bit Server VM, version 1.8.0_151, running on Windows 10:amd64:10.0, installed at C:\Program Files\Java\jre1.8.0_151 [10:34:04] [main/INFO] [FML]: Managed to load a deobfuscated Minecraft name- we are in a deobfuscated environment. Skipping runtime deobfuscation [10:34:04] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.gradle.tweakers.CoremodTweaker [10:34:04] [main/INFO] [GradleStart]: Injecting location in coremod net.minecraftforge.fml.relauncher.FMLCorePlugin [10:34:04] [main/INFO] [GradleStart]: Injecting location in coremod net.minecraftforge.classloading.FMLForgePlugin [10:34:04] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker [10:34:04] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLDeobfTweaker [10:34:04] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.AccessTransformerTweaker [10:34:04] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker [10:34:04] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker [10:34:04] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper [10:34:05] [main/ERROR] [FML]: The binary patch set is missing. Either you are in a development environment, or things are not going to work! [10:34:12] [main/ERROR] [FML]: FML appears to be missing any signature data. This is not a good thing [10:34:12] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper [10:34:12] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLDeobfTweaker [10:34:16] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.gradle.tweakers.AccessTransformerTweaker [10:34:16] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.TerminalTweaker [10:34:16] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.TerminalTweaker [10:34:16] [main/INFO] [LaunchWrapper]: Launching wrapped minecraft {net.minecraft.client.main.Main} 2018-01-16 10:34:21,111 WARN Unable to instantiate org.fusesource.jansi.WindowsAnsiOutputStream 2018-01-16 10:34:21,424 WARN Unable to instantiate org.fusesource.jansi.WindowsAnsiOutputStream 2018-01-16 10:34:21,433 WARN Unable to instantiate org.fusesource.jansi.WindowsAnsiOutputStream [10:34:23] [Client thread/INFO]: Setting user: Player79 [10:34:39] [Client thread/WARN]: Skipping bad option: lastServer: [10:34:39] [Client thread/INFO]: LWJGL Version: 2.9.4 [10:34:43] [Client thread/INFO] [STDOUT]: [net.minecraftforge.fml.client.SplashProgress:start:221]: ---- Minecraft Crash Report ---- // Sorry :( Time: 16/01/18 10:34 Description: Loading screen debug info This is just a prompt for computer specs to be printed. THIS IS NOT A ERROR A detailed walkthrough of the error, its code path and all known details is as follows: --------------------------------------------------------------------------------------- -- System Details -- Details: Minecraft Version: 1.10.2 Operating System: Windows 10 (amd64) version 10.0 Java Version: 1.8.0_151, Oracle Corporation Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation Memory: 879503856 bytes (838 MB) / 1038876672 bytes (990 MB) up to 1537998848 bytes (1466 MB) JVM Flags: 3 total; -Xincgc -Xmx1500M -Xms1024M IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0 FML: Loaded coremods (and transformers): GL info: ' Vendor: 'Intel' Version: '4.0.0 - Build 10.18.10.4425' Renderer: 'Intel(R) HD Graphics 4000' [10:34:43] [Client thread/INFO] [FML]: MinecraftForge v12.18.3.2185 Initialized [10:34:43] [Client thread/INFO] [FML]: Replaced 231 ore recipes [10:34:44] [Client thread/INFO] [FML]: Found 0 mods from the command line. Injecting into mod discoverer [10:34:44] [Client thread/INFO] [FML]: Searching C:\Users\IMENE PC\Desktop\forge-1.10.2-12.18.3.2185-mdk\run\mods for mods [10:34:49] [Client thread/INFO] [FML]: Forge Mod Loader has identified 4 mods to load [10:34:50] [Client thread/INFO] [FML]: Attempting connection with missing mods [mcp, FML, Forge, archydium] at CLIENT [10:34:50] [Client thread/INFO] [FML]: Attempting connection with missing mods [mcp, FML, Forge, archydium] at SERVER [10:34:51] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:Archymod [10:34:51] [Client thread/INFO] [FML]: Processing ObjectHolder annotations [10:34:51] [Client thread/INFO] [FML]: Found 423 ObjectHolder annotations [10:34:51] [Client thread/INFO] [FML]: Identifying ItemStackHolder annotations [10:34:51] [Client thread/INFO] [FML]: Found 0 ItemStackHolder annotations [10:34:51] [Client thread/INFO] [FML]: Applying holder lookups [10:34:51] [Client thread/INFO] [FML]: Holder lookups applied [10:34:51] [Client thread/INFO] [FML]: Applying holder lookups [10:34:51] [Client thread/INFO] [FML]: Holder lookups applied [10:34:51] [Client thread/INFO] [FML]: Applying holder lookups [10:34:51] [Client thread/INFO] [FML]: Holder lookups applied [10:34:52] [Client thread/INFO] [FML]: Configured a dormant chunk cache size of 0 [10:34:52] [Forge Version Check/INFO] [ForgeVersionCheck]: [Forge] Starting version check at http://files.minecraftforge.net/maven/net/minecraftforge/forge/promotions_slim.json [10:34:52] [Client thread/INFO] [FML]: Applying holder lookups [10:34:52] [Client thread/INFO] [FML]: Holder lookups applied [10:34:52] [Client thread/INFO] [FML]: Injecting itemstacks [10:34:52] [Client thread/INFO] [FML]: Itemstack injection complete [10:34:52] [Forge Version Check/INFO] [ForgeVersionCheck]: [Forge] Found status: UP_TO_DATE Target: null [10:35:04] [Sound Library Loader/INFO]: Starting up SoundSystem... [10:35:04] [Thread-8/INFO]: Initializing LWJGL OpenAL [10:35:04] [Thread-8/INFO]: (The LWJGL binding of OpenAL. For more information, see http://www.lwjgl.org) [10:35:04] [Thread-8/INFO]: OpenAL initialized. [10:35:04] [Sound Library Loader/INFO]: Sound engine started [10:35:22] [Client thread/INFO] [FML]: Max texture size: 8192 [10:35:22] [Client thread/INFO]: Created: 16x16 textures-atlas [10:35:24] [Client thread/ERROR] [FML]: Exception loading model for variant archydium:archydiumFurnace#facing=east for blockstate "archydium:archydiumFurnace[facing=east]" net.minecraftforge.client.model.ModelLoaderRegistry$LoaderException: Exception loading model archydium:archydiumFurnace#facing=east 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:241) ~[ModelLoader.class:?] at net.minecraft.client.renderer.block.model.ModelBakery.loadBlock(ModelBakery.java:145) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.loadBlocks(ModelLoader.java:229) ~[ModelLoader.class:?] at net.minecraftforge.client.model.ModelLoader.setupModelRegistry(ModelLoader.java:146) ~[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:122) [SimpleReloadableResourceManager.class:?] at net.minecraft.client.Minecraft.startGame(Minecraft.java:540) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:386) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:118) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_151] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_151] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_151] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_151] 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_151] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_151] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_151] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_151] 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:78) ~[ModelBlockDefinition.class:?] at net.minecraftforge.client.model.ModelLoader$VariantLoader.loadModel(ModelLoader.java:1184) ~[ModelLoader$VariantLoader.class:?] at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:149) ~[ModelLoaderRegistry.class:?] ... 21 more [10:35:25] [Client thread/ERROR] [FML]: Exception loading model for variant archydium:archydiumFurnace#facing=south for blockstate "archydium:archydiumFurnace[facing=south]" net.minecraftforge.client.model.ModelLoaderRegistry$LoaderException: Exception loading model archydium:archydiumFurnace#facing=south 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:241) ~[ModelLoader.class:?] at net.minecraft.client.renderer.block.model.ModelBakery.loadBlock(ModelBakery.java:145) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.loadBlocks(ModelLoader.java:229) ~[ModelLoader.class:?] at net.minecraftforge.client.model.ModelLoader.setupModelRegistry(ModelLoader.java:146) ~[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:122) [SimpleReloadableResourceManager.class:?] at net.minecraft.client.Minecraft.startGame(Minecraft.java:540) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:386) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:118) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_151] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_151] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_151] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_151] 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_151] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_151] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_151] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_151] 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:78) ~[ModelBlockDefinition.class:?] at net.minecraftforge.client.model.ModelLoader$VariantLoader.loadModel(ModelLoader.java:1184) ~[ModelLoader$VariantLoader.class:?] at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:149) ~[ModelLoaderRegistry.class:?] ... 21 more [10:35:25] [Client thread/ERROR] [FML]: Exception loading model for variant archydium:archydiumFurnace#facing=north for blockstate "archydium:archydiumFurnace[facing=north]" net.minecraftforge.client.model.ModelLoaderRegistry$LoaderException: Exception loading model archydium:archydiumFurnace#facing=north 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:241) ~[ModelLoader.class:?] at net.minecraft.client.renderer.block.model.ModelBakery.loadBlock(ModelBakery.java:145) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.loadBlocks(ModelLoader.java:229) ~[ModelLoader.class:?] at net.minecraftforge.client.model.ModelLoader.setupModelRegistry(ModelLoader.java:146) ~[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:122) [SimpleReloadableResourceManager.class:?] at net.minecraft.client.Minecraft.startGame(Minecraft.java:540) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:386) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:118) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_151] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_151] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_151] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_151] 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_151] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_151] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_151] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_151] 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:78) ~[ModelBlockDefinition.class:?] at net.minecraftforge.client.model.ModelLoader$VariantLoader.loadModel(ModelLoader.java:1184) ~[ModelLoader$VariantLoader.class:?] at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:149) ~[ModelLoaderRegistry.class:?] ... 21 more [10:35:25] [Client thread/ERROR] [FML]: Exception loading model for variant archydium:archydiumFurnace#facing=west for blockstate "archydium:archydiumFurnace[facing=west]" net.minecraftforge.client.model.ModelLoaderRegistry$LoaderException: Exception loading model archydium:archydiumFurnace#facing=west 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:241) ~[ModelLoader.class:?] at net.minecraft.client.renderer.block.model.ModelBakery.loadBlock(ModelBakery.java:145) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.loadBlocks(ModelLoader.java:229) ~[ModelLoader.class:?] at net.minecraftforge.client.model.ModelLoader.setupModelRegistry(ModelLoader.java:146) ~[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:122) [SimpleReloadableResourceManager.class:?] at net.minecraft.client.Minecraft.startGame(Minecraft.java:540) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:386) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:118) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_151] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_151] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_151] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_151] 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_151] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_151] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_151] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_151] 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:78) ~[ModelBlockDefinition.class:?] at net.minecraftforge.client.model.ModelLoader$VariantLoader.loadModel(ModelLoader.java:1184) ~[ModelLoader$VariantLoader.class:?] at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:149) ~[ModelLoaderRegistry.class:?] ... 21 more [10:35:26] [Client thread/INFO] [FML]: Injecting itemstacks [10:35:26] [Client thread/INFO] [FML]: Itemstack injection complete [10:35:27] [Client thread/INFO] [FML]: Forge Mod Loader has successfully loaded 4 mods [10:35:27] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:Archymod [10:35:35] [Client thread/INFO]: SoundSystem shutting down... [10:35:35] [Client thread/WARN]: Author: Paul Lamb, www.paulscode.com [10:35:35] [Sound Library Loader/INFO]: Starting up SoundSystem... [10:35:35] [Thread-10/INFO]: Initializing LWJGL OpenAL [10:35:35] [Thread-10/INFO]: (The LWJGL binding of OpenAL. For more information, see http://www.lwjgl.org) [10:35:35] [Thread-10/INFO]: OpenAL initialized. [10:35:36] [Sound Library Loader/INFO]: Sound engine started [10:35:47] [Client thread/INFO] [FML]: Max texture size: 8192 [10:35:47] [Client thread/INFO]: Created: 512x512 textures-atlas [10:35:49] [Client thread/ERROR] [FML]: Exception loading model for variant archydium:archydiumFurnace#facing=east for blockstate "archydium:archydiumFurnace[facing=east]" net.minecraftforge.client.model.ModelLoaderRegistry$LoaderException: Exception loading model archydium:archydiumFurnace#facing=east 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:241) ~[ModelLoader.class:?] at net.minecraft.client.renderer.block.model.ModelBakery.loadBlock(ModelBakery.java:145) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.loadBlocks(ModelLoader.java:229) ~[ModelLoader.class:?] at net.minecraftforge.client.model.ModelLoader.setupModelRegistry(ModelLoader.java:146) ~[ModelLoader.class:?] at net.minecraft.client.renderer.block.model.ModelManager.onResourceManagerReload(ModelManager.java:28) [ModelManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.notifyReloadListeners(SimpleReloadableResourceManager.java:132) [SimpleReloadableResourceManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.reloadResources(SimpleReloadableResourceManager.java:113) [SimpleReloadableResourceManager.class:?] at net.minecraft.client.Minecraft.refreshResources(Minecraft.java:799) [Minecraft.class:?] at net.minecraftforge.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:340) [FMLClientHandler.class:?] at net.minecraft.client.Minecraft.startGame(Minecraft.java:561) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:386) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:118) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_151] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_151] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_151] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_151] 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_151] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_151] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_151] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_151] 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:78) ~[ModelBlockDefinition.class:?] at net.minecraftforge.client.model.ModelLoader$VariantLoader.loadModel(ModelLoader.java:1184) ~[ModelLoader$VariantLoader.class:?] at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:149) ~[ModelLoaderRegistry.class:?] ... 24 more [10:35:49] [Client thread/ERROR] [FML]: Exception loading model for variant archydium:archydiumFurnace#facing=south for blockstate "archydium:archydiumFurnace[facing=south]" net.minecraftforge.client.model.ModelLoaderRegistry$LoaderException: Exception loading model archydium:archydiumFurnace#facing=south 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:241) ~[ModelLoader.class:?] at net.minecraft.client.renderer.block.model.ModelBakery.loadBlock(ModelBakery.java:145) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.loadBlocks(ModelLoader.java:229) ~[ModelLoader.class:?] at net.minecraftforge.client.model.ModelLoader.setupModelRegistry(ModelLoader.java:146) ~[ModelLoader.class:?] at net.minecraft.client.renderer.block.model.ModelManager.onResourceManagerReload(ModelManager.java:28) [ModelManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.notifyReloadListeners(SimpleReloadableResourceManager.java:132) [SimpleReloadableResourceManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.reloadResources(SimpleReloadableResourceManager.java:113) [SimpleReloadableResourceManager.class:?] at net.minecraft.client.Minecraft.refreshResources(Minecraft.java:799) [Minecraft.class:?] at net.minecraftforge.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:340) [FMLClientHandler.class:?] at net.minecraft.client.Minecraft.startGame(Minecraft.java:561) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:386) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:118) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_151] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_151] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_151] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_151] 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_151] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_151] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_151] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_151] 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:78) ~[ModelBlockDefinition.class:?] at net.minecraftforge.client.model.ModelLoader$VariantLoader.loadModel(ModelLoader.java:1184) ~[ModelLoader$VariantLoader.class:?] at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:149) ~[ModelLoaderRegistry.class:?] ... 24 more [10:35:49] [Client thread/ERROR] [FML]: Exception loading model for variant archydium:archydiumFurnace#facing=north for blockstate "archydium:archydiumFurnace[facing=north]" net.minecraftforge.client.model.ModelLoaderRegistry$LoaderException: Exception loading model archydium:archydiumFurnace#facing=north 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:241) ~[ModelLoader.class:?] at net.minecraft.client.renderer.block.model.ModelBakery.loadBlock(ModelBakery.java:145) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.loadBlocks(ModelLoader.java:229) ~[ModelLoader.class:?] at net.minecraftforge.client.model.ModelLoader.setupModelRegistry(ModelLoader.java:146) ~[ModelLoader.class:?] at net.minecraft.client.renderer.block.model.ModelManager.onResourceManagerReload(ModelManager.java:28) [ModelManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.notifyReloadListeners(SimpleReloadableResourceManager.java:132) [SimpleReloadableResourceManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.reloadResources(SimpleReloadableResourceManager.java:113) [SimpleReloadableResourceManager.class:?] at net.minecraft.client.Minecraft.refreshResources(Minecraft.java:799) [Minecraft.class:?] at net.minecraftforge.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:340) [FMLClientHandler.class:?] at net.minecraft.client.Minecraft.startGame(Minecraft.java:561) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:386) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:118) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_151] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_151] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_151] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_151] 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_151] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_151] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_151] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_151] 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:78) ~[ModelBlockDefinition.class:?] at net.minecraftforge.client.model.ModelLoader$VariantLoader.loadModel(ModelLoader.java:1184) ~[ModelLoader$VariantLoader.class:?] at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:149) ~[ModelLoaderRegistry.class:?] ... 24 more [10:35:49] [Client thread/ERROR] [FML]: Exception loading model for variant archydium:archydiumFurnace#facing=west for blockstate "archydium:archydiumFurnace[facing=west]" net.minecraftforge.client.model.ModelLoaderRegistry$LoaderException: Exception loading model archydium:archydiumFurnace#facing=west 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:241) ~[ModelLoader.class:?] at net.minecraft.client.renderer.block.model.ModelBakery.loadBlock(ModelBakery.java:145) ~[ModelBakery.class:?] at net.minecraftforge.client.model.ModelLoader.loadBlocks(ModelLoader.java:229) ~[ModelLoader.class:?] at net.minecraftforge.client.model.ModelLoader.setupModelRegistry(ModelLoader.java:146) ~[ModelLoader.class:?] at net.minecraft.client.renderer.block.model.ModelManager.onResourceManagerReload(ModelManager.java:28) [ModelManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.notifyReloadListeners(SimpleReloadableResourceManager.java:132) [SimpleReloadableResourceManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.reloadResources(SimpleReloadableResourceManager.java:113) [SimpleReloadableResourceManager.class:?] at net.minecraft.client.Minecraft.refreshResources(Minecraft.java:799) [Minecraft.class:?] at net.minecraftforge.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:340) [FMLClientHandler.class:?] at net.minecraft.client.Minecraft.startGame(Minecraft.java:561) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:386) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:118) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_151] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_151] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_151] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_151] 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_151] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_151] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_151] at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_151] 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:78) ~[ModelBlockDefinition.class:?] at net.minecraftforge.client.model.ModelLoader$VariantLoader.loadModel(ModelLoader.java:1184) ~[ModelLoader$VariantLoader.class:?] at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:149) ~[ModelLoaderRegistry.class:?] ... 24 more [10:35:50] [Client thread/WARN]: Skipping bad option: lastServer: [10:35:53] [Realms Notification Availability checker #1/INFO]: Could not authorize you against Realms server: Invalid session id [10:36:15] [Client thread/INFO]: Stopping! [10:36:15] [Client thread/INFO]: SoundSystem shutting down... [10:36:15] [Client thread/WARN]: Author: Paul Lamb, www.paulscode.com Java HotSpot(TM) 64-Bit Server VM warning: Using incremental CMS is deprecated and will likely be removed in a future release Code : https://github.com/darkprod02/ArchyMod-1.10.2

Important Information

By using this site, you agree to our Terms of Use.

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.