Posted July 19, 20169 yr I have checked my code and I don't think anything is wrong, but when I start up the game, the armor models show as purple and black. I did one before on cheese, and that worked fine and I tried re-copying the code but the new one doesn't work. Here is my main mod.java code package tntdiamond.RegidMod; import cpw.mods.fml.common.Mod; import cpw.mods.fml.common.Mod.EventHandler; import cpw.mods.fml.common.event.FMLInitializationEvent; import cpw.mods.fml.common.event.FMLPostInitializationEvent; import cpw.mods.fml.common.event.FMLPreInitializationEvent; import cpw.mods.fml.common.registry.GameRegistry; import net.minecraft.block.Block; import net.minecraft.block.material.Material; import net.minecraft.creativetab.CreativeTabs; import net.minecraft.enchantment.Enchantment; import net.minecraft.init.Blocks; import net.minecraft.init.Items; import net.minecraft.item.Item; import net.minecraft.item.ItemArmor; import net.minecraft.item.ItemFood; import net.minecraft.item.ItemStack; import net.minecraftforge.common.util.EnumHelper; import tntdiamond.RegidMod.item.ItemCheeseArmor; import tntdiamond.RegidMod.item.ItemCheeseAxe; import tntdiamond.RegidMod.item.ItemCheeseHoe; import tntdiamond.RegidMod.item.ItemCheesePickaxe; import tntdiamond.RegidMod.item.ItemCheeseShovel; import tntdiamond.RegidMod.item.ItemCheeseSword; import tntdiamond.RegidMod.item.ItemGalaxySword; import tntdiamond.RegidMod.item.ItemIllusionArmor; import tntdiamond.RegidMod.item.ItemRegidAxe; import tntdiamond.RegidMod.item.ItemRegidHoe; import tntdiamond.RegidMod.item.ItemRegidPickaxe; import tntdiamond.RegidMod.item.ItemRegidShovel; import tntdiamond.RegidMod.item.ItemRegidSword; //step 1 @Mod(modid = "rm", name = "Regid Mod", version = "1.0") public class RegidMod { public static Item itemRegid; public static Block blockRegid; public static Item itemCheese; public static Item itemGrilledCheese; public static Block blockCheese; public static Item cheeseHelmet; public static Item cheeseChestplate; public static Item cheeseLeggings; public static Item cheeseBoots; public static Item cheesePickaxe; public static Item cheeseAxe; public static Item cheeseShovel; public static Item cheeseHoe; public static Item cheeseSword; public static Item itemCheeseStick; public static Item regidPickaxe; public static Item regidAxe; public static Item regidShovel; public static Item regidHoe; public static Item regidSword; public static Block blockIllusionOre; public static Block blockIllusion; public static Item itemIllusion; public static Item illusionHelmet; public static Item illusionChestplate; public static Item illusionLeggings; public static Item illusionBoots; public static Item galaxySword; //diamond harvestlevel=4, diamond maxUses = 1560, diamond efficiency = 8.0F, iron = 6.0F, diamond damage = 6.0F, enchantibility diamond = 10 public static final Item.ToolMaterial cheeseToolMaterial = EnumHelper.addToolMaterial("cheeseToolMaterial", 1, 400, 5.0F, 1.5F, 5); public static final ItemArmor.ArmorMaterial cheeseArmorMaterial = EnumHelper.addArmorMaterial("cheeseArmorMaterial", 400, new int[]{1,4,3,2}, 5); public static final Item.ToolMaterial galaxyToolMaterial = EnumHelper.addToolMaterial("galaxyToolMaterial", 4, 2500, 12.0F, 20.0F, 15); public static final Item.ToolMaterial illusionToolMaterial = EnumHelper.addToolMaterial("illusionToolMaterial", 4, 1800, 8.0F, 10.0F, 12); public static final ItemArmor.ArmorMaterial illusionArmorMaterial = EnumHelper.addArmorMaterial("illusionArmorMaterial", 1800, new int[]{7,17,13,8}, 30); //default 2,7,5,3. public static final Item.ToolMaterial regidToolMaterial = EnumHelper.addToolMaterial("regidToolMaterial", 5, 2000, 9.0F, 7.0F, 11); @EventHandler public void preInit(FMLPreInitializationEvent event) { //step 2 //Item/Block init and registering //config handling itemRegid = new ItemRegid().setUnlocalizedName("itemRegid").setTextureName("rm:itemRegid").setCreativeTab(tabRegidModItems); blockRegid = new BlockRegid(Material.iron).setBlockName("BlockRegid").setBlockTextureName("rm:blockregid").setCreativeTab(tabRegidModBlocks); cheesePickaxe = new ItemCheesePickaxe(cheeseToolMaterial).setUnlocalizedName("ItemCheesePickaxe").setTextureName("rm:itemcheesepickaxe").setCreativeTab(tabRegidModTools); cheeseAxe = new ItemCheeseAxe(cheeseToolMaterial).setUnlocalizedName("ItemCheeseAxe").setTextureName("rm:itemcheeseaxe").setCreativeTab(tabRegidModTools); cheeseShovel = new ItemCheeseShovel(cheeseToolMaterial).setUnlocalizedName("ItemCheeseShovel").setTextureName("rm:itemcheeseshovel").setCreativeTab(tabRegidModTools); cheeseHoe = new ItemCheeseHoe(cheeseToolMaterial).setUnlocalizedName("ItemCheeseHoe").setTextureName("rm:itemcheesehoe").setCreativeTab(tabRegidModTools); cheeseSword = new ItemCheeseSword(cheeseToolMaterial).setUnlocalizedName("ItemCheeseSword").setTextureName("rm:itemcheesesword").setCreativeTab(tabRegidModCombat); cheeseHelmet = new ItemCheeseArmor(cheeseArmorMaterial, 0, 0).setUnlocalizedName("ItemCheeseHelmet").setTextureName("rm:itemcheesehelmet").setCreativeTab(tabRegidModCombat); cheeseChestplate = new ItemCheeseArmor(cheeseArmorMaterial, 0, 1).setUnlocalizedName("ItemCheeseChestplate").setTextureName("rm:itemcheesechestplate").setCreativeTab(tabRegidModCombat); cheeseLeggings = new ItemCheeseArmor(cheeseArmorMaterial, 0, 2).setUnlocalizedName("ItemCheeseLeggings").setTextureName("rm:itemcheeseleggings").setCreativeTab(tabRegidModCombat); cheeseBoots = new ItemCheeseArmor(cheeseArmorMaterial, 0, 3).setUnlocalizedName("ItemCheeseBoots").setTextureName("rm:itemcheeseboots").setCreativeTab(tabRegidModCombat); blockCheese = new BlockCheese(Material.cloth).setBlockName("BlockCheese").setBlockTextureName("rm:blockcheese").setCreativeTab(tabRegidModBlocks); regidPickaxe = new ItemRegidPickaxe(regidToolMaterial).setUnlocalizedName("ItemRegidPickaxe").setTextureName("rm:itemregidpickaxe").setCreativeTab(tabRegidModTools); regidAxe = new ItemRegidAxe(regidToolMaterial).setUnlocalizedName("ItemRegidAxe").setTextureName("rm:itemregidAxe").setCreativeTab(tabRegidModTools); regidShovel = new ItemRegidShovel(regidToolMaterial).setUnlocalizedName("ItemRegidShovel").setTextureName("rm:itemregidshovel").setCreativeTab(tabRegidModTools); regidHoe = new ItemRegidHoe(regidToolMaterial).setUnlocalizedName("ItemRegidHoe").setTextureName("rm:itemregidhoe").setCreativeTab(tabRegidModTools);; regidSword = new ItemRegidSword(regidToolMaterial).setUnlocalizedName("ItemRegidSword").setTextureName("rm:itemregidsword").setCreativeTab(tabRegidModCombat);; itemCheeseStick = new ItemCheeseStick().setUnlocalizedName("ItemCheeseStick").setTextureName("rm:itemcheesestick").setCreativeTab(tabRegidModItems); itemCheese = new ItemFood(4, 0.1F, false).setUnlocalizedName("ItemCheese").setTextureName("rm:itemcheese").setCreativeTab(tabRegidModItems); itemGrilledCheese = new ItemFood(8, 0.2F, true).setUnlocalizedName("ItemGrilledCheese").setTextureName("rm:itemgrilledcheese").setCreativeTab(tabRegidModItems); //food new ItemFood(1, 2, 3) 1=Food Points (max20) 2=Saturation (max1.0F) 3=wolf food (T/F) blockIllusionOre = new BlockIllusionOre(Material.rock).setBlockName("BlockIllusionOre").setBlockTextureName("rm:blockillusionore").setCreativeTab(tabRegidModBlocks); blockIllusion = new BlockIllusion(Material.rock).setBlockName("BlockIllusion").setBlockTextureName("rm:blockillusion").setCreativeTab(tabRegidModBlocks); itemIllusion = new ItemIllusion().setUnlocalizedName("itemIllusion").setTextureName("rm:itemIllusion").setCreativeTab(tabRegidModItems); illusionHelmet = new ItemIllusionArmor(illusionArmorMaterial, 0, 0).setUnlocalizedName("ItemIllusionHelmet").setTextureName("rm:itemillusionhelmet").setCreativeTab(tabRegidModCombat); illusionChestplate = new ItemIllusionArmor(illusionArmorMaterial, 0, 1).setUnlocalizedName("ItemIllusionChestplate").setTextureName("rm:itemillusionchestplate").setCreativeTab(tabRegidModCombat);; illusionLeggings = new ItemIllusionArmor(illusionArmorMaterial, 0, 2).setUnlocalizedName("ItemIllusionLeggings").setTextureName("rm:itemillusionleggings").setCreativeTab(tabRegidModCombat);; illusionBoots = new ItemIllusionArmor(illusionArmorMaterial, 0, 3).setUnlocalizedName("ItemIllusionBoots").setTextureName("rm:itemillusionboots").setCreativeTab(tabRegidModCombat);; galaxySword = new ItemGalaxySword(galaxyToolMaterial).setUnlocalizedName("ItemGalaxySword").setTextureName("rm:itemgalaxysword").setCreativeTab(tabRegidModCombat); //step 3 GameRegistry.registerItem(itemRegid, itemRegid.getUnlocalizedName().substring(5)); GameRegistry.registerBlock(blockRegid, blockRegid.getUnlocalizedName().substring(5)); GameRegistry.registerItem(itemCheese, itemCheese.getUnlocalizedName().substring(5)); GameRegistry.registerItem(itemGrilledCheese, itemGrilledCheese.getUnlocalizedName().substring(5)); GameRegistry.registerItem(cheesePickaxe, cheesePickaxe.getUnlocalizedName().substring(5)); GameRegistry.registerItem(cheeseAxe, cheeseAxe.getUnlocalizedName().substring(5)); GameRegistry.registerItem(cheeseShovel, cheeseShovel.getUnlocalizedName().substring(5)); GameRegistry.registerItem(cheeseHoe, cheeseHoe.getUnlocalizedName().substring(5)); GameRegistry.registerItem(cheeseSword, cheeseSword.getUnlocalizedName().substring(5)); GameRegistry.registerItem(itemCheeseStick, itemCheeseStick.getUnlocalizedName().substring(5)); GameRegistry.registerItem(cheeseHelmet, cheeseHelmet.getUnlocalizedName().substring(5)); GameRegistry.registerItem(cheeseChestplate, cheeseChestplate.getUnlocalizedName().substring(5)); GameRegistry.registerItem(cheeseLeggings, cheeseLeggings.getUnlocalizedName().substring(5)); GameRegistry.registerItem(cheeseBoots, cheeseBoots.getUnlocalizedName().substring(5)); GameRegistry.registerItem(regidPickaxe, regidPickaxe.getUnlocalizedName().substring(5)); GameRegistry.registerItem(regidAxe, regidAxe.getUnlocalizedName().substring(5)); GameRegistry.registerItem(regidShovel, regidShovel.getUnlocalizedName().substring(5)); GameRegistry.registerItem(regidHoe, regidHoe.getUnlocalizedName().substring(5)); GameRegistry.registerItem(regidSword, regidSword.getUnlocalizedName().substring(5)); GameRegistry.registerBlock(blockCheese, blockCheese.getUnlocalizedName().substring(5)); GameRegistry.registerBlock(blockIllusionOre, blockIllusionOre.getUnlocalizedName().substring(5)); GameRegistry.registerBlock(blockIllusion, blockIllusion.getUnlocalizedName().substring(5)); GameRegistry.registerItem(itemIllusion, itemIllusion.getUnlocalizedName().substring(5)); GameRegistry.registerItem(galaxySword, galaxySword.getUnlocalizedName().substring(5)); GameRegistry.registerItem(illusionHelmet, illusionHelmet.getUnlocalizedName().substring(5)); GameRegistry.registerItem(illusionChestplate, illusionChestplate.getUnlocalizedName().substring(5)); GameRegistry.registerItem(illusionLeggings, illusionLeggings.getUnlocalizedName().substring(5)); GameRegistry.registerItem(illusionBoots, illusionBoots.getUnlocalizedName().substring(5)); GameRegistry.registerWorldGenerator(new CheeseGeneration(), 0); } @EventHandler public void init(FMLInitializationEvent event) { //Proxy, TileEntity, entity, GUI and Packet Registering GameRegistry.addRecipe(new ItemStack(cheesePickaxe), new Object[]{"CCC", " S ", " S ", 'C', itemGrilledCheese, 'S', Items.stick}); GameRegistry.addRecipe(new ItemStack(cheeseAxe), new Object[]{"CC ", "CS ", " S ", 'C', itemGrilledCheese, 'S', Items.stick}); GameRegistry.addRecipe(new ItemStack(cheeseShovel), new Object[]{"C", "S", "S", 'C', itemGrilledCheese, 'S', Items.stick}); GameRegistry.addRecipe(new ItemStack(cheeseHoe), new Object[]{"CC ", " S ", " S ", 'C', itemGrilledCheese, 'S', Items.stick}); GameRegistry.addRecipe(new ItemStack(cheeseSword), new Object[]{"C", "C", "S", 'C', itemGrilledCheese, 'S', Items.stick}); GameRegistry.addRecipe(new ItemStack(itemCheeseStick), new Object[]{" C ", " S ", " ", 'C', itemGrilledCheese, 'S', Items.stick}); GameRegistry.addRecipe(new ItemStack(itemGrilledCheese), new Object[]{" ", "CC ", "CC ", 'C', itemCheeseStick,}); GameRegistry.addRecipe(new ItemStack(cheeseHelmet), new Object[]{"CCC", "C C", " ", 'C', itemGrilledCheese}); GameRegistry.addRecipe(new ItemStack(cheeseChestplate), new Object[]{"C C", "CCC", "CCC", 'C', itemGrilledCheese}); GameRegistry.addRecipe(new ItemStack(cheeseLeggings), new Object[]{"CCC", "C C", "C C", 'C', itemGrilledCheese}); GameRegistry.addRecipe(new ItemStack(cheeseBoots), new Object[]{" ", "C C", "C C", 'C', itemGrilledCheese}); GameRegistry.addRecipe(new ItemStack(blockIllusion), new Object[]{"III", "III", "III", 'I', itemIllusion}); GameRegistry.addRecipe(new ItemStack(galaxySword), new Object[]{" FI", " IF", "O ", 'F', Items.flint_and_steel, 'I', itemIllusion, 'O', Blocks.obsidian}); GameRegistry.addSmelting(blockIllusionOre, new ItemStack(itemIllusion), 5.0F); GameRegistry.addSmelting(itemCheese, new ItemStack(itemGrilledCheese), 5.0F); GameRegistry.addSmelting(itemCheeseStick, new ItemStack(RegidMod.itemGrilledCheese), 5.0F); } @EventHandler public void postInit(FMLPostInitializationEvent event) { } public static CreativeTabs tabRegidModBlocks = new CreativeTabs("tabRegidModBlocks"){ @Override public Item getTabIconItem(){ return new ItemStack(blockRegid).getItem(); } }; public static CreativeTabs tabRegidModItems = new CreativeTabs("tabRegidModItems"){ @Override public Item getTabIconItem(){ return new ItemStack(itemRegid).getItem(); } }; public static CreativeTabs tabRegidModTools = new CreativeTabs("tabRegidModTools"){ @Override public Item getTabIconItem(){ return new ItemStack(regidPickaxe).getItem(); } }; public static CreativeTabs tabRegidModCombat = new CreativeTabs("tabRegidModCombat"){ @Override public Item getTabIconItem(){ return new ItemStack(regidSword).getItem(); } }; } Here is the ItemIllusionArmor.java file package tntdiamond.RegidMod.item; import net.minecraft.entity.Entity; import net.minecraft.item.ItemArmor; import net.minecraft.item.ItemStack; import net.minecraft.item.ItemArmor.ArmorMaterial; public class ItemIllusionArmor extends ItemArmor { public ItemIllusionArmor(ArmorMaterial armorMaterial, int renderIndex, int armorType) { super(armorMaterial, renderIndex, armorType); } @Override public String getArmorTexture(ItemStack stack, Entity entity, int slot, String type) { if(this.armorType == 2) { return "rm:texutres/models/armor/illusion_layer_2.png"; } return "rm:texutres/models/armor/illusion_layer_1.png"; } } Here are my texture models: The links for the texture models: http://i.imgur.com/jIEQG0V.png http://i.imgur.com/jIEQG0V.png
July 20, 20169 yr There's always a log. It's written to logs/fml-client-latest.log in the game directory. Missing or broken textures log errors without crashing the game. 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.
July 20, 20169 yr Author [11:12:25] [main/INFO]: Extra: [] [11:12:25] [main/INFO]: Running with arguments: [--userProperties, {}, --assetsDir, /Users/Tnt/.gradle/caches/minecraft/assets, --assetIndex, 1.7.10, --accessToken, {REDACTED}, --version, 1.7.10, --tweakClass, cpw.mods.fml.common.launcher.FMLTweaker, --tweakClass, net.minecraftforge.gradle.tweakers.CoremodTweaker] [11:12:25] [main/INFO]: Loading tweak class name cpw.mods.fml.common.launcher.FMLTweaker [11:12:25] [main/INFO]: Using primary tweak class name cpw.mods.fml.common.launcher.FMLTweaker [11:12:25] [main/INFO]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker [11:12:25] [main/INFO]: Calling tweak class cpw.mods.fml.common.launcher.FMLTweaker [11:12:25] [main/INFO]: Forge Mod Loader version 7.99.16.1448 for Minecraft 1.7.10 loading [11:12:25] [main/INFO]: Java is Java HotSpot(TM) 64-Bit Server VM, version 1.8.0_60, running on Mac OS X:x86_64:10.11.5, installed at /Library/Java/JavaVirtualMachines/jdk1.8.0_60.jdk/Contents/Home/jre [11:12:25] [main/INFO]: Managed to load a deobfuscated Minecraft name- we are in a deobfuscated environment. Skipping runtime deobfuscation [11:12:25] [main/INFO]: Calling tweak class net.minecraftforge.gradle.tweakers.CoremodTweaker [11:12:25] [main/INFO]: Injecting location in coremod cpw.mods.fml.relauncher.FMLCorePlugin [11:12:25] [main/INFO]: Injecting location in coremod net.minecraftforge.classloading.FMLForgePlugin [11:12:25] [main/INFO]: Loading tweak class name cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker [11:12:25] [main/INFO]: Loading tweak class name cpw.mods.fml.common.launcher.FMLDeobfTweaker [11:12:25] [main/INFO]: Loading tweak class name net.minecraftforge.gradle.tweakers.AccessTransformerTweaker [11:12:25] [main/INFO]: Calling tweak class cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker [11:12:25] [main/INFO]: Calling tweak class cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker [11:12:25] [main/INFO]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper [11:12:25] [main/ERROR]: The binary patch set is missing. Either you are in a development environment, or things are not going to work! [11:12:26] [main/ERROR]: FML appears to be missing any signature data. This is not a good thing [11:12:26] [main/INFO]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper [11:12:26] [main/INFO]: Calling tweak class cpw.mods.fml.common.launcher.FMLDeobfTweaker [11:12:27] [main/INFO]: Calling tweak class net.minecraftforge.gradle.tweakers.AccessTransformerTweaker [11:12:27] [main/INFO]: Loading tweak class name cpw.mods.fml.common.launcher.TerminalTweaker [11:12:27] [main/INFO]: Calling tweak class cpw.mods.fml.common.launcher.TerminalTweaker [11:12:27] [main/INFO]: Launching wrapped minecraft {net.minecraft.client.main.Main} [11:12:28] [main/INFO]: Setting user: Player590 [11:12:31] [Client thread/INFO]: LWJGL Version: 2.9.1 [11:12:31] [Client thread/INFO]: [cpw.mods.fml.client.SplashProgress:start:188]: ---- Minecraft Crash Report ---- // This is a token for 1 free hug. Redeem at your nearest Mojangsta: [~~HUG~~] Time: 7/20/16 11:12 AM 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.7.10 Operating System: Mac OS X (x86_64) version 10.11.5 Java Version: 1.8.0_60, Oracle Corporation Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation Memory: 796168912 bytes (759 MB) / 1038876672 bytes (990 MB) up to 1038876672 bytes (990 MB) JVM Flags: 3 total; -Xincgc -Xmx1024M -Xms1024M AABB Pool Size: 0 (0 bytes; 0 MB) allocated, 0 (0 bytes; 0 MB) used IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0 FML: GL info: ' Vendor: 'Intel Inc.' Version: '2.1 INTEL-10.14.66' Renderer: 'Intel(R) HD Graphics 5300' [11:12:31] [Client thread/INFO]: Attempting early MinecraftForge initialization [11:12:31] [Client thread/INFO]: MinecraftForge v10.13.4.1448 Initialized [11:12:32] [Client thread/INFO]: Replaced 183 ore recipies [11:12:32] [Client thread/INFO]: Completed early MinecraftForge initialization [11:12:32] [Client thread/INFO]: Found 0 mods from the command line. Injecting into mod discoverer [11:12:32] [Client thread/INFO]: Searching /Users/Tnt/Desktop/Modding Workspace/eclipse/mods for mods [11:12:38] [Client thread/INFO]: Forge Mod Loader has identified 4 mods to load [11:12:39] [Client thread/INFO]: Attempting connection with missing mods [mcp, FML, Forge, rm] at CLIENT [11:12:39] [Client thread/INFO]: Attempting connection with missing mods [mcp, FML, Forge, rm] at SERVER [11:12:39] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:Regid Mod [11:12:39] [Client thread/INFO]: Processing ObjectHolder annotations [11:12:39] [Client thread/INFO]: Found 341 ObjectHolder annotations [11:12:39] [Client thread/INFO]: Identifying ItemStackHolder annotations [11:12:39] [Client thread/INFO]: Found 0 ItemStackHolder annotations [11:12:40] [Client thread/INFO]: Configured a dormant chunk cache size of 0 [11:12:40] [Client thread/INFO]: Applying holder lookups [11:12:40] [Client thread/INFO]: Holder lookups applied [11:12:40] [Client thread/INFO]: Injecting itemstacks [11:12:40] [Client thread/INFO]: Itemstack injection complete [11:12:40] [sound Library Loader/INFO]: [paulscode.sound.SoundSystemLogger:message:69]: [11:12:40] [sound Library Loader/INFO]: [paulscode.sound.SoundSystemLogger:message:69]: Starting up SoundSystem... [11:12:40] [Thread-7/INFO]: [paulscode.sound.SoundSystemLogger:message:69]: Initializing LWJGL OpenAL [11:12:40] [Thread-7/INFO]: [paulscode.sound.SoundSystemLogger:message:69]: (The LWJGL binding of OpenAL. For more information, see http://www.lwjgl.org) [11:12:40] [Thread-7/INFO]: [paulscode.sound.SoundSystemLogger:message:69]: OpenAL initialized. [11:12:41] [sound Library Loader/INFO]: [paulscode.sound.SoundSystemLogger:message:69]: [11:12:41] [sound Library Loader/INFO]: Sound engine started [11:12:45] [Client thread/INFO]: Created: 512x256 textures/blocks-atlas [11:12:45] [Client thread/INFO]: Created: 256x256 textures/items-atlas [11:12:45] [Client thread/INFO]: Injecting itemstacks [11:12:45] [Client thread/INFO]: Itemstack injection complete [11:12:46] [Client thread/INFO]: Forge Mod Loader has successfully loaded 4 mods [11:12:46] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:Regid Mod [11:12:47] [Client thread/INFO]: Created: 512x256 textures/blocks-atlas [11:12:47] [Client thread/INFO]: Created: 256x256 textures/items-atlas [11:12:47] [Client thread/INFO]: [paulscode.sound.SoundSystemLogger:message:69]: [11:12:47] [Client thread/INFO]: [paulscode.sound.SoundSystemLogger:message:69]: SoundSystem shutting down... [11:12:48] [Client thread/INFO]: [paulscode.sound.SoundSystemLogger:importantMessage:90]: Author: Paul Lamb, www.paulscode.com [11:12:48] [Client thread/INFO]: [paulscode.sound.SoundSystemLogger:message:69]: [11:12:48] [sound Library Loader/INFO]: [paulscode.sound.SoundSystemLogger:message:69]: [11:12:48] [sound Library Loader/INFO]: [paulscode.sound.SoundSystemLogger:message:69]: Starting up SoundSystem... [11:12:48] [Thread-9/INFO]: [paulscode.sound.SoundSystemLogger:message:69]: Initializing LWJGL OpenAL [11:12:48] [Thread-9/INFO]: [paulscode.sound.SoundSystemLogger:message:69]: (The LWJGL binding of OpenAL. For more information, see http://www.lwjgl.org) [11:12:48] [Thread-9/INFO]: [paulscode.sound.SoundSystemLogger:message:69]: OpenAL initialized. [11:12:48] [sound Library Loader/INFO]: [paulscode.sound.SoundSystemLogger:message:69]: [11:12:48] [sound Library Loader/INFO]: Sound engine started [11:13:02] [server thread/INFO]: Starting integrated minecraft server version 1.7.10 [11:13:02] [server thread/INFO]: Generating keypair [11:13:02] [server thread/INFO]: Injecting existing block and item data into this server instance [11:13:02] [server thread/INFO]: Applying holder lookups [11:13:02] [server thread/INFO]: Holder lookups applied [11:13:03] [server thread/INFO]: Loading dimension 0 (New World) (net.minecraft.server.integrated.IntegratedServer@5751aa91) [11:13:03] [server thread/INFO]: Loading dimension 1 (New World) (net.minecraft.server.integrated.IntegratedServer@5751aa91) [11:13:03] [server thread/INFO]: Loading dimension -1 (New World) (net.minecraft.server.integrated.IntegratedServer@5751aa91) [11:13:03] [server thread/INFO]: Preparing start region for level 0 [11:13:04] [server thread/INFO]: Preparing spawn area: 29% [11:13:05] [server thread/INFO]: Changing view distance to 12, from 10 [11:13:05] [Netty Client IO #0/INFO]: Server protocol version 2 [11:13:05] [Netty IO #1/INFO]: Client protocol version 2 [11:13:05] [Netty IO #1/INFO]: Client attempting to join with 4 mods : [email protected],[email protected],[email protected],[email protected] [11:13:05] [Netty IO #1/INFO]: Attempting connection with missing mods [] at CLIENT [11:13:05] [Netty Client IO #0/INFO]: Attempting connection with missing mods [] at SERVER [11:13:05] [server thread/INFO]: [server thread] Server side modded connection established [11:13:05] [Client thread/INFO]: [Client thread] Client side modded connection established [11:13:05] [server thread/INFO]: Player590[local:E:46ef1610] logged in with entity id 49 at (-251.52719836724532, 78.0, 186.28054122013575) [11:13:05] [server thread/INFO]: Player590 joined the game [11:13:12] [server thread/INFO]: Saving and pausing game... [11:13:12] [server thread/INFO]: Saving chunks for level 'New World'/Overworld [11:13:12] [server thread/INFO]: Saving chunks for level 'New World'/Nether [11:13:12] [server thread/INFO]: Saving chunks for level 'New World'/The End [11:13:13] [server thread/INFO]: Stopping server [11:13:13] [server thread/INFO]: Saving players [11:13:13] [server thread/INFO]: Saving worlds [11:13:13] [server thread/INFO]: Saving chunks for level 'New World'/Overworld [11:13:13] [server thread/INFO]: Saving chunks for level 'New World'/Nether [11:13:13] [server thread/INFO]: Saving chunks for level 'New World'/The End [11:13:13] [server thread/INFO]: Unloading dimension 0 [11:13:13] [server thread/INFO]: Unloading dimension -1 [11:13:13] [server thread/INFO]: Unloading dimension 1 [11:13:13] [server thread/INFO]: Applying holder lookups [11:13:13] [server thread/INFO]: Holder lookups applied [11:13:14] [Client thread/INFO]: Stopping! [11:13:14] [Client thread/INFO]: [paulscode.sound.SoundSystemLogger:message:69]: [11:13:14] [Client thread/INFO]: [paulscode.sound.SoundSystemLogger:message:69]: SoundSystem shutting down... [11:13:14] [Client thread/INFO]: [paulscode.sound.SoundSystemLogger:importantMessage:90]: Author: Paul Lamb, www.paulscode.com [11:13:14] [Client thread/INFO]: [paulscode.sound.SoundSystemLogger:message:69]:
July 20, 20169 yr Author I think I was, but here is another log where I am for sure wearing the armor. [16:01:24] [main/INFO]: Extra: [] [16:01:24] [main/INFO]: Running with arguments: [--userProperties, {}, --assetsDir, /Users/Eden/.gradle/caches/minecraft/assets, --assetIndex, 1.7.10, --accessToken, {REDACTED}, --version, 1.7.10, --tweakClass, cpw.mods.fml.common.launcher.FMLTweaker, --tweakClass, net.minecraftforge.gradle.tweakers.CoremodTweaker] [16:01:24] [main/INFO]: Loading tweak class name cpw.mods.fml.common.launcher.FMLTweaker [16:01:24] [main/INFO]: Using primary tweak class name cpw.mods.fml.common.launcher.FMLTweaker [16:01:24] [main/INFO]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker [16:01:24] [main/INFO]: Calling tweak class cpw.mods.fml.common.launcher.FMLTweaker [16:01:24] [main/INFO]: Forge Mod Loader version 7.99.16.1448 for Minecraft 1.7.10 loading [16:01:24] [main/INFO]: Java is Java HotSpot(TM) 64-Bit Server VM, version 1.8.0_60, running on Mac OS X:x86_64:10.11.5, installed at /Library/Java/JavaVirtualMachines/jdk1.8.0_60.jdk/Contents/Home/jre [16:01:24] [main/INFO]: Managed to load a deobfuscated Minecraft name- we are in a deobfuscated environment. Skipping runtime deobfuscation [16:01:24] [main/INFO]: Calling tweak class net.minecraftforge.gradle.tweakers.CoremodTweaker [16:01:24] [main/INFO]: Injecting location in coremod cpw.mods.fml.relauncher.FMLCorePlugin [16:01:24] [main/INFO]: Injecting location in coremod net.minecraftforge.classloading.FMLForgePlugin [16:01:24] [main/INFO]: Loading tweak class name cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker [16:01:24] [main/INFO]: Loading tweak class name cpw.mods.fml.common.launcher.FMLDeobfTweaker [16:01:24] [main/INFO]: Loading tweak class name net.minecraftforge.gradle.tweakers.AccessTransformerTweaker [16:01:24] [main/INFO]: Calling tweak class cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker [16:01:24] [main/INFO]: Calling tweak class cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker [16:01:24] [main/INFO]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper [16:01:24] [main/ERROR]: The binary patch set is missing. Either you are in a development environment, or things are not going to work! [16:01:25] [main/ERROR]: FML appears to be missing any signature data. This is not a good thing [16:01:25] [main/INFO]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper [16:01:25] [main/INFO]: Calling tweak class cpw.mods.fml.common.launcher.FMLDeobfTweaker [16:01:26] [main/INFO]: Calling tweak class net.minecraftforge.gradle.tweakers.AccessTransformerTweaker [16:01:26] [main/INFO]: Loading tweak class name cpw.mods.fml.common.launcher.TerminalTweaker [16:01:26] [main/INFO]: Calling tweak class cpw.mods.fml.common.launcher.TerminalTweaker [16:01:26] [main/INFO]: Launching wrapped minecraft {net.minecraft.client.main.Main} [16:01:28] [main/INFO]: Setting user: Player20 [16:01:30] [Client thread/INFO]: LWJGL Version: 2.9.1 [16:01:32] [Client thread/INFO]: [cpw.mods.fml.client.SplashProgress:start:188]: ---- Minecraft Crash Report ---- // Would you like a cupcake? Time: 7/20/16 4:01 PM 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.7.10 Operating System: Mac OS X (x86_64) version 10.11.5 Java Version: 1.8.0_60, Oracle Corporation Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation Memory: 782491928 bytes (746 MB) / 1038876672 bytes (990 MB) up to 1038876672 bytes (990 MB) JVM Flags: 3 total; -Xincgc -Xmx1024M -Xms1024M AABB Pool Size: 0 (0 bytes; 0 MB) allocated, 0 (0 bytes; 0 MB) used IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0 FML: GL info: ' Vendor: 'Intel Inc.' Version: '2.1 INTEL-10.14.66' Renderer: 'Intel(R) HD Graphics 5300' [16:01:32] [Client thread/INFO]: Attempting early MinecraftForge initialization [16:01:32] [Client thread/INFO]: MinecraftForge v10.13.4.1448 Initialized [16:01:32] [Client thread/INFO]: Replaced 183 ore recipies [16:01:32] [Client thread/INFO]: Completed early MinecraftForge initialization [16:01:32] [Client thread/INFO]: Found 0 mods from the command line. Injecting into mod discoverer [16:01:32] [Client thread/INFO]: Searching /Users/Eden/Desktop/Modding Workspace/eclipse/mods for mods [16:01:38] [Client thread/INFO]: Forge Mod Loader has identified 4 mods to load [16:01:39] [Client thread/INFO]: Attempting connection with missing mods [mcp, FML, Forge, rm] at CLIENT [16:01:39] [Client thread/INFO]: Attempting connection with missing mods [mcp, FML, Forge, rm] at SERVER [16:01:39] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:Regid Mod [16:01:39] [Client thread/INFO]: Processing ObjectHolder annotations [16:01:39] [Client thread/INFO]: Found 341 ObjectHolder annotations [16:01:39] [Client thread/INFO]: Identifying ItemStackHolder annotations [16:01:39] [Client thread/INFO]: Found 0 ItemStackHolder annotations [16:01:39] [Client thread/INFO]: Configured a dormant chunk cache size of 0 [16:01:40] [Client thread/INFO]: Applying holder lookups [16:01:40] [Client thread/INFO]: Holder lookups applied [16:01:40] [Client thread/INFO]: Injecting itemstacks [16:01:40] [Client thread/INFO]: Itemstack injection complete [16:01:40] [sound Library Loader/INFO]: [paulscode.sound.SoundSystemLogger:message:69]: [16:01:40] [sound Library Loader/INFO]: [paulscode.sound.SoundSystemLogger:message:69]: Starting up SoundSystem... [16:01:40] [Thread-7/INFO]: [paulscode.sound.SoundSystemLogger:message:69]: Initializing LWJGL OpenAL [16:01:40] [Thread-7/INFO]: [paulscode.sound.SoundSystemLogger:message:69]: (The LWJGL binding of OpenAL. For more information, see http://www.lwjgl.org) [16:01:40] [Thread-7/INFO]: [paulscode.sound.SoundSystemLogger:message:69]: OpenAL initialized. [16:01:40] [sound Library Loader/INFO]: [paulscode.sound.SoundSystemLogger:message:69]: [16:01:40] [sound Library Loader/INFO]: Sound engine started [16:01:43] [Client thread/INFO]: Created: 512x256 textures/blocks-atlas [16:01:43] [Client thread/INFO]: Created: 256x256 textures/items-atlas [16:01:43] [Client thread/INFO]: Injecting itemstacks [16:01:43] [Client thread/INFO]: Itemstack injection complete [16:01:44] [Client thread/INFO]: Forge Mod Loader has successfully loaded 4 mods [16:01:44] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:Regid Mod [16:01:44] [Client thread/INFO]: Created: 512x256 textures/blocks-atlas [16:01:44] [Client thread/INFO]: Created: 256x256 textures/items-atlas [16:01:44] [Client thread/INFO]: [paulscode.sound.SoundSystemLogger:message:69]: [16:01:44] [Client thread/INFO]: [paulscode.sound.SoundSystemLogger:message:69]: SoundSystem shutting down... [16:01:45] [Client thread/INFO]: [paulscode.sound.SoundSystemLogger:importantMessage:90]: Author: Paul Lamb, www.paulscode.com [16:01:45] [Client thread/INFO]: [paulscode.sound.SoundSystemLogger:message:69]: [16:01:45] [sound Library Loader/INFO]: [paulscode.sound.SoundSystemLogger:message:69]: [16:01:45] [sound Library Loader/INFO]: [paulscode.sound.SoundSystemLogger:message:69]: Starting up SoundSystem... [16:01:45] [Thread-9/INFO]: [paulscode.sound.SoundSystemLogger:message:69]: Initializing LWJGL OpenAL [16:01:45] [Thread-9/INFO]: [paulscode.sound.SoundSystemLogger:message:69]: (The LWJGL binding of OpenAL. For more information, see http://www.lwjgl.org) [16:01:45] [Thread-9/INFO]: [paulscode.sound.SoundSystemLogger:message:69]: OpenAL initialized. [16:01:45] [sound Library Loader/INFO]: [paulscode.sound.SoundSystemLogger:message:69]: [16:01:45] [sound Library Loader/INFO]: Sound engine started [16:01:49] [server thread/INFO]: Starting integrated minecraft server version 1.7.10 [16:01:49] [server thread/INFO]: Generating keypair [16:01:49] [server thread/INFO]: Injecting existing block and item data into this server instance [16:01:49] [server thread/INFO]: Applying holder lookups [16:01:49] [server thread/INFO]: Holder lookups applied [16:01:50] [server thread/INFO]: Loading dimension 0 (New World) (net.minecraft.server.integrated.IntegratedServer@4feb637b) [16:01:50] [server thread/INFO]: Loading dimension 1 (New World) (net.minecraft.server.integrated.IntegratedServer@4feb637b) [16:01:50] [server thread/INFO]: Loading dimension -1 (New World) (net.minecraft.server.integrated.IntegratedServer@4feb637b) [16:01:50] [server thread/INFO]: Preparing start region for level 0 [16:01:51] [server thread/INFO]: Preparing spawn area: 16% [16:01:52] [server thread/INFO]: Preparing spawn area: 68% [16:01:52] [server thread/INFO]: Changing view distance to 12, from 10 [16:01:53] [Netty Client IO #0/INFO]: Server protocol version 2 [16:01:53] [Netty IO #1/INFO]: Client protocol version 2 [16:01:53] [Netty IO #1/INFO]: Client attempting to join with 4 mods : [email protected],[email protected],[email protected],[email protected] [16:01:53] [Netty IO #1/INFO]: Attempting connection with missing mods [] at CLIENT [16:01:53] [Netty Client IO #0/INFO]: Attempting connection with missing mods [] at SERVER [16:01:53] [server thread/INFO]: [server thread] Server side modded connection established [16:01:53] [Client thread/INFO]: [Client thread] Client side modded connection established [16:01:53] [server thread/INFO]: Player20[local:E:225849a4] logged in with entity id 49 at (-251.52719836724532, 78.0, 186.28054122013575) [16:01:53] [server thread/INFO]: Player20 joined the game [16:01:55] [server thread/INFO]: Player20 has just earned the achievement [Taking Inventory] [16:01:56] [Client thread/INFO]: [CHAT] Player20 has just earned the achievement [Taking Inventory] [16:02:04] [Client thread/WARN]: Failed to load texture: rm:texutres/models/armor/illusion_layer_1.png java.io.FileNotFoundException: rm:texutres/models/armor/illusion_layer_1.png at net.minecraft.client.resources.FallbackResourceManager.getResource(SourceFile:51) ~[FallbackResourceManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.getResource(SimpleReloadableResourceManager.java:67) ~[simpleReloadableResourceManager.class:?] at net.minecraft.client.renderer.texture.SimpleTexture.loadTexture(SourceFile:29) ~[simpleTexture.class:?] at net.minecraft.client.renderer.texture.TextureManager.loadTexture(SourceFile:72) [TextureManager.class:?] at net.minecraft.client.renderer.texture.TextureManager.bindTexture(SourceFile:40) [TextureManager.class:?] at net.minecraft.client.renderer.entity.Render.bindTexture(SourceFile:51) [Render.class:?] at net.minecraft.client.renderer.entity.RenderPlayer.shouldRenderPass(RenderPlayer.java:67) [RenderPlayer.class:?] at net.minecraft.client.renderer.entity.RenderPlayer.shouldRenderPass(RenderPlayer.java:491) [RenderPlayer.class:?] at net.minecraft.client.renderer.entity.RendererLivingEntity.doRender(RendererLivingEntity.java:157) [RendererLivingEntity.class:?] at net.minecraft.client.renderer.entity.RenderPlayer.doRender(RenderPlayer.java:158) [RenderPlayer.class:?] at net.minecraft.client.renderer.entity.RenderPlayer.doRender(RenderPlayer.java:521) [RenderPlayer.class:?] at net.minecraft.client.renderer.entity.RenderManager.func_147939_a(RenderManager.java:293) [RenderManager.class:?] at net.minecraft.client.renderer.entity.RenderManager.renderEntityWithPosYaw(RenderManager.java:276) [RenderManager.class:?] at net.minecraft.client.gui.inventory.GuiInventory.func_147046_a(SourceFile:91) [GuiInventory.class:?] at net.minecraft.client.gui.inventory.GuiContainerCreative.drawGuiContainerBackgroundLayer(GuiContainerCreative.java:804) [GuiContainerCreative.class:?] at net.minecraft.client.gui.inventory.GuiContainer.drawScreen(GuiContainer.java:78) [GuiContainer.class:?] at net.minecraft.client.renderer.InventoryEffectRenderer.drawScreen(InventoryEffectRenderer.java:38) [inventoryEffectRenderer.class:?] at net.minecraft.client.gui.inventory.GuiContainerCreative.drawScreen(GuiContainerCreative.java:638) [GuiContainerCreative.class:?] at net.minecraft.client.renderer.EntityRenderer.updateCameraAndRender(EntityRenderer.java:1061) [EntityRenderer.class:?] at net.minecraft.client.Minecraft.runGameLoop(Minecraft.java:1001) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:898) [Minecraft.class:?] at net.minecraft.client.main.Main.main(SourceFile:148) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_60] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_60] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_60] at java.lang.reflect.Method.invoke(Method.java:497) ~[?:1.8.0_60] at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.11.jar:?] at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.11.jar:?] at net.minecraftforge.gradle.GradleStartCommon.launch(Unknown Source) [start/:?] at GradleStart.main(Unknown Source) [start/:?] [16:02:04] [Client thread/WARN]: Failed to load texture: rm:texutres/models/armor/illusion_layer_2.png java.io.FileNotFoundException: rm:texutres/models/armor/illusion_layer_2.png at net.minecraft.client.resources.FallbackResourceManager.getResource(SourceFile:51) ~[FallbackResourceManager.class:?] at net.minecraft.client.resources.SimpleReloadableResourceManager.getResource(SimpleReloadableResourceManager.java:67) ~[simpleReloadableResourceManager.class:?] at net.minecraft.client.renderer.texture.SimpleTexture.loadTexture(SourceFile:29) ~[simpleTexture.class:?] at net.minecraft.client.renderer.texture.TextureManager.loadTexture(SourceFile:72) [TextureManager.class:?] at net.minecraft.client.renderer.texture.TextureManager.bindTexture(SourceFile:40) [TextureManager.class:?] at net.minecraft.client.renderer.entity.Render.bindTexture(SourceFile:51) [Render.class:?] at net.minecraft.client.renderer.entity.RenderPlayer.shouldRenderPass(RenderPlayer.java:67) [RenderPlayer.class:?] at net.minecraft.client.renderer.entity.RenderPlayer.shouldRenderPass(RenderPlayer.java:491) [RenderPlayer.class:?] at net.minecraft.client.renderer.entity.RendererLivingEntity.doRender(RendererLivingEntity.java:157) [RendererLivingEntity.class:?] at net.minecraft.client.renderer.entity.RenderPlayer.doRender(RenderPlayer.java:158) [RenderPlayer.class:?] at net.minecraft.client.renderer.entity.RenderPlayer.doRender(RenderPlayer.java:521) [RenderPlayer.class:?] at net.minecraft.client.renderer.entity.RenderManager.func_147939_a(RenderManager.java:293) [RenderManager.class:?] at net.minecraft.client.renderer.entity.RenderManager.renderEntityWithPosYaw(RenderManager.java:276) [RenderManager.class:?] at net.minecraft.client.gui.inventory.GuiInventory.func_147046_a(SourceFile:91) [GuiInventory.class:?] at net.minecraft.client.gui.inventory.GuiContainerCreative.drawGuiContainerBackgroundLayer(GuiContainerCreative.java:804) [GuiContainerCreative.class:?] at net.minecraft.client.gui.inventory.GuiContainer.drawScreen(GuiContainer.java:78) [GuiContainer.class:?] at net.minecraft.client.renderer.InventoryEffectRenderer.drawScreen(InventoryEffectRenderer.java:38) [inventoryEffectRenderer.class:?] at net.minecraft.client.gui.inventory.GuiContainerCreative.drawScreen(GuiContainerCreative.java:638) [GuiContainerCreative.class:?] at net.minecraft.client.renderer.EntityRenderer.updateCameraAndRender(EntityRenderer.java:1061) [EntityRenderer.class:?] at net.minecraft.client.Minecraft.runGameLoop(Minecraft.java:1001) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:898) [Minecraft.class:?] at net.minecraft.client.main.Main.main(SourceFile:148) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_60] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_60] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_60] at java.lang.reflect.Method.invoke(Method.java:497) ~[?:1.8.0_60] at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.11.jar:?] at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.11.jar:?] at net.minecraftforge.gradle.GradleStartCommon.launch(Unknown Source) [start/:?] at GradleStart.main(Unknown Source) [start/:?] [16:02:10] [server thread/INFO]: Saving and pausing game... [16:02:10] [server thread/INFO]: Saving chunks for level 'New World'/Overworld [16:02:10] [server thread/INFO]: Saving chunks for level 'New World'/Nether [16:02:10] [server thread/INFO]: Saving chunks for level 'New World'/The End [16:02:12] [server thread/INFO]: Stopping server [16:02:12] [server thread/INFO]: Saving players [16:02:12] [server thread/INFO]: Saving worlds [16:02:12] [server thread/INFO]: Saving chunks for level 'New World'/Overworld [16:02:12] [server thread/INFO]: Saving chunks for level 'New World'/Nether [16:02:12] [server thread/INFO]: Saving chunks for level 'New World'/The End [16:02:12] [server thread/INFO]: Unloading dimension 0 [16:02:12] [server thread/INFO]: Unloading dimension -1 [16:02:12] [server thread/INFO]: Unloading dimension 1 [16:02:12] [server thread/INFO]: Applying holder lookups [16:02:12] [server thread/INFO]: Holder lookups applied [16:02:13] [Client thread/INFO]: Stopping! [16:02:13] [Client thread/INFO]: [paulscode.sound.SoundSystemLogger:message:69]: [16:02:13] [Client thread/INFO]: [paulscode.sound.SoundSystemLogger:message:69]: SoundSystem shutting down... [16:02:13] [Client thread/INFO]: [paulscode.sound.SoundSystemLogger:importantMessage:90]: Author: Paul Lamb, www.paulscode.com [16:02:13] [Client thread/INFO]: [paulscode.sound.SoundSystemLogger:message:69]:
July 20, 20169 yr [16:02:04] [Client thread/WARN]: Failed to load texture: rm:texutres/models/armor/illusion_layer_2.png java.io.FileNotFoundException: rm:texutres/models/armor/illusion_layer_2.png textures is spelled wrong
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.