Jump to content

[1.10.2] How to change item icons on runtime?[solved]


Torojima

Recommended Posts

I've found a few snippets and questions regarding the programmatic change of item icons on runtime, but they always only showed a very tiny bit of the action. I know there has to be an override in the json file, but not if the new icon also has to have a json file or not. I've seen a bit of the apply method in the source, but don't know exactly how it works either.

 

So from all the stuff I've stitched together, I can't make it work properly ...

 

Is there a tutorial explaining the whole shebang somewhere? That would be highly appreciated :)

running minecraft on Mac OS X - Sierra --- creating code since 1986 ... --- मेरा दिल भारतवासी है!

width=289 height=100http://www.arno-saxena.de/pictures/chococraft/banner_signature.png[/img]

Link to comment
Share on other sites

Items have models, not icons.

 

What exactly do you want the item's model to be controlled by?

 

For metadata-based models, use

ModelLoader.setCustomModelResourceLocation

in preInit to set a model for each metadata value.

 

For models based on some other aspect of the

ItemStack

, use

ModelLoader.setCustomMeshDefinition

in preInit to set an

ItemMeshDefinition

for the

Item

; this allows you to map an

ItemStack

to an arbitrary

ModelResourceLocation

. You must tell Minecraft to load each possible model by calling

ModelBakery.registerItemVariants

.

 

For models based on some aspect of the entity holding the item or the world it's in, specify overrides in the item model itself. These can use any

IItemPropertyGetter

registered for the

Item

(

Item#addPropertyOverride

) to specify another item model.

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.

Link to comment
Share on other sites

ok, models :)

 

So, my item stack will have a status  (example: click once for source block type, click second time for target block type, click third time for start block and fourth time for end block. After fourth click in the area marked by the last two clicks, the second clicked block types will be exchanged for the first clicked block type ... after each click the status will change)

 

Anyway, this calls for either the meta data solution (then I have to get the status into the meta data) or the item variants solution, because the status is already an aspect of the ItemStack.

 

For the later solution. I'll be calling ModelBakery and register all models. Also I have to set custom mesh definitions for the different itemStack status... Now I have to confess I don't know what a MeshDefinition is and how to get the stack status represented in the MeshDefinition.

running minecraft on Mac OS X - Sierra --- creating code since 1986 ... --- मेरा दिल भारतवासी है!

width=289 height=100http://www.arno-saxena.de/pictures/chococraft/banner_signature.png[/img]

Link to comment
Share on other sites

ItemMeshDefinition

is an interface with a single method:

ModelResourceLocation getModelLocation(ItemStack stack)

. This receives an

ItemStack

and returns a

ModelResourceLocation

pointing to the model that should be used for the item. How it determines which

ModelResourceLocation

to use is completely up to you.

 

I have an explanation of the model loading process and how

ModelResourceLocation

s are mapped to models here.

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.

Link to comment
Share on other sites

And some info here discussing using blockstate json files to define item variants (rather than a bunch of single "variant" models vanilla uses).

Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable.  If you think this is the case, JUST REPORT ME.  Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice.

 

Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked.

 

DO NOT PM ME WITH PROBLEMS. No help will be given.

Link to comment
Share on other sites

thanks Draco for the the variant suggestion, will try this definitely as soon as I've understand the mesh version :)

 

As for the mesh version, I have added a mesh class like this

 

 

package torojima.buildhelper.common.itemMeshDefinitions;

import net.minecraft.client.renderer.ItemMeshDefinition;
import net.minecraft.client.renderer.block.model.ModelResourceLocation;
import net.minecraft.item.ItemStack;
import torojima.buildhelper.BuildHelperMod;
import torojima.buildhelper.common.item.ItemExchangeWand;

public class ItemExchangeWandMeshDefinition implements ItemMeshDefinition
{

  @Override
  public ModelResourceLocation getModelLocation(ItemStack stack)
  {
    if(stack.getItem().getClass() == BuildHelperMod.exchangeWand.getClass())
    {
      ItemExchangeWand iew = (ItemExchangeWand)stack.getItem();
      switch (iew.getStatus())
      {
        case ItemExchangeWand.NONE:
          return new ModelResourceLocation(BuildHelperMod.MODID + ":" 
           + BuildHelperMod.exchangeWand.getUnlocalizedName().substring(5), "inventory");
       case ItemExchangeWand.NAMED:
         return new ModelResourceLocation(BuildHelperMod.MODID + ":" 
           + BuildHelperMod.exchangeWand.getUnlocalizedName().substring(5) + "_c1", "inventory");
       case ItemExchangeWand.CHARGED:
        return new ModelResourceLocation(BuildHelperMod.MODID + ":" 
           + BuildHelperMod.exchangeWand.getUnlocalizedName().substring(5) + "_c2", "inventory");
       case ItemExchangeWand.FILL:
        return new ModelResourceLocation(BuildHelperMod.MODID + ":"
           + BuildHelperMod.exchangeWand.getUnlocalizedName().substring(5) + "_c3", "inventory");
       default:
        return new ModelResourceLocation(BuildHelperMod.MODID + ":"
           + BuildHelperMod.exchangeWand.getUnlocalizedName().substring(5), "inventory");
      }
    }
    return null;		
  }
}

 

 

also I've added models for all variations.

 

Further I've registered the variations in

 

@EventHandler
public void init(FMLInitializationEvent event)

 

this way:

 

ModelBakery.registerItemVariants(BuildHelperMod.exchangeWand, 
  new ModelResourceLocation(BuildHelperMod.MODID + ":" + BuildHelperMod.exchangeWand.getUnlocalizedName().substring(5), "inventory"),
  new ModelResourceLocation(BuildHelperMod.MODID + ":" + BuildHelperMod.exchangeWand.getUnlocalizedName().substring(5) + "_c1", "inventory"),
  new ModelResourceLocation(BuildHelperMod.MODID + ":" + BuildHelperMod.exchangeWand.getUnlocalizedName().substring(5) + "_c2", "inventory"),
  new ModelResourceLocation(BuildHelperMod.MODID + ":" + BuildHelperMod.exchangeWand.getUnlocalizedName().substring(5) + "_c3", "inventory")
);
ModelLoader.setCustomMeshDefinition(BuildHelperMod.exchangeWand, new ItemExchangeWandMeshDefinition());

 

I've tried once without any additional model registering and once (a rather desperate attempt :D)

 

 

with the additional:

this.registerModel(BuildHelperMod.exchangeWand);

...

private void registerModel(Item item)
{
    Minecraft.getMinecraft().getRenderItem().getItemModelMesher().register(
        item, 
        0, 
        new ModelResourceLocation(BuildHelperMod.MODID + ":" 
          + item.getUnlocalizedName().substring(5), "inventory"));		
}

 

The try without gave me the pink/black block showing the models are not installed or rather not connected to my item, the version with the additional registerModel call gave me the single original model without change. A debug break point in the getModelLocation Method of the ItemExchangeWandMeshDefinition class was not reached, so I presume the method is never called. Thus I further presume I have not done the registering the right way :)

 

The 'status' field of the item is definitely changed, since I'm using this status for my functionality and that is working as expected ...

running minecraft on Mac OS X - Sierra --- creating code since 1986 ... --- मेरा दिल भारतवासी है!

width=289 height=100http://www.arno-saxena.de/pictures/chococraft/banner_signature.png[/img]

Link to comment
Share on other sites

if(stack.getItem().getClass() == BuildHelperMod.exchangeWand.getClass())

This is unnecessary,

stack

will always be an

ItemStack

of the

Item

the

ItemMeshDefinition

was registered to. Also,

Items

are singletons, you can compare directly with stack.getItem() == BuildHelperMod.exchangeWand. The only instance of an

Item

that will ever exist ingame is the one registered through

GameRegistry

.

 

 Minecraft.getMinecraft().getRenderItem().getItemModelMesher().register(
        item, 
        0, 
        new ModelResourceLocation(BuildHelperMod.MODID + ":" 
          + item.getUnlocalizedName().substring(5), "inventory"));

This is deprecated, use

ModelLoader#setCustomModelResourceLocation()

. Refer here for why. Get rid of getUnlocalizedName().substring(5) too, use

IForgeRegistryEntry#getRegistryName

(

IForgeRegistryEntry

is implemented by both

Block

and

Item

). The unlocalised name should not determine the registry name, unlocalised names can change, registry names should not.

 

In addition, post the console log, it may have useful information.

 

 

 

Link to comment
Share on other sites

Removed the getClass and testing for the item instance itself before the cast.

 

Also removed the getUnlocalizedName and using the getRegistryName instead. This change is working fine.

 

But what I couldn't manage to get working correctly is the ModelLoader#setCustomModelResourceLocation()

 

this is working:

Minecraft.getMinecraft().getRenderItem().getItemModelMesher().register(
  item,  0, new ModelResourceLocation(item.getRegistryName(), "inventory"));

 

but this is not:

 

ModelLoader.setCustomModelResourceLocation(
  item,  0, new ModelResourceLocation(item.getRegistryName(), "inventory"));

 

can you tell me why not?

 

 

running minecraft on Mac OS X - Sierra --- creating code since 1986 ... --- मेरा दिल भारतवासी है!

width=289 height=100http://www.arno-saxena.de/pictures/chococraft/banner_signature.png[/img]

Link to comment
Share on other sites

ModelLoader must be called during PreInit not Init.

Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable.  If you think this is the case, JUST REPORT ME.  Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice.

 

Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked.

 

DO NOT PM ME WITH PROBLEMS. No help will be given.

Link to comment
Share on other sites

thanks :) that does the trick.

 

Now I'm registering the models with this in the preInit phase:

private void registerModel(Item item)
{
  ModelLoader.setCustomModelResourceLocation(item, 0, 
    new ModelResourceLocation(item.getRegistryName(), "inventory"));		
}

 

But I still haven't managed to get the model variations running.

 

I'm using ModelBakery.registerItemVariants(...) to register the Model variants (now with the getRegistryName method, instead of the unlocalized stuff) and ModelLoader.setCustomMeshDefinition(...) for registering a custom mesh definition class as described in my earlier post (also changed the unlocalized stuff in the mesh definition to the getRegistryName method). But it is not working yet. If I use it additionally to the setCustomModelResourceLocation method, I'll see the standard model in the game without change. When I only use the registerItemVariants method, I'll only see the pink/black placeholder. (btw, stack damage is set according to my status field in the items onItemUse method)

 

So my current questions are

- when do I have to use the above mentioned methods, in preInit or Init?

- do I have to use the registerItemVariants instead or additional to the standard registry?

 

and of course ... what am I doing wrong??? :)

running minecraft on Mac OS X - Sierra --- creating code since 1986 ... --- मेरा दिल भारतवासी है!

width=289 height=100http://www.arno-saxena.de/pictures/chococraft/banner_signature.png[/img]

Link to comment
Share on other sites

btw, as requested, the console log:

 

 

[20:37:46] [main/INFO] [GradleStart]: Extra: []

[20:37:46] [main/INFO] [GradleStart]: Running with arguments: [--userProperties, {}, --assetsDir, /Users/arno/.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]

[20:37:46] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker

[20:37:46] [main/INFO] [LaunchWrapper]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker

[20:37:46] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker

[20:37:46] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLTweaker

[20:37:46] [main/INFO] [FML]: Forge Mod Loader version 12.18.1.2011 for Minecraft 1.10.2 loading

[20:37:46] [main/INFO] [FML]: Java is Java HotSpot 64-Bit Server VM, version 1.8.0_66, running on Mac OS X:x86_64:10.11.6, installed at /Library/Java/JavaVirtualMachines/jdk1.8.0_66.jdk/Contents/Home/jre

[20:37:46] [main/INFO] [FML]: Managed to load a deobfuscated Minecraft name- we are in a deobfuscated environment. Skipping runtime deobfuscation

[20:37:46] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.gradle.tweakers.CoremodTweaker

[20:37:46] [main/INFO] [GradleStart]: Injecting location in coremod net.minecraftforge.fml.relauncher.FMLCorePlugin

[20:37:46] [main/INFO] [GradleStart]: Injecting location in coremod net.minecraftforge.classloading.FMLForgePlugin

[20:37:46] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker

[20:37:46] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLDeobfTweaker

[20:37:46] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.AccessTransformerTweaker

[20:37:46] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker

[20:37:46] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker

[20:37:46] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper

[20:37:46] [main/ERROR] [FML]: The binary patch set is missing. Either you are in a development environment, or things are not going to work!

[20:37:47] [main/ERROR] [FML]: FML appears to be missing any signature data. This is not a good thing

[20:37:47] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper

[20:37:47] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLDeobfTweaker

[20:37:47] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.gradle.tweakers.AccessTransformerTweaker

[20:37:47] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.TerminalTweaker

[20:37:47] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.TerminalTweaker

[20:37:47] [main/INFO] [LaunchWrapper]: Launching wrapped minecraft {net.minecraft.client.main.Main}

[20:37:48] [Client thread/INFO]: Setting user: Player491

[20:37:50] [Client thread/WARN]: Skipping bad option: lastServer:

[20:37:51] [Client thread/INFO]: LWJGL Version: 2.9.2

[20:37:51] [Client thread/INFO] [FML]: MinecraftForge v12.18.1.2011 Initialized

[20:37:51] [Client thread/INFO] [FML]: Replaced 233 ore recipes

[20:37:51] [Client thread/INFO] [FML]: Found 0 mods from the command line. Injecting into mod discoverer

[20:37:51] [Client thread/INFO] [FML]: Searching /Users/arno/Documents/ProgrammingStuff/forge/forge-1.10.2-12.18.1.2014/run/mods for mods

[20:37:52] [Client thread/INFO] [FML]: Forge Mod Loader has identified 4 mods to load

[20:37:52] [Client thread/INFO] [FML]: Attempting connection with missing mods [mcp, FML, Forge, buildhelper] at CLIENT

[20:37:52] [Client thread/INFO] [FML]: Attempting connection with missing mods [mcp, FML, Forge, buildhelper] at SERVER

[20:37:52] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:Torojima's Build Helper

[20:37:52] [Client thread/INFO] [FML]: Processing ObjectHolder annotations

[20:37:52] [Client thread/INFO] [FML]: Found 423 ObjectHolder annotations

[20:37:52] [Client thread/INFO] [FML]: Identifying ItemStackHolder annotations

[20:37:52] [Client thread/INFO] [FML]: Found 0 ItemStackHolder annotations

[20:37:52] [Client thread/INFO] [FML]: Configured a dormant chunk cache size of 0

[20:37:52] [Forge Version Check/INFO] [ForgeVersionCheck]: [buildhelper] Starting version check at https://github.com/ArnoSaxena/buildhelper/blob/master/bin/update.json

[20:37:52] [Client thread/INFO] [buildhelper]: registering models

[20:37:52] [Client thread/INFO] [FML]: Applying holder lookups

[20:37:52] [Client thread/INFO] [FML]: Holder lookups applied

[20:37:52] [Client thread/INFO] [FML]: Injecting itemstacks

[20:37:52] [Client thread/INFO] [FML]: Itemstack injection complete

[20:37:54] [Forge Version Check/INFO] [ForgeVersionCheck]: [Forge] Starting version check at http://files.minecraftforge.net/maven/net/minecraftforge/forge/promotions_slim.json

[20:37:54] [sound Library Loader/INFO]: Starting up SoundSystem...

[20:37:54] [Forge Version Check/INFO] [ForgeVersionCheck]: [Forge] Found status: UP_TO_DATE Target: null

[20:37:54] [Thread-6/INFO]: Initializing LWJGL OpenAL

[20:37:54] [Thread-6/INFO]: (The LWJGL binding of OpenAL.  For more information, see http://www.lwjgl.org)

2016-07-26 20:37:54.598 java[1744:197593] 20:37:54.597 WARNING:  140: This application, or a library it uses, is using the deprecated Carbon Component Manager for hosting Audio Units. Support for this will be removed in a future release. Also, this makes the host incompatible with version 3 audio units. Please transition to the API's in AudioComponent.h.

[20:37:54] [Thread-6/INFO]: OpenAL initialized.

[20:37:54] [sound Library Loader/INFO]: Sound engine started

[20:37:55] [Client thread/INFO] [FML]: Max texture size: 16384

[20:37:55] [Client thread/INFO]: Created: 16x16 textures-atlas

[20:37:56] [Client thread/INFO] [buildhelper]: registering model variants

[20:37:56] [Client thread/INFO] [FML]: Injecting itemstacks

[20:37:56] [Client thread/INFO] [FML]: Itemstack injection complete

[20:37:56] [Client thread/INFO] [FML]: Forge Mod Loader has successfully loaded 4 mods

[20:37:56] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:Torojima's Build Helper

[20:37:57] [Client thread/INFO]: SoundSystem shutting down...

[20:37:57] [Client thread/WARN]: Author: Paul Lamb, www.paulscode.com

[20:37:57] [sound Library Loader/INFO]: Starting up SoundSystem...

[20:37:58] [Thread-8/INFO]: Initializing LWJGL OpenAL

[20:37:58] [Thread-8/INFO]: (The LWJGL binding of OpenAL.  For more information, see http://www.lwjgl.org)

[20:37:58] [Thread-8/INFO]: OpenAL initialized.

[20:37:58] [sound Library Loader/INFO]: Sound engine started

[20:37:58] [Client thread/INFO] [FML]: Max texture size: 16384

[20:37:59] [Client thread/INFO]: Created: 1024x512 textures-atlas

[20:37:59] [Client thread/WARN]: Skipping bad option: lastServer:

[20:38:00] [Realms Notification Availability checker #1/INFO]: Could not authorize you against Realms server: Invalid session id

 

 

running minecraft on Mac OS X - Sierra --- creating code since 1986 ... --- मेरा दिल भारतवासी है!

width=289 height=100http://www.arno-saxena.de/pictures/chococraft/banner_signature.png[/img]

Link to comment
Share on other sites

Please post the latest model registration code for the exchange wand.

 

In future please post the FML log (logs/fml-client-latest.log) rather than the console output, it contains more potentially useful information.

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.

Link to comment
Share on other sites

here my client proxy class with the registry methods.

 

 

 

package torojima.buildhelper.common.proxy;

import net.minecraft.client.Minecraft;
import net.minecraft.client.renderer.block.model.ModelBakery;
import net.minecraft.client.renderer.block.model.ModelResourceLocation;
import net.minecraft.item.Item;
import net.minecraftforge.client.model.ModelLoader;
import torojima.buildhelper.BuildHelperMod;
import torojima.buildhelper.common.itemMeshDefinitions.ExchangeWandMeshDefinition;

public class ProxyClient extends ProxyServer
{
  @Override
  public void registerModels()
  {
    BuildHelperMod.logger.info("registering models");
    this.registerModel(BuildHelperMod.sandWaterWand);
    this.registerModel(BuildHelperMod.fillWandDirt);
    this.registerModel(BuildHelperMod.fillWandCobble);
    this.registerModel(BuildHelperMod.fillWandStone);
    this.registerModel(BuildHelperMod.fillWandAir);
    this.registerModel(BuildHelperMod.gapFillWand);
    this.registerModel(BuildHelperMod.gapFillWaterWand);
    this.registerModel(BuildHelperMod.cubeDiggerWand);
    this.registerModel(BuildHelperMod.removeWaterWand);
    this.registerModel(BuildHelperMod.exchangeWand);
  }

  @Override
  public void registerModelVariants()
  {
    BuildHelperMod.logger.info("registering model variants");
    ModelBakery.registerItemVariants(BuildHelperMod.exchangeWand, 
        new ModelResourceLocation(BuildHelperMod.exchangeWand.getRegistryName(), "inventory"),
        new ModelResourceLocation(BuildHelperMod.exchangeWand.getRegistryName() + "_c1", "inventory"),
        new ModelResourceLocation(BuildHelperMod.exchangeWand.getRegistryName() + "_c2", "inventory"),
        new ModelResourceLocation(BuildHelperMod.exchangeWand.getRegistryName() + "_c3", "inventory")
        );
    ModelLoader.setCustomMeshDefinition(BuildHelperMod.exchangeWand, new ExchangeWandMeshDefinition());
  }

  private void registerModel(Item item)
  {
    ModelLoader.setCustomModelResourceLocation(item, 0, 
        new ModelResourceLocation(item.getRegistryName(), "inventory"));		
  }
}

 

 

registerModels will be called in preInit, while registerModelVariants I'm calling in init phase.

 

and here the mesh definition class

 

package torojima.buildhelper.common.itemMeshDefinitions;

import net.minecraft.client.renderer.ItemMeshDefinition;
import net.minecraft.client.renderer.block.model.ModelResourceLocation;
import net.minecraft.item.ItemStack;
import torojima.buildhelper.BuildHelperMod;
import torojima.buildhelper.common.item.ItemExchangeWand;

public class ExchangeWandMeshDefinition implements ItemMeshDefinition
{

  @Override
  public ModelResourceLocation getModelLocation(ItemStack stack)
  {
    if(stack.getItem() == BuildHelperMod.exchangeWand)
    {
      ItemExchangeWand iew = (ItemExchangeWand)stack.getItem();
      switch (iew.getStatus())
      {
      case ItemExchangeWand.NONE:
        return new ModelResourceLocation(BuildHelperMod.exchangeWand.getRegistryName(), "inventory");
      case ItemExchangeWand.NAMED:
        return new ModelResourceLocation(BuildHelperMod.exchangeWand.getRegistryName() + "_c1", "inventory");
      case ItemExchangeWand.CHARGED:
        return new ModelResourceLocation(BuildHelperMod.exchangeWand.getRegistryName() + "_c2", "inventory");
      case ItemExchangeWand.FILL:
        return new ModelResourceLocation(BuildHelperMod.exchangeWand.getRegistryName() + "_c3", "inventory");
      default:
        return new ModelResourceLocation(BuildHelperMod.exchangeWand.getRegistryName(), "inventory");
      }
    }
    return null;		
  }
}

 

 

 

and fml-client-latest.log:

 

[15:04:10] [main/DEBUG] [FML/]: Injecting tracing printstreams for STDOUT/STDERR.

[15:04:10] [main/INFO] [FML/]: Forge Mod Loader version 12.18.1.2011 for Minecraft 1.10.2 loading

[15:04:10] [main/INFO] [FML/]: Java is Java HotSpot 64-Bit Server VM, version 1.8.0_66, running on Mac OS X:x86_64:10.11.6, installed at /Library/Java/JavaVirtualMachines/jdk1.8.0_66.jdk/Contents/Home/jre

[15:04:10] [main/DEBUG] [FML/]: Java classpath at launch is /Users/arno/Documents/ProgrammingStuff/forge/forge-1.10.2-12.18.1.2014/bin:/Users/arno/.gradle/caches/minecraft/net/minecraftforge/forge/1.10.2-12.18.1.2011/snapshot/20160518/forgeSrc-1.10.2-12.18.1.2011.jar:/Users/arno/.gradle/caches/modules-2/files-2.1/com.google.code.findbugs/jsr305/3.0.1/f7be08ec23c21485b9b5a1cf1654c2ec8c58168d/jsr305-3.0.1.jar:/Users/arno/.gradle/caches/modules-2/files-2.1/com.mojang/netty/1.6/4b75825a06139752bd800d9e29c5fd55b8b1b1e4/netty-1.6.jar:/Users/arno/.gradle/caches/modules-2/files-2.1/oshi-project/oshi-core/1.1/9ddf7b048a8d701be231c0f4f95fd986198fd2d8/oshi-core-1.1.jar:/Users/arno/.gradle/caches/modules-2/files-2.1/net.java.dev.jna/jna/3.4.0/803ff252fedbd395baffd43b37341dc4a150a554/jna-3.4.0.jar:/Users/arno/.gradle/caches/modules-2/files-2.1/net.java.dev.jna/platform/3.4.0/e3f70017be8100d3d6923f50b3d2ee17714e9c13/platform-3.4.0.jar:/Users/arno/.gradle/caches/modules-2/files-2.1/com.ibm.icu/icu4j-core-mojang/51.2/63d216a9311cca6be337c1e458e587f99d382b84/icu4j-core-mojang-51.2.jar:/Users/arno/.gradle/caches/modules-2/files-2.1/net.sf.jopt-simple/jopt-simple/4.6/306816fb57cf94f108a43c95731b08934dcae15c/jopt-simple-4.6.jar:/Users/arno/.gradle/caches/modules-2/files-2.1/io.netty/netty-all/4.0.23.Final/294104aaf1781d6a56a07d561e792c5d0c95f45/netty-all-4.0.23.Final.jar:/Users/arno/.gradle/caches/modules-2/files-2.1/com.google.guava/guava/17.0/9c6ef172e8de35fd8d4d8783e4821e57cdef7445/guava-17.0.jar:/Users/arno/.gradle/caches/modules-2/files-2.1/org.apache.commons/commons-lang3/3.3.2/90a3822c38ec8c996e84c16a3477ef632cbc87a3/commons-lang3-3.3.2.jar:/Users/arno/.gradle/caches/modules-2/files-2.1/commons-io/commons-io/2.4/b1b6ea3b7e4aa4f492509a4952029cd8e48019ad/commons-io-2.4.jar:/Users/arno/.gradle/caches/modules-2/files-2.1/commons-codec/commons-codec/1.9/9ce04e34240f674bc72680f8b843b1457383161a/commons-codec-1.9.jar:/Users/arno/.gradle/caches/modules-2/files-2.1/net.java.jutils/jutils/1.0.0/e12fe1fda814bd348c1579329c86943d2cd3c6a6/jutils-1.0.0.jar:/Users/arno/.gradle/caches/modules-2/files-2.1/com.google.code.gson/gson/2.2.4/a60a5e993c98c864010053cb901b7eab25306568/gson-2.2.4.jar:/Users/arno/.gradle/caches/modules-2/files-2.1/com.mojang/authlib/1.5.22/afaa8f6df976fcb5520e76ef1d5798c9e6b5c0b2/authlib-1.5.22.jar:/Users/arno/.gradle/caches/modules-2/files-2.1/com.mojang/realms/1.9.3/b291425bf7ef763452eaa894575018706339f72b/realms-1.9.3.jar:/Users/arno/.gradle/caches/modules-2/files-2.1/org.apache.commons/commons-compress/1.8.1/a698750c16740fd5b3871425f4cb3bbaa87f529d/commons-compress-1.8.1.jar:/Users/arno/.gradle/caches/modules-2/files-2.1/org.apache.httpcomponents/httpclient/4.3.3/18f4247ff4572a074444572cee34647c43e7c9c7/httpclient-4.3.3.jar:/Users/arno/.gradle/caches/modules-2/files-2.1/commons-logging/commons-logging/1.1.3/f6f66e966c70a83ffbdb6f17a0919eaf7c8aca7f/commons-logging-1.1.3.jar:/Users/arno/.gradle/caches/modules-2/files-2.1/org.apache.httpcomponents/httpcore/4.3.2/31fbbff1ddbf98f3aa7377c94d33b0447c646b6e/httpcore-4.3.2.jar:/Users/arno/.gradle/caches/modules-2/files-2.1/it.unimi.dsi/fastutil/7.0.12_mojang/ba787e741efdc425fc5d2ea654b57c15fba27efa/fastutil-7.0.12_mojang.jar:/Users/arno/.gradle/caches/modules-2/files-2.1/org.apache.logging.log4j/log4j-api/2.0-beta9/1dd66e68cccd907880229f9e2de1314bd13ff785/log4j-api-2.0-beta9.jar:/Users/arno/.gradle/caches/modules-2/files-2.1/org.apache.logging.log4j/log4j-core/2.0-beta9/678861ba1b2e1fccb594bb0ca03114bb05da9695/log4j-core-2.0-beta9.jar:/Users/arno/.gradle/caches/modules-2/files-2.1/net.minecraft/launchwrapper/1.12/111e7bea9c968cdb3d06ef4632bf7ff0824d0f36/launchwrapper-1.12.jar:/Users/arno/.gradle/caches/modules-2/files-2.1/jline/jline/2.13/2d9530d0a25daffaffda7c35037b046b627bb171/jline-2.13.jar:/Users/arno/.gradle/caches/modules-2/files-2.1/org.ow2.asm/asm-debug-all/5.0.3/f9e364ae2a66ce2a543012a4668856e84e5dab74/asm-debug-all-5.0.3.jar:/Users/arno/.gradle/caches/modules-2/files-2.1/com.typesafe.akka/akka-actor_2.11/2.3.3/ed62e9fc709ca0f2ff1a3220daa8b70a2870078e/akka-actor_2.11-2.3.3.jar:/Users/arno/.gradle/caches/modules-2/files-2.1/com.typesafe/config/1.2.1/f771f71fdae3df231bcd54d5ca2d57f0bf93f467/config-1.2.1.jar:/Users/arno/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-actors-migration_2.11/1.1.0/dfa8bc42b181d5b9f1a5dd147f8ae308b893eb6f/scala-actors-migration_2.11-1.1.0.jar:/Users/arno/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-compiler/2.11.1/56ea2e6c025e0821f28d73ca271218b8dd04926a/scala-compiler-2.11.1.jar:/Users/arno/.gradle/caches/modules-2/files-2.1/org.scala-lang.plugins/scala-continuations-library_2.11/1.0.2/e517c53a7e9acd6b1668c5a35eccbaa3bab9aac/scala-continuations-library_2.11-1.0.2.jar:/Users/arno/.gradle/caches/modules-2/files-2.1/org.scala-lang.plugins/scala-continuations-plugin_2.11.1/1.0.2/f361a3283452c57fa30c1ee69448995de23c60f7/scala-continuations-plugin_2.11.1-1.0.2.jar:/Users/arno/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-library/2.11.1/e11da23da3eabab9f4777b9220e60d44c1aab6a/scala-library-2.11.1.jar:/Users/arno/.gradle/caches/modules-2/files-2.1/org.scala-lang.modules/scala-parser-combinators_2.11/1.0.1/f05d7345bf5a58924f2837c6c1f4d73a938e1ff0/scala-parser-combinators_2.11-1.0.1.jar:/Users/arno/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-reflect/2.11.1/6580347e61cc7f8e802941e7fde40fa83b8badeb/scala-reflect-2.11.1.jar:/Users/arno/.gradle/caches/modules-2/files-2.1/org.scala-lang.modules/scala-swing_2.11/1.0.1/b1cdd92bd47b1e1837139c1c53020e86bb9112ae/scala-swing_2.11-1.0.1.jar:/Users/arno/.gradle/caches/modules-2/files-2.1/org.scala-lang.modules/scala-xml_2.11/1.0.2/820fbca7e524b530fdadc594c39d49a21ea0337e/scala-xml_2.11-1.0.2.jar:/Users/arno/.gradle/caches/modules-2/files-2.1/lzma/lzma/0.0.1/521616dc7487b42bef0e803bd2fa3faf668101d7/lzma-0.0.1.jar:/Users/arno/.gradle/caches/modules-2/files-2.1/net.sf.trove4j/trove4j/3.0.3/42ccaf4761f0dfdfa805c9e340d99a755907e2dd/trove4j-3.0.3.jar:/Users/arno/.gradle/caches/modules-2/files-2.1/com.paulscode/codecjorbis/20101023/c73b5636faf089d9f00e8732a829577de25237ee/codecjorbis-20101023.jar:/Users/arno/.gradle/caches/modules-2/files-2.1/com.paulscode/codecwav/20101023/12f031cfe88fef5c1dd36c563c0a3a69bd7261da/codecwav-20101023.jar:/Users/arno/.gradle/caches/modules-2/files-2.1/com.paulscode/libraryjavasound/20101123/5c5e304366f75f9eaa2e8cca546a1fb6109348b3/libraryjavasound-20101123.jar:/Users/arno/.gradle/caches/modules-2/files-2.1/com.paulscode/librarylwjglopenal/20100824/73e80d0794c39665aec3f62eee88ca91676674ef/librarylwjglopenal-20100824.jar:/Users/arno/.gradle/caches/modules-2/files-2.1/com.paulscode/soundsystem/20120107/419c05fe9be71f792b2d76cfc9b67f1ed0fec7f6/soundsystem-20120107.jar:/Users/arno/.gradle/caches/modules-2/files-2.1/net.java.jinput/jinput/2.0.5/39c7796b469a600f72380316f6b1f11db6c2c7c4/jinput-2.0.5.jar:/Users/arno/.gradle/caches/modules-2/files-2.1/org.lwjgl.lwjgl/lwjgl/2.9.2-nightly-20140822/7707204c9ffa5d91662de95f0a224e2f721b22af/lwjgl-2.9.2-nightly-20140822.jar:/Users/arno/.gradle/caches/modules-2/files-2.1/org.lwjgl.lwjgl/lwjgl_util/2.9.2-nightly-20140822/f0e612c840a7639c1f77f68d72a28dae2f0c8490/lwjgl_util-2.9.2-nightly-20140822.jar:/Users/arno/.gradle/caches/modules-2/files-2.1/java3d/vecmath/1.5.2/79846ba34cbd89e2422d74d53752f993dcc2ccaf/vecmath-1.5.2.jar:/Users/arno/.gradle/caches/modules-2/files-2.1/org.fusesource.jansi/jansi/1.11/655c643309c2f45a56a747fda70e3fadf57e9f11/jansi-1.11.jar:/Users/arno/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-actors/2.11.0/8ccfb6541de179bb1c4d45cf414acee069b7f78b/scala-actors-2.11.0.jar:/Users/arno/.gradle/caches/modules-2/files-2.1/net.java.jinput/jinput-platform/2.0.5/7ff832a6eb9ab6a767f1ade2b548092d0fa64795/jinput-platform-2.0.5-natives-linux.jar:/Users/arno/.gradle/caches/modules-2/files-2.1/net.java.jinput/jinput-platform/2.0.5/385ee093e01f587f30ee1c8a2ee7d408fd732e16/jinput-platform-2.0.5-natives-windows.jar:/Users/arno/.gradle/caches/modules-2/files-2.1/net.java.jinput/jinput-platform/2.0.5/53f9c919f34d2ca9de8c51fc4e1e8282029a9232/jinput-platform-2.0.5-natives-osx.jar:/Users/arno/.gradle/caches/modules-2/files-2.1/org.lwjgl.lwjgl/lwjgl-platform/2.9.2-nightly-20140822/78b2a55ce4dc29c6b3ec4df8ca165eba05f9b341/lwjgl-platform-2.9.2-nightly-20140822-natives-windows.jar:/Users/arno/.gradle/caches/modules-2/files-2.1/org.lwjgl.lwjgl/lwjgl-platform/2.9.2-nightly-20140822/d898a33b5d0a6ef3fed3a4ead506566dce6720a5/lwjgl-platform-2.9.2-nightly-20140822-natives-linux.jar:/Users/arno/.gradle/caches/modules-2/files-2.1/org.lwjgl.lwjgl/lwjgl-platform/2.9.2-nightly-20140822/79f5ce2fea02e77fe47a3c745219167a542121d7/lwjgl-platform-2.9.2-nightly-20140822-natives-osx.jar:/Users/arno/.gradle/caches/minecraft/deobfedDeps/compileDummy.jar:/Users/arno/.gradle/caches/minecraft/deobfedDeps/providedDummy.jar:/Users/arno/.gradle/caches/minecraft/net/minecraftforge/forge/1.10.2-12.18.1.2011/start

[15:04:10] [main/DEBUG] [FML/]: Java library path at launch is /Users/arno/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:.:/Users/arno/.gradle/caches/minecraft/net/minecraft/natives/1.10.2

[15:04:10] [main/INFO] [FML/]: Managed to load a deobfuscated Minecraft name- we are in a deobfuscated environment. Skipping runtime deobfuscation

[15:04:10] [main/DEBUG] [FML/]: Instantiating coremod class FMLCorePlugin

[15:04:10] [main/DEBUG] [FML/]: Added access transformer class net.minecraftforge.fml.common.asm.transformers.AccessTransformer to enqueued access transformers

[15:04:10] [main/DEBUG] [FML/]: Enqueued coremod FMLCorePlugin

[15:04:10] [main/DEBUG] [FML/]: Instantiating coremod class FMLForgePlugin

[15:04:10] [main/DEBUG] [FML/]: Enqueued coremod FMLForgePlugin

[15:04:10] [main/DEBUG] [FML/]: All fundamental core mods are successfully located

[15:04:10] [main/DEBUG] [FML/]: Attempting to load commandline specified mods, relative to /Users/arno/Documents/ProgrammingStuff/forge/forge-1.10.2-12.18.1.2014/run/.

[15:04:10] [main/DEBUG] [FML/]: Discovering coremods

[15:04:10] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.gradle.tweakers.CoremodTweaker

[15:04:10] [main/INFO] [GradleStart/]: Injecting location in coremod net.minecraftforge.fml.relauncher.FMLCorePlugin

[15:04:10] [main/INFO] [GradleStart/]: Injecting location in coremod net.minecraftforge.classloading.FMLForgePlugin

[15:04:10] [main/INFO] [LaunchWrapper/]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker

[15:04:10] [main/INFO] [LaunchWrapper/]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLDeobfTweaker

[15:04:10] [main/INFO] [LaunchWrapper/]: Loading tweak class name net.minecraftforge.gradle.tweakers.AccessTransformerTweaker

[15:04:10] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker

[15:04:10] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker

[15:04:10] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper

[15:04:10] [main/DEBUG] [FML/]: Injecting coremod FMLCorePlugin {net.minecraftforge.fml.relauncher.FMLCorePlugin} class transformers

[15:04:10] [main/TRACE] [FML/]: Registering transformer net.minecraftforge.fml.common.asm.transformers.BlamingTransformer

[15:04:10] [main/TRACE] [FML/]: Registering transformer net.minecraftforge.fml.common.asm.transformers.SideTransformer

[15:04:10] [main/TRACE] [FML/]: Registering transformer net.minecraftforge.fml.common.asm.transformers.EventSubscriptionTransformer

[15:04:10] [main/TRACE] [FML/]: Registering transformer net.minecraftforge.fml.common.asm.transformers.EventSubscriberTransformer

[15:04:10] [main/DEBUG] [FML/]: Injection complete

[15:04:10] [main/DEBUG] [FML/]: Running coremod plugin for FMLCorePlugin {net.minecraftforge.fml.relauncher.FMLCorePlugin}

[15:04:10] [main/DEBUG] [FML/]: Running coremod plugin FMLCorePlugin

[15:04:10] [main/ERROR] [FML/]: The binary patch set is missing. Either you are in a development environment, or things are not going to work!

[15:04:10] [main/DEBUG] [FML/]: Loading deobfuscation resource /Users/arno/.gradle/caches/minecraft/de/oceanlabs/mcp/mcp_snapshot/20160518/srgs/srg-mcp.srg with 32364 records

[15:04:11] [main/ERROR] [FML/]: FML appears to be missing any signature data. This is not a good thing

[15:04:11] [main/DEBUG] [FML/]: Coremod plugin class FMLCorePlugin run successfully

[15:04:11] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper

[15:04:11] [main/DEBUG] [FML/]: Injecting coremod FMLForgePlugin {net.minecraftforge.classloading.FMLForgePlugin} class transformers

[15:04:11] [main/DEBUG] [FML/]: Injection complete

[15:04:11] [main/DEBUG] [FML/]: Running coremod plugin for FMLForgePlugin {net.minecraftforge.classloading.FMLForgePlugin}

[15:04:11] [main/DEBUG] [FML/]: Running coremod plugin FMLForgePlugin

[15:04:11] [main/DEBUG] [FML/]: Coremod plugin class FMLForgePlugin run successfully

[15:04:11] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLDeobfTweaker

[15:04:11] [main/DEBUG] [FML/]: Loaded 190 rules from AccessTransformer config file forge_at.cfg

[15:04:11] [main/DEBUG] [FML/]: Validating minecraft

[15:04:11] [main/DEBUG] [FML/]: Minecraft validated, launching...

[15:04:11] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.gradle.tweakers.AccessTransformerTweaker

[15:04:11] [main/INFO] [LaunchWrapper/]: Loading tweak class name net.minecraftforge.fml.common.launcher.TerminalTweaker

[15:04:11] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.fml.common.launcher.TerminalTweaker

[15:04:11] [main/INFO] [LaunchWrapper/]: Launching wrapped minecraft {net.minecraft.client.main.Main}

[15:04:14] [Client thread/DEBUG] [FML/]: Creating vanilla freeze snapshot

[15:04:14] [Client thread/DEBUG] [FML/]: Vanilla freeze snapshot created

[15:04:15] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - LanguageManager took 0.001s

[15:04:15] [Client thread/INFO] [FML/]: MinecraftForge v12.18.1.2011 Initialized

[15:04:15] [Client thread/INFO] [FML/]: Replaced 233 ore recipes

[15:04:15] [Client thread/DEBUG] [FML/]: File /Users/arno/Documents/ProgrammingStuff/forge/forge-1.10.2-12.18.1.2014/run/config/injectedDependencies.json not found. No dependencies injected

[15:04:15] [Client thread/DEBUG] [FML/]: Building injected Mod Containers [net.minecraftforge.fml.common.FMLContainer, net.minecraftforge.common.ForgeModContainer]

[15:04:15] [Client thread/DEBUG] [FML/]: Attempting to load mods contained in the minecraft jar file and associated classes

[15:04:15] [Client thread/DEBUG] [FML/]: Found a minecraft related directory at /Users/arno/Documents/ProgrammingStuff/forge/forge-1.10.2-12.18.1.2014/bin, examining for mod candidates

[15:04:15] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /Users/arno/.gradle/caches/minecraft/net/minecraftforge/forge/1.10.2-12.18.1.2011/snapshot/20160518/forgeSrc-1.10.2-12.18.1.2011.jar, examining for mod candidates

[15:04:15] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /Users/arno/.gradle/caches/modules-2/files-2.1/com.google.code.findbugs/jsr305/3.0.1/f7be08ec23c21485b9b5a1cf1654c2ec8c58168d/jsr305-3.0.1.jar, examining for mod candidates

[15:04:15] [Client thread/TRACE] [FML/]: Skipping known library file /Users/arno/.gradle/caches/modules-2/files-2.1/com.mojang/netty/1.6/4b75825a06139752bd800d9e29c5fd55b8b1b1e4/netty-1.6.jar

[15:04:15] [Client thread/TRACE] [FML/]: Skipping known library file /Users/arno/.gradle/caches/modules-2/files-2.1/oshi-project/oshi-core/1.1/9ddf7b048a8d701be231c0f4f95fd986198fd2d8/oshi-core-1.1.jar

[15:04:15] [Client thread/TRACE] [FML/]: Skipping known library file /Users/arno/.gradle/caches/modules-2/files-2.1/net.java.dev.jna/jna/3.4.0/803ff252fedbd395baffd43b37341dc4a150a554/jna-3.4.0.jar

[15:04:15] [Client thread/TRACE] [FML/]: Skipping known library file /Users/arno/.gradle/caches/modules-2/files-2.1/net.java.dev.jna/platform/3.4.0/e3f70017be8100d3d6923f50b3d2ee17714e9c13/platform-3.4.0.jar

[15:04:15] [Client thread/TRACE] [FML/]: Skipping known library file /Users/arno/.gradle/caches/modules-2/files-2.1/com.ibm.icu/icu4j-core-mojang/51.2/63d216a9311cca6be337c1e458e587f99d382b84/icu4j-core-mojang-51.2.jar

[15:04:15] [Client thread/TRACE] [FML/]: Skipping known library file /Users/arno/.gradle/caches/modules-2/files-2.1/net.sf.jopt-simple/jopt-simple/4.6/306816fb57cf94f108a43c95731b08934dcae15c/jopt-simple-4.6.jar

[15:04:15] [Client thread/TRACE] [FML/]: Skipping known library file /Users/arno/.gradle/caches/modules-2/files-2.1/io.netty/netty-all/4.0.23.Final/294104aaf1781d6a56a07d561e792c5d0c95f45/netty-all-4.0.23.Final.jar

[15:04:15] [Client thread/TRACE] [FML/]: Skipping known library file /Users/arno/.gradle/caches/modules-2/files-2.1/com.google.guava/guava/17.0/9c6ef172e8de35fd8d4d8783e4821e57cdef7445/guava-17.0.jar

[15:04:15] [Client thread/TRACE] [FML/]: Skipping known library file /Users/arno/.gradle/caches/modules-2/files-2.1/org.apache.commons/commons-lang3/3.3.2/90a3822c38ec8c996e84c16a3477ef632cbc87a3/commons-lang3-3.3.2.jar

[15:04:15] [Client thread/TRACE] [FML/]: Skipping known library file /Users/arno/.gradle/caches/modules-2/files-2.1/commons-io/commons-io/2.4/b1b6ea3b7e4aa4f492509a4952029cd8e48019ad/commons-io-2.4.jar

[15:04:15] [Client thread/TRACE] [FML/]: Skipping known library file /Users/arno/.gradle/caches/modules-2/files-2.1/commons-codec/commons-codec/1.9/9ce04e34240f674bc72680f8b843b1457383161a/commons-codec-1.9.jar

[15:04:15] [Client thread/TRACE] [FML/]: Skipping known library file /Users/arno/.gradle/caches/modules-2/files-2.1/net.java.jutils/jutils/1.0.0/e12fe1fda814bd348c1579329c86943d2cd3c6a6/jutils-1.0.0.jar

[15:04:15] [Client thread/TRACE] [FML/]: Skipping known library file /Users/arno/.gradle/caches/modules-2/files-2.1/com.google.code.gson/gson/2.2.4/a60a5e993c98c864010053cb901b7eab25306568/gson-2.2.4.jar

[15:04:15] [Client thread/TRACE] [FML/]: Skipping known library file /Users/arno/.gradle/caches/modules-2/files-2.1/com.mojang/authlib/1.5.22/afaa8f6df976fcb5520e76ef1d5798c9e6b5c0b2/authlib-1.5.22.jar

[15:04:15] [Client thread/TRACE] [FML/]: Skipping known library file /Users/arno/.gradle/caches/modules-2/files-2.1/com.mojang/realms/1.9.3/b291425bf7ef763452eaa894575018706339f72b/realms-1.9.3.jar

[15:04:15] [Client thread/TRACE] [FML/]: Skipping known library file /Users/arno/.gradle/caches/modules-2/files-2.1/org.apache.commons/commons-compress/1.8.1/a698750c16740fd5b3871425f4cb3bbaa87f529d/commons-compress-1.8.1.jar

[15:04:15] [Client thread/TRACE] [FML/]: Skipping known library file /Users/arno/.gradle/caches/modules-2/files-2.1/org.apache.httpcomponents/httpclient/4.3.3/18f4247ff4572a074444572cee34647c43e7c9c7/httpclient-4.3.3.jar

[15:04:15] [Client thread/TRACE] [FML/]: Skipping known library file /Users/arno/.gradle/caches/modules-2/files-2.1/commons-logging/commons-logging/1.1.3/f6f66e966c70a83ffbdb6f17a0919eaf7c8aca7f/commons-logging-1.1.3.jar

[15:04:15] [Client thread/TRACE] [FML/]: Skipping known library file /Users/arno/.gradle/caches/modules-2/files-2.1/org.apache.httpcomponents/httpcore/4.3.2/31fbbff1ddbf98f3aa7377c94d33b0447c646b6e/httpcore-4.3.2.jar

[15:04:15] [Client thread/TRACE] [FML/]: Skipping known library file /Users/arno/.gradle/caches/modules-2/files-2.1/it.unimi.dsi/fastutil/7.0.12_mojang/ba787e741efdc425fc5d2ea654b57c15fba27efa/fastutil-7.0.12_mojang.jar

[15:04:15] [Client thread/TRACE] [FML/]: Skipping known library file /Users/arno/.gradle/caches/modules-2/files-2.1/org.apache.logging.log4j/log4j-api/2.0-beta9/1dd66e68cccd907880229f9e2de1314bd13ff785/log4j-api-2.0-beta9.jar

[15:04:15] [Client thread/TRACE] [FML/]: Skipping known library file /Users/arno/.gradle/caches/modules-2/files-2.1/org.apache.logging.log4j/log4j-core/2.0-beta9/678861ba1b2e1fccb594bb0ca03114bb05da9695/log4j-core-2.0-beta9.jar

[15:04:15] [Client thread/TRACE] [FML/]: Skipping known library file /Users/arno/.gradle/caches/modules-2/files-2.1/net.minecraft/launchwrapper/1.12/111e7bea9c968cdb3d06ef4632bf7ff0824d0f36/launchwrapper-1.12.jar

[15:04:15] [Client thread/TRACE] [FML/]: Skipping known library file /Users/arno/.gradle/caches/modules-2/files-2.1/jline/jline/2.13/2d9530d0a25daffaffda7c35037b046b627bb171/jline-2.13.jar

[15:04:15] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /Users/arno/.gradle/caches/modules-2/files-2.1/org.ow2.asm/asm-debug-all/5.0.3/f9e364ae2a66ce2a543012a4668856e84e5dab74/asm-debug-all-5.0.3.jar, examining for mod candidates

[15:04:15] [Client thread/TRACE] [FML/]: Skipping known library file /Users/arno/.gradle/caches/modules-2/files-2.1/com.typesafe.akka/akka-actor_2.11/2.3.3/ed62e9fc709ca0f2ff1a3220daa8b70a2870078e/akka-actor_2.11-2.3.3.jar

[15:04:15] [Client thread/TRACE] [FML/]: Skipping known library file /Users/arno/.gradle/caches/modules-2/files-2.1/com.typesafe/config/1.2.1/f771f71fdae3df231bcd54d5ca2d57f0bf93f467/config-1.2.1.jar

[15:04:15] [Client thread/TRACE] [FML/]: Skipping known library file /Users/arno/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-actors-migration_2.11/1.1.0/dfa8bc42b181d5b9f1a5dd147f8ae308b893eb6f/scala-actors-migration_2.11-1.1.0.jar

[15:04:15] [Client thread/TRACE] [FML/]: Skipping known library file /Users/arno/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-compiler/2.11.1/56ea2e6c025e0821f28d73ca271218b8dd04926a/scala-compiler-2.11.1.jar

[15:04:15] [Client thread/TRACE] [FML/]: Skipping known library file /Users/arno/.gradle/caches/modules-2/files-2.1/org.scala-lang.plugins/scala-continuations-library_2.11/1.0.2/e517c53a7e9acd6b1668c5a35eccbaa3bab9aac/scala-continuations-library_2.11-1.0.2.jar

[15:04:15] [Client thread/TRACE] [FML/]: Skipping known library file /Users/arno/.gradle/caches/modules-2/files-2.1/org.scala-lang.plugins/scala-continuations-plugin_2.11.1/1.0.2/f361a3283452c57fa30c1ee69448995de23c60f7/scala-continuations-plugin_2.11.1-1.0.2.jar

[15:04:15] [Client thread/TRACE] [FML/]: Skipping known library file /Users/arno/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-library/2.11.1/e11da23da3eabab9f4777b9220e60d44c1aab6a/scala-library-2.11.1.jar

[15:04:15] [Client thread/TRACE] [FML/]: Skipping known library file /Users/arno/.gradle/caches/modules-2/files-2.1/org.scala-lang.modules/scala-parser-combinators_2.11/1.0.1/f05d7345bf5a58924f2837c6c1f4d73a938e1ff0/scala-parser-combinators_2.11-1.0.1.jar

[15:04:15] [Client thread/TRACE] [FML/]: Skipping known library file /Users/arno/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-reflect/2.11.1/6580347e61cc7f8e802941e7fde40fa83b8badeb/scala-reflect-2.11.1.jar

[15:04:15] [Client thread/TRACE] [FML/]: Skipping known library file /Users/arno/.gradle/caches/modules-2/files-2.1/org.scala-lang.modules/scala-swing_2.11/1.0.1/b1cdd92bd47b1e1837139c1c53020e86bb9112ae/scala-swing_2.11-1.0.1.jar

[15:04:15] [Client thread/TRACE] [FML/]: Skipping known library file /Users/arno/.gradle/caches/modules-2/files-2.1/org.scala-lang.modules/scala-xml_2.11/1.0.2/820fbca7e524b530fdadc594c39d49a21ea0337e/scala-xml_2.11-1.0.2.jar

[15:04:15] [Client thread/TRACE] [FML/]: Skipping known library file /Users/arno/.gradle/caches/modules-2/files-2.1/lzma/lzma/0.0.1/521616dc7487b42bef0e803bd2fa3faf668101d7/lzma-0.0.1.jar

[15:04:15] [Client thread/TRACE] [FML/]: Skipping known library file /Users/arno/.gradle/caches/modules-2/files-2.1/net.sf.trove4j/trove4j/3.0.3/42ccaf4761f0dfdfa805c9e340d99a755907e2dd/trove4j-3.0.3.jar

[15:04:15] [Client thread/TRACE] [FML/]: Skipping known library file /Users/arno/.gradle/caches/modules-2/files-2.1/com.paulscode/codecjorbis/20101023/c73b5636faf089d9f00e8732a829577de25237ee/codecjorbis-20101023.jar

[15:04:15] [Client thread/TRACE] [FML/]: Skipping known library file /Users/arno/.gradle/caches/modules-2/files-2.1/com.paulscode/codecwav/20101023/12f031cfe88fef5c1dd36c563c0a3a69bd7261da/codecwav-20101023.jar

[15:04:15] [Client thread/TRACE] [FML/]: Skipping known library file /Users/arno/.gradle/caches/modules-2/files-2.1/com.paulscode/libraryjavasound/20101123/5c5e304366f75f9eaa2e8cca546a1fb6109348b3/libraryjavasound-20101123.jar

[15:04:15] [Client thread/TRACE] [FML/]: Skipping known library file /Users/arno/.gradle/caches/modules-2/files-2.1/com.paulscode/librarylwjglopenal/20100824/73e80d0794c39665aec3f62eee88ca91676674ef/librarylwjglopenal-20100824.jar

[15:04:15] [Client thread/TRACE] [FML/]: Skipping known library file /Users/arno/.gradle/caches/modules-2/files-2.1/com.paulscode/soundsystem/20120107/419c05fe9be71f792b2d76cfc9b67f1ed0fec7f6/soundsystem-20120107.jar

[15:04:15] [Client thread/TRACE] [FML/]: Skipping known library file /Users/arno/.gradle/caches/modules-2/files-2.1/net.java.jinput/jinput/2.0.5/39c7796b469a600f72380316f6b1f11db6c2c7c4/jinput-2.0.5.jar

[15:04:15] [Client thread/TRACE] [FML/]: Skipping known library file /Users/arno/.gradle/caches/modules-2/files-2.1/org.lwjgl.lwjgl/lwjgl/2.9.2-nightly-20140822/7707204c9ffa5d91662de95f0a224e2f721b22af/lwjgl-2.9.2-nightly-20140822.jar

[15:04:15] [Client thread/TRACE] [FML/]: Skipping known library file /Users/arno/.gradle/caches/modules-2/files-2.1/org.lwjgl.lwjgl/lwjgl_util/2.9.2-nightly-20140822/f0e612c840a7639c1f77f68d72a28dae2f0c8490/lwjgl_util-2.9.2-nightly-20140822.jar

[15:04:15] [Client thread/TRACE] [FML/]: Skipping known library file /Users/arno/.gradle/caches/modules-2/files-2.1/java3d/vecmath/1.5.2/79846ba34cbd89e2422d74d53752f993dcc2ccaf/vecmath-1.5.2.jar

[15:04:15] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /Users/arno/.gradle/caches/modules-2/files-2.1/org.fusesource.jansi/jansi/1.11/655c643309c2f45a56a747fda70e3fadf57e9f11/jansi-1.11.jar, examining for mod candidates

[15:04:15] [Client thread/TRACE] [FML/]: Skipping known library file /Users/arno/.gradle/caches/modules-2/files-2.1/org.scala-lang/scala-actors/2.11.0/8ccfb6541de179bb1c4d45cf414acee069b7f78b/scala-actors-2.11.0.jar

[15:04:15] [Client thread/TRACE] [FML/]: Skipping known library file /Users/arno/.gradle/caches/modules-2/files-2.1/net.java.jinput/jinput-platform/2.0.5/7ff832a6eb9ab6a767f1ade2b548092d0fa64795/jinput-platform-2.0.5-natives-linux.jar

[15:04:15] [Client thread/TRACE] [FML/]: Skipping known library file /Users/arno/.gradle/caches/modules-2/files-2.1/net.java.jinput/jinput-platform/2.0.5/385ee093e01f587f30ee1c8a2ee7d408fd732e16/jinput-platform-2.0.5-natives-windows.jar

[15:04:15] [Client thread/TRACE] [FML/]: Skipping known library file /Users/arno/.gradle/caches/modules-2/files-2.1/net.java.jinput/jinput-platform/2.0.5/53f9c919f34d2ca9de8c51fc4e1e8282029a9232/jinput-platform-2.0.5-natives-osx.jar

[15:04:15] [Client thread/TRACE] [FML/]: Skipping known library file /Users/arno/.gradle/caches/modules-2/files-2.1/org.lwjgl.lwjgl/lwjgl-platform/2.9.2-nightly-20140822/78b2a55ce4dc29c6b3ec4df8ca165eba05f9b341/lwjgl-platform-2.9.2-nightly-20140822-natives-windows.jar

[15:04:15] [Client thread/TRACE] [FML/]: Skipping known library file /Users/arno/.gradle/caches/modules-2/files-2.1/org.lwjgl.lwjgl/lwjgl-platform/2.9.2-nightly-20140822/d898a33b5d0a6ef3fed3a4ead506566dce6720a5/lwjgl-platform-2.9.2-nightly-20140822-natives-linux.jar

[15:04:15] [Client thread/TRACE] [FML/]: Skipping known library file /Users/arno/.gradle/caches/modules-2/files-2.1/org.lwjgl.lwjgl/lwjgl-platform/2.9.2-nightly-20140822/79f5ce2fea02e77fe47a3c745219167a542121d7/lwjgl-platform-2.9.2-nightly-20140822-natives-osx.jar

[15:04:15] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /Users/arno/.gradle/caches/minecraft/deobfedDeps/compileDummy.jar, examining for mod candidates

[15:04:15] [Client thread/DEBUG] [FML/]: Found a minecraft related file at /Users/arno/.gradle/caches/minecraft/deobfedDeps/providedDummy.jar, examining for mod candidates

[15:04:15] [Client thread/DEBUG] [FML/]: Found a minecraft related directory at /Users/arno/.gradle/caches/minecraft/net/minecraftforge/forge/1.10.2-12.18.1.2011/start, examining for mod candidates

[15:04:15] [Client thread/DEBUG] [FML/]: Minecraft jar mods loaded successfully

[15:04:15] [Client thread/INFO] [FML/]: Found 0 mods from the command line. Injecting into mod discoverer

[15:04:15] [Client thread/INFO] [FML/]: Searching /Users/arno/Documents/ProgrammingStuff/forge/forge-1.10.2-12.18.1.2014/run/mods for mods

[15:04:15] [Client thread/DEBUG] [FML/]: Examining directory bin for potential mods

[15:04:15] [Client thread/DEBUG] [FML/]: Found an mcmod.info file in directory bin

[15:04:15] [Client thread/TRACE] [FML/]: Recursing into package assets

[15:04:15] [Client thread/TRACE] [FML/]: Recursing into package assets/buildhelper

[15:04:15] [Client thread/TRACE] [FML/]: Recursing into package assets/buildhelper/lang

[15:04:15] [Client thread/TRACE] [FML/]: Recursing into package assets/buildhelper/models

[15:04:15] [Client thread/TRACE] [FML/]: Recursing into package assets/buildhelper/models/item

[15:04:15] [Client thread/TRACE] [FML/]: Recursing into package assets/buildhelper/textures

[15:04:15] [Client thread/TRACE] [FML/]: Recursing into package assets/buildhelper/textures/items

[15:04:15] [Client thread/TRACE] [FML/]: Recursing into package torojima

[15:04:15] [Client thread/TRACE] [FML/]: Recursing into package torojima/buildhelper

[15:04:15] [Client thread/DEBUG] [FML/]: Identified a mod of type Lnet/minecraftforge/fml/common/Mod; (torojima.buildhelper.BuildHelperMod) - loading

[15:04:15] [Client thread/TRACE] [buildhelper/]: Parsed dependency info : [] [] []

[15:04:15] [Client thread/TRACE] [FML/]: Recursing into package torojima/buildhelper/client

[15:04:15] [Client thread/TRACE] [FML/]: Recursing into package torojima/buildhelper/common

[15:04:15] [Client thread/TRACE] [FML/]: Recursing into package torojima/buildhelper/common/item

[15:04:15] [Client thread/TRACE] [FML/]: Recursing into package torojima/buildhelper/common/itemMeshDefinitions

[15:04:15] [Client thread/TRACE] [FML/]: Recursing into package torojima/buildhelper/common/proxy

[15:04:15] [Client thread/DEBUG] [FML/]: Examining file forgeSrc-1.10.2-12.18.1.2011.jar for potential mods

[15:04:15] [Client thread/DEBUG] [FML/]: The mod container forgeSrc-1.10.2-12.18.1.2011.jar appears to be missing an mcmod.info file

[15:04:16] [Client thread/DEBUG] [FML/]: Examining file jsr305-3.0.1.jar for potential mods

[15:04:16] [Client thread/DEBUG] [FML/]: The mod container jsr305-3.0.1.jar appears to be missing an mcmod.info file

[15:04:16] [Client thread/DEBUG] [FML/]: Examining file asm-debug-all-5.0.3.jar for potential mods

[15:04:16] [Client thread/DEBUG] [FML/]: The mod container asm-debug-all-5.0.3.jar appears to be missing an mcmod.info file

[15:04:16] [Client thread/DEBUG] [FML/]: Examining file jansi-1.11.jar for potential mods

[15:04:16] [Client thread/DEBUG] [FML/]: The mod container jansi-1.11.jar appears to be missing an mcmod.info file

[15:04:16] [Client thread/DEBUG] [FML/]: Examining file compileDummy.jar for potential mods

[15:04:16] [Client thread/DEBUG] [FML/]: The mod container compileDummy.jar appears to be missing an mcmod.info file

[15:04:16] [Client thread/DEBUG] [FML/]: Examining file providedDummy.jar for potential mods

[15:04:16] [Client thread/DEBUG] [FML/]: The mod container providedDummy.jar appears to be missing an mcmod.info file

[15:04:16] [Client thread/DEBUG] [FML/]: Examining directory start for potential mods

[15:04:16] [Client thread/DEBUG] [FML/]: No mcmod.info file found in directory start

[15:04:16] [Client thread/TRACE] [FML/]: Recursing into package net

[15:04:16] [Client thread/TRACE] [FML/]: Recursing into package net/minecraftforge

[15:04:16] [Client thread/TRACE] [FML/]: Recursing into package net/minecraftforge/gradle

[15:04:16] [Client thread/TRACE] [FML/]: Recursing into package net/minecraftforge/gradle/tweakers

[15:04:16] [Client thread/INFO] [FML/]: Forge Mod Loader has identified 4 mods to load

[15:04:16] [Client thread/TRACE] [FML/]: Received a system property request ''

[15:04:16] [Client thread/TRACE] [FML/]: System property request managing the state of 0 mods

[15:04:16] [Client thread/DEBUG] [FML/]: After merging, found state information for 0 mods

[15:04:16] [Client thread/DEBUG] [buildhelper/]: Enabling mod buildhelper

[15:04:16] [Client thread/TRACE] [FML/]: Verifying mod requirements are satisfied

[15:04:16] [Client thread/TRACE] [FML/]: All mod requirements are satisfied

[15:04:16] [Client thread/TRACE] [FML/]: Sorting mods into an ordered list

[15:04:16] [Client thread/TRACE] [FML/]: Mod sorting completed successfully

[15:04:16] [Client thread/DEBUG] [FML/]: Mod sorting data

[15:04:16] [Client thread/DEBUG] [FML/]: buildhelper(Torojima's Build Helper:0.3.2): bin ()

[15:04:16] [Client thread/TRACE] [mcp/mcp]: Sending event FMLConstructionEvent to mod mcp

[15:04:16] [Client thread/TRACE] [mcp/mcp]: Sent event FMLConstructionEvent to mod mcp

[15:04:16] [Client thread/DEBUG] [FML/]: Bar Step: Construction - Minecraft Coder Pack took 0.002s

[15:04:16] [Client thread/TRACE] [FML/FML]: Sending event FMLConstructionEvent to mod FML

[15:04:16] [Client thread/TRACE] [FML/FML]: Mod FML is using network checker : Invoking method checkModLists

[15:04:16] [Client thread/TRACE] [FML/FML]: Testing mod FML to verify it accepts its own version in a remote connection

[15:04:16] [Client thread/TRACE] [FML/FML]: The mod FML accepts its own version (8.0.99.99)

[15:04:16] [Client thread/INFO] [FML/FML]: Attempting connection with missing mods [mcp, FML, Forge, buildhelper] at CLIENT

[15:04:16] [Client thread/INFO] [FML/FML]: Attempting connection with missing mods [mcp, FML, Forge, buildhelper] at SERVER

[15:04:17] [Client thread/TRACE] [FML/FML]: Sent event FMLConstructionEvent to mod FML

[15:04:17] [Client thread/DEBUG] [FML/]: Bar Step: Construction - Forge Mod Loader took 0.316s

[15:04:17] [Client thread/TRACE] [Forge/Forge]: Sending event FMLConstructionEvent to mod Forge

[15:04:17] [Client thread/DEBUG] [Forge/Forge]: Preloading CrashReport Classes

[15:04:17] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/client/Minecraft$10

[15:04:17] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/client/Minecraft$11

[15:04:17] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/client/Minecraft$12

[15:04:17] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/client/Minecraft$13

[15:04:17] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/client/Minecraft$14

[15:04:17] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/client/Minecraft$15

[15:04:17] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/client/Minecraft$3

[15:04:17] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/client/Minecraft$4

[15:04:17] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/client/Minecraft$5

[15:04:17] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/client/Minecraft$6

[15:04:17] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/client/Minecraft$7

[15:04:17] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/client/Minecraft$8

[15:04:17] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/client/Minecraft$9

[15:04:17] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/client/multiplayer/WorldClient$1

[15:04:17] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/client/multiplayer/WorldClient$2

[15:04:17] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/client/multiplayer/WorldClient$3

[15:04:17] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/client/multiplayer/WorldClient$4

[15:04:17] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/client/particle/ParticleManager$1

[15:04:17] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/client/particle/ParticleManager$2

[15:04:17] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/client/particle/ParticleManager$3

[15:04:17] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/client/particle/ParticleManager$4

[15:04:17] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/client/renderer/EntityRenderer$2

[15:04:17] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/client/renderer/EntityRenderer$3

[15:04:17] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/client/renderer/EntityRenderer$4

[15:04:17] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/client/renderer/RenderGlobal$1

[15:04:17] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/client/renderer/RenderItem$1

[15:04:17] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/client/renderer/RenderItem$2

[15:04:17] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/client/renderer/RenderItem$3

[15:04:17] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/client/renderer/RenderItem$4

[15:04:17] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/client/renderer/texture/TextureAtlasSprite$1

[15:04:17] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/client/renderer/texture/TextureManager$1

[15:04:17] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/client/renderer/texture/TextureMap$1

[15:04:17] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/client/renderer/texture/TextureMap$2

[15:04:17] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/client/renderer/texture/TextureMap$3

[15:04:17] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/crash/CrashReport$1

[15:04:17] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/crash/CrashReport$2

[15:04:17] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/crash/CrashReport$3

[15:04:17] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/crash/CrashReport$4

[15:04:17] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/crash/CrashReport$5

[15:04:17] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/crash/CrashReport$6

[15:04:17] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/crash/CrashReport$7

[15:04:17] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/crash/CrashReportCategory$1

[15:04:17] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/crash/CrashReportCategory$2

[15:04:17] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/crash/CrashReportCategory$3

[15:04:17] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/crash/CrashReportCategory$4

[15:04:17] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/crash/CrashReportCategory$5

[15:04:17] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/entity/Entity$1

[15:04:17] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/entity/Entity$2

[15:04:17] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/entity/Entity$3

[15:04:17] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/entity/Entity$4

[15:04:17] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/entity/EntityTracker$1

[15:04:17] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/entity/player/InventoryPlayer$1

[15:04:17] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/nbt/NBTTagCompound$1

[15:04:17] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/nbt/NBTTagCompound$2

[15:04:17] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/network/NetHandlerPlayServer$3

[15:04:17] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/network/NetworkSystem$6

[15:04:17] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/server/MinecraftServer$2

[15:04:17] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/server/MinecraftServer$3

[15:04:17] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/server/dedicated/DedicatedServer$3

[15:04:17] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/server/dedicated/DedicatedServer$4

[15:04:17] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/server/integrated/IntegratedServer$1

[15:04:17] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/server/integrated/IntegratedServer$2

[15:04:17] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/tileentity/CommandBlockBaseLogic$1

[15:04:17] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/tileentity/CommandBlockBaseLogic$2

[15:04:17] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/tileentity/TileEntity$1

[15:04:17] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/tileentity/TileEntity$2

[15:04:17] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/tileentity/TileEntity$3

[15:04:17] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/world/World$1

[15:04:17] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/world/World$2

[15:04:17] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/world/World$3

[15:04:17] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/world/World$4

[15:04:17] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/world/chunk/Chunk$1

[15:04:17] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/world/gen/structure/MapGenStructure$1

[15:04:17] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/world/gen/structure/MapGenStructure$2

[15:04:17] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/world/gen/structure/MapGenStructure$3

[15:04:17] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/world/storage/WorldInfo$10

[15:04:17] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/world/storage/WorldInfo$2

[15:04:17] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/world/storage/WorldInfo$3

[15:04:17] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/world/storage/WorldInfo$4

[15:04:17] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/world/storage/WorldInfo$5

[15:04:17] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/world/storage/WorldInfo$6

[15:04:17] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/world/storage/WorldInfo$7

[15:04:17] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/world/storage/WorldInfo$8

[15:04:17] [Client thread/DEBUG] [Forge/Forge]: net/minecraft/world/storage/WorldInfo$9

[15:04:17] [Client thread/DEBUG] [Forge/Forge]: net/minecraftforge/fml/client/SplashProgress$1

[15:04:17] [Client thread/DEBUG] [Forge/Forge]: net/minecraftforge/fml/common/FMLCommonHandler$1

[15:04:17] [Client thread/DEBUG] [Forge/Forge]: net/minecraftforge/fml/common/ICrashCallable

[15:04:17] [Client thread/DEBUG] [Forge/Forge]: net/minecraftforge/fml/common/Loader$3

[15:04:17] [Client thread/TRACE] [FML/Forge]: Mod Forge is using network checker : No network checking performed

[15:04:17] [Client thread/TRACE] [FML/Forge]: Testing mod Forge to verify it accepts its own version in a remote connection

[15:04:17] [Client thread/TRACE] [FML/Forge]: The mod Forge accepts its own version (12.18.1.2011)

[15:04:17] [Client thread/TRACE] [Forge/Forge]: Sent event FMLConstructionEvent to mod Forge

[15:04:17] [Client thread/DEBUG] [FML/]: Bar Step: Construction - Minecraft Forge took 0.057s

[15:04:17] [Client thread/TRACE] [buildhelper/buildhelper]: Sending event FMLConstructionEvent to mod buildhelper

[15:04:17] [Client thread/TRACE] [FML/buildhelper]: Mod buildhelper is using network checker : Accepting version 0.3.2

[15:04:17] [Client thread/TRACE] [FML/buildhelper]: Testing mod buildhelper to verify it accepts its own version in a remote connection

[15:04:17] [Client thread/TRACE] [FML/buildhelper]: The mod buildhelper accepts its own version (0.3.2)

[15:04:17] [Client thread/DEBUG] [FML/buildhelper]: Attempting to inject @SidedProxy classes into buildhelper

[15:04:17] [Client thread/TRACE] [buildhelper/buildhelper]: Sent event FMLConstructionEvent to mod buildhelper

[15:04:17] [Client thread/DEBUG] [FML/]: Bar Step: Construction - Torojima's Build Helper took 0.021s

[15:04:17] [Client thread/DEBUG] [FML/]: Bar Finished: Construction took 0.394s

[15:04:17] [Client thread/DEBUG] [FML/]: Mod signature data

[15:04:17] [Client thread/DEBUG] [FML/]:  Valid Signatures:

[15:04:17] [Client thread/DEBUG] [FML/]:  Missing Signatures:

[15:04:17] [Client thread/DEBUG] [FML/]: mcp (Minecraft Coder Pack 9.19) minecraft.jar

[15:04:17] [Client thread/DEBUG] [FML/]: FML (Forge Mod Loader 8.0.99.99) forgeSrc-1.10.2-12.18.1.2011.jar

[15:04:17] [Client thread/DEBUG] [FML/]: Forge (Minecraft Forge 12.18.1.2011) forgeSrc-1.10.2-12.18.1.2011.jar

[15:04:17] [Client thread/DEBUG] [FML/]: buildhelper (Torojima's Build Helper 0.3.2) bin

[15:04:17] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - Default took 0.005s

[15:04:17] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - FMLFileResourcePack:Forge Mod Loader took 0.015s

[15:04:17] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - FMLFileResourcePack:Minecraft Forge took 0.012s

[15:04:17] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - FMLFileResourcePack:Torojima's Build Helper took 0.001s

[15:04:17] [Client thread/DEBUG] [FML/]: Bar Finished: Reloading - LanguageManager took 0.030s

[15:04:17] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - Reloading listeners took 0.031s

[15:04:17] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resources took 0.064s

[15:04:17] [Client thread/DEBUG] [Forge Mod Loader/]: Mod Forge Mod Loader is missing a pack.mcmeta file, substituting a dummy one

[15:04:17] [Client thread/DEBUG] [Minecraft Forge/]: Mod Minecraft Forge is missing a pack.mcmeta file, substituting a dummy one

[15:04:17] [Client thread/DEBUG] [Torojima's Build Helper/]: Mod Torojima's Build Helper is missing a pack.mcmeta file, substituting a dummy one

[15:04:17] [Client thread/INFO] [FML/]: Processing ObjectHolder annotations

[15:04:17] [Client thread/INFO] [FML/]: Found 423 ObjectHolder annotations

[15:04:17] [Client thread/INFO] [FML/]: Identifying ItemStackHolder annotations

[15:04:17] [Client thread/INFO] [FML/]: Found 0 ItemStackHolder annotations

[15:04:17] [Client thread/TRACE] [mcp/mcp]: Sending event FMLPreInitializationEvent to mod mcp

[15:04:17] [Client thread/TRACE] [mcp/mcp]: Sent event FMLPreInitializationEvent to mod mcp

[15:04:17] [Client thread/DEBUG] [FML/]: Bar Step: PreInitialization - Minecraft Coder Pack took 0.001s

[15:04:17] [Client thread/TRACE] [FML/FML]: Sending event FMLPreInitializationEvent to mod FML

[15:04:17] [Client thread/TRACE] [FML/FML]: Sent event FMLPreInitializationEvent to mod FML

[15:04:17] [Client thread/DEBUG] [FML/]: Bar Step: PreInitialization - Forge Mod Loader took 0.001s

[15:04:17] [Client thread/TRACE] [Forge/Forge]: Sending event FMLPreInitializationEvent to mod Forge

[15:04:17] [Client thread/INFO] [FML/Forge]: Configured a dormant chunk cache size of 0

[15:04:17] [Client thread/TRACE] [Forge/Forge]: Sent event FMLPreInitializationEvent to mod Forge

[15:04:17] [Client thread/DEBUG] [FML/]: Bar Step: PreInitialization - Minecraft Forge took 0.049s

[15:04:17] [Forge Version Check/INFO] [ForgeVersionCheck/Forge]: [buildhelper] Starting version check at https://github.com/ArnoSaxena/buildhelper/blob/master/bin/update.json

[15:04:17] [Client thread/TRACE] [buildhelper/buildhelper]: Sending event FMLPreInitializationEvent to mod buildhelper

[15:04:17] [Client thread/INFO] [buildhelper/buildhelper]: registering models

[15:04:17] [Client thread/TRACE] [buildhelper/buildhelper]: Sent event FMLPreInitializationEvent to mod buildhelper

[15:04:17] [Client thread/DEBUG] [FML/]: Bar Step: PreInitialization - Torojima's Build Helper took 0.071s

[15:04:17] [Client thread/DEBUG] [FML/]: Bar Finished: PreInitialization took 0.121s

[15:04:17] [Client thread/INFO] [FML/]: Applying holder lookups

[15:04:17] [Client thread/INFO] [FML/]: Holder lookups applied

[15:04:17] [Client thread/INFO] [FML/]: Injecting itemstacks

[15:04:17] [Client thread/INFO] [FML/]: Itemstack injection complete

[15:04:17] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - TextureManager took 0.000s

[15:04:18] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - SoundHandler took 1.294s

[15:04:18] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - FontRenderer took 0.005s

[15:04:18] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - FontRenderer took 0.002s

[15:04:18] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - GrassColorReloadListener took 0.009s

[15:04:18] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - FoliageColorReloadListener took 0.007s

[15:04:18] [Client thread/DEBUG] [FML/]: Bar Step: Rendering Setup - GL Setup took 0.001s

[15:04:18] [Client thread/DEBUG] [FML/]: Bar Step: Rendering Setup - Loading Texture Map took 0.007s

[15:04:18] [Forge Version Check/DEBUG] [ForgeVersionCheck/Forge]: [buildhelper] Received version check data:

 

 

 

 

<!DOCTYPE html>

<html lang="en" class="">

  <head prefix="og: http://ogp.me/ns# fb: http://ogp.me/ns/fb# object: http://ogp.me/ns/object# article: http://ogp.me/ns/article# profile: http://ogp.me/ns/profile#">

    <meta charset='utf-8'>

 

    <link crossorigin="anonymous" href="https://assets-cdn.github.com/assets/frameworks-5fc7c6e8cf4372103a3e557a9fd70de7ffb44c643a350ece5b400060b64141e7.css" media="all" rel="stylesheet" />

    <link crossorigin="anonymous" href="https://assets-cdn.github.com/assets/github-1abe330670f3facdeca99573d9b5f122b40ca1e23dcc670976079d3348f90db2.css" media="all" rel="stylesheet" />

   

   

    <link crossorigin="anonymous" href="https://assets-cdn.github.com/assets/site-f4b3d32cffc56de06873b8a6d88ae6139de92dc0fc31574232803d68729f6fac.css" media="all" rel="stylesheet" />

   

 

    <link as="script" href="https://assets-cdn.github.com/assets/frameworks-404cdd1add1f710db016a02e5e31fff8a9089d14ff0c227df862b780886db7d5.js" rel="preload" />

   

    <link as="script" href="https://assets-cdn.github.com/assets/github-17eda25854ec7a75229f05d174ed8b1fdf58ed0ae018f73d4f56d3e3ceda2e87.js" rel="preload" />

 

    <meta http-equiv="X-UA-Compatible" content="IE=edge">

    <meta http-equiv="Content-Language" content="en">

    <meta name="viewport" content="width=device-width">

   

   

    <title>buildhelper/update.json at master · ArnoSaxena/buildhelper · GitHub</title>

    <link rel="search" type="application/opensearchdescription+xml" href="/opensearch.xml" title="GitHub">

    <link rel="fluid-icon" href="https://github.com/fluidicon.png" title="GitHub">

    <link rel="apple-touch-icon" href="/apple-touch-icon.png">

    <link rel="apple-touch-icon" sizes="57x57" href="/apple-touch-icon-57x57.png">

    <link rel="apple-touch-icon" sizes="60x60" href="/apple-touch-icon-60x60.png">

    <link rel="apple-touch-icon" sizes="72x72" href="/apple-touch-icon-72x72.png">

    <link rel="apple-touch-icon" sizes="76x76" href="/apple-touch-icon-76x76.png">

    <link rel="apple-touch-icon" sizes="114x114" href="/apple-touch-icon-114x114.png">

    <link rel="apple-touch-icon" sizes="120x120" href="/apple-touch-icon-120x120.png">

    <link rel="apple-touch-icon" sizes="144x144" href="/apple-touch-icon-144x144.png">

    <link rel="apple-touch-icon" sizes="152x152" href="/apple-touch-icon-152x152.png">

    <link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon-180x180.png">

    <meta property="fb:app_id" content="1401488693436528">

 

      <meta content="https://avatars1.githubusercontent.com/u/861050?v=3&s=400" name="twitter:image:src" /><meta content="@github" name="twitter:site" /><meta content="summary" name="twitter:card" /><meta content="ArnoSaxena/buildhelper" name="twitter:title" /><meta content="buildhelper - helper wands for creating and building worlds" name="twitter:description" />

      <meta content="https://avatars1.githubusercontent.com/u/861050?v=3&s=400" property="og:image" /><meta content="GitHub" property="og:site_name" /><meta content="object" property="og:type" /><meta content="ArnoSaxena/buildhelper" property="og:title" /><meta content="https://github.com/ArnoSaxena/buildhelper" property="og:url" /><meta content="buildhelper - helper wands for creating and building worlds" property="og:description" />

      <meta name="browser-stats-url" content="https://api.github.com/_private/browser/stats">

    <meta name="browser-errors-url" content="https://api.github.com/_private/browser/errors">

    <link rel="assets" href="https://assets-cdn.github.com/">

   

    <meta name="pjax-timeout" content="1000">

   

 

    <meta name="msapplication-TileImage" content="/windows-tile.png">

    <meta name="msapplication-TileColor" content="#ffffff">

    <meta name="selected-link" value="repo_source" data-pjax-transient>

 

    <meta name="google-site-verification" content="KT5gs8h0wvaagLKAVWq8bbeNwnZZK1r1XQysX3xurLU">

<meta name="google-site-verification" content="ZzhVyEFwb7w3e0-uOTltm8Jsck2F5StVihD0exw2fsA">

    <meta name="google-analytics" content="UA-3769691-2">

 

<meta content="collector.githubapp.com" name="octolytics-host" /><meta content="github" name="octolytics-app-id" /><meta content="51F42853:6CA8:3E7C311:579A02D2" name="octolytics-dimension-request_id" />

<meta content="/<user-name>/<repo-name>/blob/show" data-pjax-transient="true" name="analytics-location" />

 

 

 

  <meta class="js-ga-set" name="dimension1" content="Logged Out">

 

 

 

        <meta name="hostname" content="github.com">

    <meta name="user-login" content="">

 

        <meta name="expected-hostname" content="github.com">

      <meta name="js-proxy-site-detection-payload" content="Njk5OTNjMGUwNzNhMTIwODU2MzY5NjU3NTZiNDIyNDU1OWE4NTVjZTUzN2ViMWU1ZGFhMzc5NDdkNDUzYzVhOXx7InJlbW90ZV9hZGRyZXNzIjoiODEuMjQ0LjQwLjgzIiwicmVxdWVzdF9pZCI6IjUxRjQyODUzOjZDQTg6M0U3QzMxMTo1NzlBMDJEMiIsInRpbWVzdGFtcCI6MTQ2OTcxMTA1OH0=">

 

 

      <link rel="mask-icon" href="https://assets-cdn.github.com/pinned-octocat.svg" color="#4078c0">

      <link rel="icon" type="image/x-icon" href="https://assets-cdn.github.com/favicon.ico">

 

    <meta name="html-safe-nonce" content="2671f874a606d72c7455adf9e93b335d1314c1a6">

    <meta content="1446feeff63b6f52a8ad378bf588c4b8827ccce2" name="form-nonce" />

 

    <meta http-equiv="x-pjax-version" content="619e18ccd7413573be123ebeb6f082f3">

   

 

     

  <meta name="description" content="buildhelper - helper wands for creating and building worlds">

  <meta name="go-import" content="github.com/ArnoSaxena/buildhelper git https://github.com/ArnoSaxena/buildhelper.git">

 

  <meta content="861050" name="octolytics-dimension-user_id" /><meta content="ArnoSaxena" name="octolytics-dimension-user_login" /><meta content="10759964" name="octolytics-dimension-repository_id" /><meta content="ArnoSaxena/buildhelper" name="octolytics-dimension-repository_nwo" /><meta content="true" name="octolytics-dimension-repository_public" /><meta content="false" name="octolytics-dimension-repository_is_fork" /><meta content="10759964" name="octolytics-dimension-repository_network_root_id" /><meta content="ArnoSaxena/buildhelper" name="octolytics-dimension-repository_network_root_nwo" />

  <link href="https://github.com/ArnoSaxena/buildhelper/commits/master.atom" rel="alternate" title="Recent Commits to buildhelper:master" type="application/atom+xml">

 

 

      <link rel="canonical" href="https://github.com/ArnoSaxena/buildhelper/blob/master/bin/update.json" data-pjax-transient>

  </head>

 

 

  <body class="logged-out  env-production  vis-public page-blob">

    <div id="js-pjax-loader-bar" class="pjax-loader-bar"></div>

    <a href="#start-of-content" tabindex="1" class="accessibility-aid js-skip-to-content">Skip to content</a>

 

   

   

   

 

 

 

          <header class="site-header js-details-container" role="banner">

  <div class="container-responsive">

    <a class="header-logo-invertocat" href="https://github.com/" aria-label="Homepage" data-ga-click="(Logged out) Header, go to homepage, icon:logo-wordmark">

      <svg aria-hidden="true" class="octicon octicon-mark-github" height="32" version="1.1" viewBox="0 0 16 16" width="32"><path d="M8 0C3.58 0 0 3.58 0 8c0 3.54 2.29 6.53 5.47 7.59.4.07.55-.17.55-.38 0-.19-.01-.82-.01-1.49-2.01.37-2.53-.49-2.69-.94-.09-.23-.48-.94-.82-1.13-.28-.15-.68-.52-.01-.53.63-.01 1.08.58 1.23.82.72 1.21 1.87.87 2.33.66.07-.52.28-.87.51-1.07-1.78-.2-3.64-.89-3.64-3.95 0-.87.31-1.59.82-2.15-.08-.2-.36-1.02.08-2.12 0 0 .67-.21 2.2.82.64-.18 1.32-.27 2-.27.68 0 1.36.09 2 .27 1.53-1.04 2.2-.82 2.2-.82.44 1.1.16 1.92.08 2.12.51.56.82 1.27.82 2.15 0 3.07-1.87 3.75-3.65 3.95.29.25.54.73.54 1.48 0 1.07-.01 1.93-.01 2.2 0 .21.15.46.55.38A8.013 8.013 0 0 0 16 8c0-4.42-3.58-8-8-8z"></path></svg>

    </a>

 

    <button class="btn-link right site-header-toggle js-details-target" type="button" aria-label="Toggle navigation">

      <svg aria-hidden="true" class="octicon octicon-three-bars" height="24" version="1.1" viewBox="0 0 12 16" width="18"><path d="M11.41 9H.59C0 9 0 8.59 0 8c0-.59 0-1 .59-1H11.4c.59 0 .59.41.59 1 0 .59 0 1-.59 1h.01zm0-4H.59C0 5 0 4.59 0 4c0-.59 0-1 .59-1H11.4c.59 0 .59.41.59 1 0 .59 0 1-.59 1h.01zM.59 11H11.4c.59 0 .59.41.59 1 0 .59 0 1-.59 1H.59C0 13 0 12.59 0 12c0-.59 0-1 .59-1z"></path></svg>

    </button>

 

    <div class="site-header-menu">

      <nav class="site-header-nav site-header-nav-main">

        <a href="/personal" class="js-selected-navigation-item nav-item nav-item-personal" data-ga-click="Header, click, Nav menu - item:personal" data-selected-links="/personal /personal">

          Personal

</a>        <a href="/open-source" class="js-selected-navigation-item nav-item nav-item-opensource" data-ga-click="Header, click, Nav menu - item:opensource" data-selected-links="/open-source /open-source">

          Open source

</a>        <a href="/business" class="js-selected-navigation-item nav-item nav-item-business" data-ga-click="Header, click, Nav menu - item:business" data-selected-links="/business /business/features /business/customers /business">

          Business

</a>        <a href="/explore" class="js-selected-navigation-item nav-item nav-item-explore" data-ga-click="Header, click, Nav menu - item:explore" data-selected-links="/explore /trending /trending/developers /integrations /integrations/feature/code /integrations/feature/collaborate /integrations/feature/ship /explore">

          Explore

</a>      </nav>

 

      <div class="site-header-actions">

            <a class="btn btn-primary site-header-actions-btn" href="/join?source=header-repo" data-ga-click="(Logged out) Header, clicked Sign up, text:sign-up">Sign up</a>

          <a class="btn site-header-actions-btn mr-2" href="/login?return_to=%2FArnoSaxena%2Fbuildhelper%2Fblob%2Fmaster%2Fbin%2Fupdate.json" data-ga-click="(Logged out) Header, clicked Sign in, text:sign-in">Sign in</a>

      </div>

 

        <nav class="site-header-nav site-header-nav-secondary">

          <a class="nav-item" href="/pricing">Pricing</a>

          <a class="nav-item" href="/blog">Blog</a>

          <a class="nav-item" href="https://help.github.com">Support</a>'>https://help.github.com">Support</a>

          <a class="nav-item header-search-link" href="https://github.com/search">Search GitHub</a>

              <div class="header-search scoped-search site-scoped-search js-site-search" role="search">

  <!-- </textarea> --><!-- '"` --><form accept-charset="UTF-8" action="/ArnoSaxena/buildhelper/search" class="js-site-search-form" data-scoped-search-url="/ArnoSaxena/buildhelper/search" data-unscoped-search-url="/search" method="get"><div style="margin:0;padding:0;display:inline"><input name="utf8" type="hidden" value="&#x2713;" /></div>

    <label class="form-control header-search-wrapper js-chromeless-input-container">

      <div class="header-search-scope">This repository</div>

      <input type="text"

        class="form-control header-search-input js-site-search-focus js-site-search-field is-clearable"

        data-hotkey="s"

        name="q"

        placeholder="Search"

        aria-label="Search this repository"

        data-unscoped-placeholder="Search GitHub"

        data-scoped-placeholder="Search"

        autocapitalize="off">

    </label>

</form></div>

 

        </nav>

    </div>

  </div>

</header>

 

 

 

    <div id="start-of-content" class="accessibility-aid"></div>

 

      <div id="js-flash-container">

</div>

 

 

    <div role="main">

        <div itemscope itemtype="http://schema.org/SoftwareSourceCode">

    <div id="js-repo-pjax-container" data-pjax-container>

     

<div class="pagehead repohead instapaper_ignore readability-menu experiment-repo-nav">

  <div class="container repohead-details-container">

 

   

 

<ul class="pagehead-actions">

 

  <li>

      <a href="/login?return_to=%2FArnoSaxena%2Fbuildhelper"

    class="btn btn-sm btn-with-count tooltipped tooltipped-n"

    aria-label="You must be signed in to watch a repository" rel="nofollow">

    <svg aria-hidden="true" class="octicon octicon-eye" height="16" version="1.1" viewBox="0 0 16 16" width="16"><path d="M8.06 2C3 2 0 8 0 8s3 6 8.06 6C13 14 16 8 16 8s-3-6-7.94-6zM8 12c-2.2 0-4-1.78-4-4 0-2.2 1.8-4 4-4 2.22 0 4 1.8 4 4 0 2.22-1.78 4-4 4zm2-4c0 1.11-.89 2-2 2-1.11 0-2-.89-2-2 0-1.11.89-2 2-2 1.11 0 2 .89 2 2z"></path></svg>

    Watch

  </a>

  <a class="social-count" href="/ArnoSaxena/buildhelper/watchers">

    1

  </a>

 

  </li>

 

  <li>

      <a href="/login?return_to=%2FArnoSaxena%2Fbuildhelper"

    class="btn btn-sm btn-with-count tooltipped tooltipped-n"

    aria-label="You must be signed in to star a repository" rel="nofollow">

    <svg aria-hidden="true" class="octicon octicon-star" height="16" version="1.1" viewBox="0 0 14 16" width="14"><path d="M14 6l-4.9-.64L7 1 4.9 5.36 0 6l3.6 3.26L2.67 14 7 11.67 11.33 14l-.93-4.74z"></path></svg>

    Star

  </a>

 

    <a class="social-count js-social-count" href="/ArnoSaxena/buildhelper/stargazers">

      1

    </a>

 

  </li>

 

  <li>

      <a href="/login?return_to=%2FArnoSaxena%2Fbuildhelper"

        class="btn btn-sm btn-with-count tooltipped tooltipped-n"

        aria-label="You must be signed in to fork a repository" rel="nofollow">

        <svg aria-hidden="true" class="octicon octicon-repo-forked" height="16" version="1.1" viewBox="0 0 10 16" width="10"><path d="M8 1a1.993 1.993 0 0 0-1 3.72V6L5 8 3 6V4.72A1.993 1.993 0 0 0 2 1a1.993 1.993 0 0 0-1 3.72V6.5l3 3v1.78A1.993 1.993 0 0 0 5 15a1.993 1.993 0 0 0 1-3.72V9.5l3-3V4.72A1.993 1.993 0 0 0 8 1zM2 4.2C1.34 4.2.8 3.65.8 3c0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zm3 10c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zm3-10c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2z"></path></svg>

        Fork

      </a>

 

    <a href="/ArnoSaxena/buildhelper/network" class="social-count">

      0

    </a>

  </li>

</ul>

 

    <h1 class="public ">

  <svg aria-hidden="true" class="octicon octicon-repo" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path d="M4 9H3V8h1v1zm0-3H3v1h1V6zm0-2H3v1h1V4zm0-2H3v1h1V2zm8-1v12c0 .55-.45 1-1 1H6v2l-1.5-1.5L3 16v-2H1c-.55 0-1-.45-1-1V1c0-.55.45-1 1-1h10c.55 0 1 .45 1 1zm-1 10H1v2h2v-1h3v1h5v-2zm0-10H2v9h9V1z"></path></svg>

  <span class="author" itemprop="author"><a href="/ArnoSaxena" class="url fn" rel="author">ArnoSaxena</a></span><!--

--><span class="path-divider">/</span><!--

--><strong itemprop="name"><a href="/ArnoSaxena/buildhelper" data-pjax="#js-repo-pjax-container">buildhelper</a></strong>

 

</h1>

 

  </div>

  <div class="container">

   

<nav class="reponav js-repo-nav js-sidenav-container-pjax"

    itemscope

    itemtype="http://schema.org/BreadcrumbList"

    role="navigation"

    data-pjax="#js-repo-pjax-container">

 

  <span itemscope itemtype="http://schema.org/ListItem" itemprop="itemListElement">

    <a href="/ArnoSaxena/buildhelper" aria-selected="true" class="js-selected-navigation-item selected reponav-item" data-hotkey="g c" data-selected-links="repo_source repo_downloads repo_commits repo_releases repo_tags repo_branches /ArnoSaxena/buildhelper" itemprop="url">

      <svg aria-hidden="true" class="octicon octicon-code" height="16" version="1.1" viewBox="0 0 14 16" width="14"><path d="M9.5 3L8 4.5 11.5 8 8 11.5 9.5 13 14 8 9.5 3zm-5 0L0 8l4.5 5L6 11.5 2.5 8 6 4.5 4.5 3z"></path></svg>

      <span itemprop="name">Code</span>

      <meta itemprop="position" content="1">

</a>  </span>

 

    <span itemscope itemtype="http://schema.org/ListItem" itemprop="itemListElement">

      <a href="/ArnoSaxena/buildhelper/issues" class="js-selected-navigation-item reponav-item" data-hotkey="g i" data-selected-links="repo_issues repo_labels repo_milestones /ArnoSaxena/buildhelper/issues" itemprop="url">

        <svg aria-hidden="true" class="octicon octicon-issue-opened" height="16" version="1.1" viewBox="0 0 14 16" width="14"><path d="M7 2.3c3.14 0 5.7 2.56 5.7 5.7s-2.56 5.7-5.7 5.7A5.71 5.71 0 0 1 1.3 8c0-3.14 2.56-5.7 5.7-5.7zM7 1C3.14 1 0 4.14 0 8s3.14 7 7 7 7-3.14 7-7-3.14-7-7-7zm1 3H6v5h2V4zm0 6H6v2h2v-2z"></path></svg>

        <span itemprop="name">Issues</span>

        <span class="counter">0</span>

        <meta itemprop="position" content="2">

</a>    </span>

 

  <span itemscope itemtype="http://schema.org/ListItem" itemprop="itemListElement">

    <a href="/ArnoSaxena/buildhelper/pulls" class="js-selected-navigation-item reponav-item" data-hotkey="g p" data-selected-links="repo_pulls /ArnoSaxena/buildhelper/pulls" itemprop="url">

      <svg aria-hidden="true" class="octicon octicon-git-pull-request" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path d="M11 11.28V5c-.03-.78-.34-1.47-.94-2.06C9.46 2.35 8.78 2.03 8 2H7V0L4 3l3 3V4h1c.27.02.48.11.69.31.21.2.3.42.31.69v6.28A1.993 1.993 0 0 0 10 15a1.993 1.993 0 0 0 1-3.72zm-1 2.92c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2zM4 3c0-1.11-.89-2-2-2a1.993 1.993 0 0 0-1 3.72v6.56A1.993 1.993 0 0 0 2 15a1.993 1.993 0 0 0 1-3.72V4.72c.59-.34 1-.98 1-1.72zm-.8 10c0 .66-.55 1.2-1.2 1.2-.65 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2zM2 4.2C1.34 4.2.8 3.65.8 3c0-.65.55-1.2 1.2-1.2.65 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2z"></path></svg>

      <span itemprop="name">Pull requests</span>

      <span class="counter">0</span>

      <meta itemprop="position" content="3">

</a>  </span>

 

 

 

  <a href="/ArnoSaxena/buildhelper/pulse" class="js-selected-navigation-item reponav-item" data-selected-links="pulse /ArnoSaxena/buildhelper/pulse">

    <svg aria-hidden="true" class="octicon octicon-pulse" height="16" version="1.1" viewBox="0 0 14 16" width="14"><path d="M11.5 8L8.8 5.4 6.6 8.5 5.5 1.6 2.38 8H0v2h3.6l.9-1.8.9 5.4L9 8.5l1.6 1.5H14V8z"></path></svg>

    Pulse

</a>

  <a href="/ArnoSaxena/buildhelper/graphs" class="js-selected-navigation-item reponav-item" data-selected-links="repo_graphs repo_contributors /ArnoSaxena/buildhelper/graphs">

    <svg aria-hidden="true" class="octicon octicon-graph" height="16" version="1.1" viewBox="0 0 16 16" width="16"><path d="M16 14v1H0V0h1v14h15zM5 13H3V8h2v5zm4 0H7V3h2v10zm4 0h-2V6h2v7z"></path></svg>

    Graphs

</a>

 

</nav>

 

  </div>

</div>

 

<div class="container new-discussion-timeline experiment-repo-nav">

  <div class="repository-content">

 

   

 

<a href="/ArnoSaxena/buildhelper/blob/3dbd2ea8830b348dcfbd9ef8789cf35ee86db582/bin/update.json" class="hidden js-permalink-shortcut" data-hotkey="y">Permalink</a>

 

<!-- blob contrib key: blob_contributors:v21:ff5943503254c51d7d62d4c58d666582 -->

 

<div class="file-navigation js-zeroclipboard-container">

 

<div class="select-menu branch-select-menu js-menu-container js-select-menu left">

  <button class="btn btn-sm select-menu-button js-menu-target css-truncate" data-hotkey="w"

    title="master"

    type="button" aria-label="Switch branches or tags" tabindex="0" aria-haspopup="true">

    <i>Branch:</i>

    <span class="js-select-button css-truncate-target">master</span>

  </button>

 

  <div class="select-menu-modal-holder js-menu-content js-navigation-container" data-pjax aria-hidden="true">

 

    <div class="select-menu-modal">

      <div class="select-menu-header">

        <svg aria-label="Close" class="octicon octicon-x js-menu-close" height="16" role="img" version="1.1" viewBox="0 0 12 16" width="12"><path d="M7.48 8l3.75 3.75-1.48 1.48L6 9.48l-3.75 3.75-1.48-1.48L4.52 8 .77 4.25l1.48-1.48L6 6.52l3.75-3.75 1.48 1.48z"></path></svg>

        <span class="select-menu-title">Switch branches/tags</span>

      </div>

 

      <div class="select-menu-filters">

        <div class="select-menu-text-filter">

          <input type="text" aria-label="Filter branches/tags" id="context-commitish-filter-field" class="form-control js-filterable-field js-navigation-enable" placeholder="Filter branches/tags">

        </div>

        <div class="select-menu-tabs">

          <ul>

            <li class="select-menu-tab">

              <a href="#" data-tab-filter="branches" data-filter-placeholder="Filter branches/tags" class="js-select-menu-tab" role="tab">Branches</a>

            </li>

            <li class="select-menu-tab">

              <a href="#" data-tab-filter="tags" data-filter-placeholder="Find a tag…" class="js-select-menu-tab" role="tab">Tags</a>

            </li>

          </ul>

        </div>

      </div>

 

      <div class="select-menu-list select-menu-tab-bucket js-select-menu-tab-bucket" data-tab-filter="branches" role="menu">

 

        <div data-filterable-for="context-commitish-filter-field" data-filterable-type="substring">

 

 

            <a class="select-menu-item js-navigation-item js-navigation-open selected"

              href="/ArnoSaxena/buildhelper/blob/master/bin/update.json"

              data-name="master"

              data-skip-pjax="true"

              rel="nofollow">

              <svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path d="M12 5l-8 8-4-4 1.5-1.5L4 10l6.5-6.5z"></path></svg>

              <span class="select-menu-item-text css-truncate-target js-select-menu-filter-text" title="master">

                master

              </span>

            </a>

        </div>

 

          <div class="select-menu-no-results">Nothing to show</div>

      </div>

 

      <div class="select-menu-list select-menu-tab-bucket js-select-menu-tab-bucket" data-tab-filter="tags">

        <div data-filterable-for="context-commitish-filter-field" data-filterable-type="substring">

 

 

        </div>

 

        <div class="select-menu-no-results">Nothing to show</div>

      </div>

 

    </div>

  </div>

</div>

 

  <div class="btn-group right">

    <a href="/ArnoSaxena/buildhelper/find/master"

          class="js-pjax-capture-input btn btn-sm"

          data-pjax

          data-hotkey="t">

      Find file

    </a>

    <button aria-label="Copy file path to clipboard" class="js-zeroclipboard btn btn-sm zeroclipboard-button tooltipped tooltipped-s" data-copied-hint="Copied!" type="button">Copy path</button>

  </div>

  <div class="breadcrumb js-zeroclipboard-target">

    <span class="repo-root js-repo-root"><span class="js-path-segment"><a href="/ArnoSaxena/buildhelper"><span>buildhelper</span></a></span></span><span class="separator">/</span><span class="js-path-segment"><a href="/ArnoSaxena/buildhelper/tree/master/bin"><span>bin</span></a></span><span class="separator">/</span><strong class="final-path">update.json</strong>

  </div>

</div>

 

<include-fragment class="commit-tease" src="/ArnoSaxena/buildhelper/contributors/master/bin/update.json">

  <div>

    Fetching contributors…

  </div>

 

  <div class="commit-tease-contributors">

    <img alt="" class="loader-loading left" height="16" src="https://assets-cdn.github.com/images/spinners/octocat-spinner-32-EAF2F5.gif" width="16" />

    <span class="loader-error">Cannot retrieve contributors at this time</span>

  </div>

</include-fragment>

<div class="file">

  <div class="file-header">

  <div class="file-actions">

 

    <div class="btn-group">

      <a href="/ArnoSaxena/buildhelper/raw/master/bin/update.json" class="btn btn-sm " id="raw-url">Raw</a>

        <a href="/ArnoSaxena/buildhelper/blame/master/bin/update.json" class="btn btn-sm js-update-url-with-hash">Blame</a>

      <a href="/ArnoSaxena/buildhelper/commits/master/bin/update.json" class="btn btn-sm " rel="nofollow">History</a>

    </div>

 

 

        <button type="button" class="btn-octicon disabled tooltipped tooltipped-nw"

          aria-label="You must be signed in to make or propose changes">

          <svg aria-hidden="true" class="octicon octicon-pencil" height="16" version="1.1" viewBox="0 0 14 16" width="14"><path d="M0 12v3h3l8-8-3-3-8 8zm3 2H1v-2h1v1h1v1zm10.3-9.3L12 6 9 3l1.3-1.3a.996.996 0 0 1 1.41 0l1.59 1.59c.39.39.39 1.02 0 1.41z"></path></svg>

        </button>

        <button type="button" class="btn-octicon btn-octicon-danger disabled tooltipped tooltipped-nw"

          aria-label="You must be signed in to make or propose changes">

          <svg aria-hidden="true" class="octicon octicon-trashcan" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path d="M11 2H9c0-.55-.45-1-1-1H5c-.55 0-1 .45-1 1H2c-.55 0-1 .45-1 1v1c0 .55.45 1 1 1v9c0 .55.45 1 1 1h7c.55 0 1-.45 1-1V5c.55 0 1-.45 1-1V3c0-.55-.45-1-1-1zm-1 12H3V5h1v8h1V5h1v8h1V5h1v8h1V5h1v9zm1-10H2V3h9v1z"></path></svg>

        </button>

  </div>

 

  <div class="file-info">

      10 lines (10 sloc)

      <span class="file-info-divider"></span>

    231 Bytes

  </div>

</div>

 

 

 

  <div itemprop="text" class="blob-wrapper data type-json">

      <table class="highlight tab-size js-file-line-container" data-tab-size="8">

      <tr>

        <td id="L1" class="blob-num js-line-number" data-line-number="1"></td>

        <td id="LC1" class="blob-code blob-code-inner js-file-line">{</td>

      </tr>

      <tr>

        <td id="L2" class="blob-num js-line-number" data-line-number="2"></td>

        <td id="LC2" class="blob-code blob-code-inner js-file-line"> <span class="pl-s"><span class="pl-pds">"</span>homepage<span class="pl-pds">"</span></span>: <span class="pl-s"><span class="pl-pds">"</span>https://github.com/ArnoSaxena/buildhelper/blob/master/bin/torojimaBuildHelper-0.3.0.jar<span class="pl-pds">"</span></span>,</td>

      </tr>

      <tr>

        <td id="L3" class="blob-num js-line-number" data-line-number="3"></td>

        <td id="LC3" class="blob-code blob-code-inner js-file-line"> <span class="pl-s"><span class="pl-pds">"</span>1.10.2<span class="pl-pds">"</span></span>: {</td>

      </tr>

      <tr>

        <td id="L4" class="blob-num js-line-number" data-line-number="4"></td>

        <td id="LC4" class="blob-code blob-code-inner js-file-line"> <span class="pl-s"><span class="pl-pds">"</span>0.3.1<span class="pl-pds">"</span></span>: <span class="pl-s"><span class="pl-pds">"</span>updated for mc 1.10.2<span class="pl-pds">"</span></span></td>

      </tr>

      <tr>

        <td id="L5" class="blob-num js-line-number" data-line-number="5"></td>

        <td id="LC5" class="blob-code blob-code-inner js-file-line"> },</td>

      </tr>

      <tr>

        <td id="L6" class="blob-num js-line-number" data-line-number="6"></td>

        <td id="LC6" class="blob-code blob-code-inner js-file-line"> <span class="pl-s"><span class="pl-pds">"</span>promos<span class="pl-pds">"</span></span>: {</td>

      </tr>

      <tr>

        <td id="L7" class="blob-num js-line-number" data-line-number="7"></td>

        <td id="LC7" class="blob-code blob-code-inner js-file-line"> <span class="pl-s"><span class="pl-pds">"</span>1.10-latest<span class="pl-pds">"</span></span>: <span class="pl-s"><span class="pl-pds">"</span>0.3.1<span class="pl-pds">"</span></span>,</td>

      </tr>

      <tr>

        <td id="L8" class="blob-num js-line-number" data-line-number="8"></td>

        <td id="LC8" class="blob-code blob-code-inner js-file-line"> <span class="pl-s"><span class="pl-pds">"</span>1.10-recommended<span class="pl-pds">"</span></span>: <span class="pl-s"><span class="pl-pds">"</span>0.3.1<span class="pl-pds">"</span></span></td>

      </tr>

      <tr>

        <td id="L9" class="blob-num js-line-number" data-line-number="9"></td>

        <td id="LC9" class="blob-code blob-code-inner js-file-line"> }</td>

      </tr>

      <tr>

        <td id="L10" class="blob-num js-line-number" data-line-number="10"></td>

        <td id="LC10" class="blob-code blob-code-inner js-file-line">}</td>

      </tr>

</table>

 

  </div>

 

</div>

 

<button type="button" data-facebox="#jump-to-line" data-facebox-class="linejump" data-hotkey="l" class="hidden">Jump to Line</button>

<div id="jump-to-line" style="display:none">

  <!-- </textarea> --><!-- '"` --><form accept-charset="UTF-8" action="" class="js-jump-to-line-form" method="get"><div style="margin:0;padding:0;display:inline"><input name="utf8" type="hidden" value="&#x2713;" /></div>

    <input class="form-control linejump-input js-jump-to-line-field" type="text" placeholder="Jump to line…" aria-label="Jump to line" autofocus>

    <button type="submit" class="btn">Go</button>

</form></div>

 

  </div>

  <div class="modal-backdrop js-touch-events"></div>

</div>

 

 

    </div>

  </div>

 

    </div>

 

        <div class="container site-footer-container">

  <div class="site-footer" role="contentinfo">

    <ul class="site-footer-links right">

        <li><a href="https://github.com/contact" data-ga-click="Footer, go to contact, text:contact">Contact GitHub</a></li>

      <li><a href="https://developer.github.com" data-ga-click="Footer, go to api, text:api">API</a></li>

      <li><a href="https://training.github.com" data-ga-click="Footer, go to training, text:training">Training</a></li>

      <li><a href="https://shop.github.com" data-ga-click="Footer, go to shop, text:shop">Shop</a></li>

        <li><a href="https://github.com/blog" data-ga-click="Footer, go to blog, text:blog">Blog</a></li>

        <li><a href="https://github.com/about" data-ga-click="Footer, go to about, text:about">About</a></li>

 

    </ul>

 

    <a href="https://github.com" aria-label="Homepage" class="site-footer-mark" title="GitHub">

      <svg aria-hidden="true" class="octicon octicon-mark-github" height="24" version="1.1" viewBox="0 0 16 16" width="24"><path d="M8 0C3.58 0 0 3.58 0 8c0 3.54 2.29 6.53 5.47 7.59.4.07.55-.17.55-.38 0-.19-.01-.82-.01-1.49-2.01.37-2.53-.49-2.69-.94-.09-.23-.48-.94-.82-1.13-.28-.15-.68-.52-.01-.53.63-.01 1.08.58 1.23.82.72 1.21 1.87.87 2.33.66.07-.52.28-.87.51-1.07-1.78-.2-3.64-.89-3.64-3.95 0-.87.31-1.59.82-2.15-.08-.2-.36-1.02.08-2.12 0 0 .67-.21 2.2.82.64-.18 1.32-.27 2-.27.68 0 1.36.09 2 .27 1.53-1.04 2.2-.82 2.2-.82.44 1.1.16 1.92.08 2.12.51.56.82 1.27.82 2.15 0 3.07-1.87 3.75-3.65 3.95.29.25.54.73.54 1.48 0 1.07-.01 1.93-.01 2.2 0 .21.15.46.55.38A8.013 8.013 0 0 0 16 8c0-4.42-3.58-8-8-8z"></path></svg>

</a>

    <ul class="site-footer-links">

      <li>© 2016 <span title="0.04464s from github-fe133-cp1-prd.iad.github.net">GitHub</span>, Inc.</li>

        <li><a href="https://github.com/site/terms" data-ga-click="Footer, go to terms, text:terms">Terms</a></li>

        <li><a href="https://github.com/site/privacy" data-ga-click="Footer, go to privacy, text:privacy">Privacy</a></li>

        <li><a href="https://github.com/security" data-ga-click="Footer, go to security, text:security">Security</a></li>

        <li><a href="https://status.github.com/" data-ga-click="Footer, go to status, text:status">Status</a></li>

        <li><a href="https://help.github.com" data-ga-click="Footer, go to help, text:help">Help</a></li>

    </ul>

  </div>

</div>

 

 

 

   

 

    <div id="ajax-error-message" class="ajax-error-message flash flash-error">

      <svg aria-hidden="true" class="octicon octicon-alert" height="16" version="1.1" viewBox="0 0 16 16" width="16"><path d="M8.865 1.52c-.18-.31-.51-.5-.87-.5s-.69.19-.87.5L.275 13.5c-.18.31-.18.69 0 1 .19.31.52.5.87.5h13.7c.36 0 .69-.19.86-.5.17-.31.18-.69.01-1L8.865 1.52zM8.995 13h-2v-2h2v2zm0-3h-2V6h2v4z"></path></svg>

      <button type="button" class="flash-close js-flash-close js-ajax-error-dismiss" aria-label="Dismiss error">

        <svg aria-hidden="true" class="octicon octicon-x" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path d="M7.48 8l3.75 3.75-1.48 1.48L6 9.48l-3.75 3.75-1.48-1.48L4.52 8 .77 4.25l1.48-1.48L6 6.52l3.75-3.75 1.48 1.48z"></path></svg>

      </button>

      Something went wrong with that request. Please try again.

    </div>

 

 

      <script crossorigin="anonymous" src="https://assets-cdn.github.com/assets/compat-7db58f8b7b91111107fac755dd8b178fe7db0f209ced51fc339c446ad3f8da2b.js"></script>

      <script crossorigin="anonymous" src="https://assets-cdn.github.com/assets/frameworks-404cdd1add1f710db016a02e5e31fff8a9089d14ff0c227df862b780886db7d5.js"></script>

      <script async="async" crossorigin="anonymous" src="https://assets-cdn.github.com/assets/github-17eda25854ec7a75229f05d174ed8b1fdf58ed0ae018f73d4f56d3e3ceda2e87.js"></script>

     

     

     

     

     

     

    <div class="js-stale-session-flash stale-session-flash flash flash-warn flash-banner hidden">

      <svg aria-hidden="true" class="octicon octicon-alert" height="16" version="1.1" viewBox="0 0 16 16" width="16"><path d="M8.865 1.52c-.18-.31-.51-.5-.87-.5s-.69.19-.87.5L.275 13.5c-.18.31-.18.69 0 1 .19.31.52.5.87.5h13.7c.36 0 .69-.19.86-.5.17-.31.18-.69.01-1L8.865 1.52zM8.995 13h-2v-2h2v2zm0-3h-2V6h2v4z"></path></svg>

      <span class="signed-in-tab-flash">You signed in with another tab or window. <a href="">Reload</a> to refresh your session.</span>

      <span class="signed-out-tab-flash">You signed out in another tab or window. <a href="">Reload</a> to refresh your session.</span>

    </div>

    <div class="facebox" id="facebox" style="display:none;">

  <div class="facebox-popup">

    <div class="facebox-content" role="dialog" aria-labelledby="facebox-header" aria-describedby="facebox-description">

    </div>

    <button type="button" class="facebox-close js-facebox-close" aria-label="Close modal">

      <svg aria-hidden="true" class="octicon octicon-x" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path d="M7.48 8l3.75 3.75-1.48 1.48L6 9.48l-3.75 3.75-1.48-1.48L4.52 8 .77 4.25l1.48-1.48L6 6.52l3.75-3.75 1.48 1.48z"></path></svg>

    </button>

  </div>

</div>

 

  </body>

</html>

 

 

[15:04:18] [Forge Version Check/DEBUG] [ForgeVersionCheck/Forge]: Failed to process update information

com.google.gson.JsonSyntaxException: java.lang.IllegalStateException: Expected BEGIN_OBJECT but was STRING at line 5 column 1

at com.google.gson.Gson.fromJson(Gson.java:815) ~[Gson.class:?]

at com.google.gson.Gson.fromJson(Gson.java:768) ~[Gson.class:?]

at com.google.gson.Gson.fromJson(Gson.java:717) ~[Gson.class:?]

at com.google.gson.Gson.fromJson(Gson.java:689) ~[Gson.class:?]

at net.minecraftforge.common.ForgeVersion$1.process(ForgeVersion.java:216) [ForgeVersion$1.class:?]

at net.minecraftforge.common.ForgeVersion$1.run(ForgeVersion.java:191) [ForgeVersion$1.class:?]

Caused by: java.lang.IllegalStateException: Expected BEGIN_OBJECT but was STRING at line 5 column 1

at com.google.gson.stream.JsonReader.beginObject(JsonReader.java:374) ~[JsonReader.class:?]

at com.google.gson.internal.bind.MapTypeAdapterFactory$Adapter.read(MapTypeAdapterFactory.java:183) ~[MapTypeAdapterFactory$Adapter.class:?]

at com.google.gson.internal.bind.MapTypeAdapterFactory$Adapter.read(MapTypeAdapterFactory.java:145) ~[MapTypeAdapterFactory$Adapter.class:?]

at com.google.gson.Gson.fromJson(Gson.java:803) ~[Gson.class:?]

... 5 more

[15:04:18] [Forge Version Check/INFO] [ForgeVersionCheck/Forge]: [Forge] Starting version check at http://files.minecraftforge.net/maven/net/minecraftforge/forge/promotions_slim.json

[15:04:18] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - B3DLoader took 0.000s

[15:04:18] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - OBJLoader took 0.000s

[15:04:18] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - ModelFluid$FluidLoader took 0.000s

[15:04:18] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - ItemLayerModel$Loader took 0.000s

[15:04:18] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - MultiLayerModel$Loader took 0.000s

[15:04:18] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - ModelDynBucket$LoaderDynBucket took 0.000s

[15:04:19] [Forge Version Check/DEBUG] [ForgeVersionCheck/Forge]: [Forge] Received version check data:

{

  "homepage": "http://files.minecraftforge.net/maven/net/minecraftforge/forge/",

  "promos": {

    "1.10-latest": "12.18.0.2000",

    "1.10.2-latest": "12.18.1.2027",

    "1.10.2-recommended": "12.18.1.2011",

    "1.5.2-latest": "7.8.1.738",

    "1.5.2-recommended": "7.8.1.737",

    "1.6.1-latest": "8.9.0.775",

    "1.6.2-latest": "9.10.1.871",

    "1.6.2-recommended": "9.10.1.871",

    "1.6.3-latest": "9.11.0.878",

    "1.6.4-latest": "9.11.1.1345",

    "1.6.4-recommended": "9.11.1.1345",

    "1.7.10-latest": "10.13.4.1614",

    "1.7.10-latest-1.7.10": "10.13.2.1343",

    "1.7.10-recommended": "10.13.4.1558",

    "1.7.2-latest": "10.12.2.1147",

    "1.7.2-recommended": "10.12.2.1121",

    "1.8-latest": "11.14.4.1577",

    "1.8-recommended": "11.14.4.1563",

    "1.8.8-latest": "11.15.0.1655",

    "1.8.9-latest": "11.15.1.1902",

    "1.8.9-recommended": "11.15.1.1722",

    "1.9-latest": "12.16.0.1942",

    "1.9-recommended": "12.16.1.1887",

    "1.9.4-latest": "12.17.0.1990",

    "1.9.4-recommended": "12.17.0.1976",

    "latest": "12.18.1.2027",

    "latest-1.7.10": "10.13.2.1343",

    "recommended": "12.18.1.2011"

  }

}

[15:04:19] [Forge Version Check/INFO] [ForgeVersionCheck/Forge]: [Forge] Found status: UP_TO_DATE Target: null

[15:04:20] [Client thread/DEBUG] [FML/]: Bar Finished: ModelLoader: blocks took 1.241s

[15:04:20] [Client thread/DEBUG] [FML/]: Bar Finished: ModelLoader: items took 0.432s

[15:04:20] [Client thread/INFO] [FML/]: Max texture size: 16384

[15:04:20] [Client thread/DEBUG] [FML/]: Bar Finished: Texture stitching - missingno took 0.001s

[15:04:20] [Client thread/DEBUG] [FML/]: Bar Finished: Texture creation took 0.001s

[15:04:20] [Client thread/DEBUG] [FML/]: Bar Finished: Texture mipmap and upload - missingno took 0.000s

[15:04:21] [Client thread/DEBUG] [FML/]: Bar Finished: ModelLoader: baking took 0.704s

[15:04:21] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - ModelManager took 2.524s

[15:04:21] [Client thread/DEBUG] [FML/]: Bar Step: Rendering Setup - Loading Model Manager took 2.557s

[15:04:21] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - RenderItem took 0.003s

[15:04:21] [Client thread/DEBUG] [FML/]: Bar Step: Rendering Setup - Loading Item Renderer took 0.201s

[15:04:21] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - EntityRenderer took 0.000s

[15:04:21] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - BlockRendererDispatcher took 0.000s

[15:04:21] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - RenderGlobal took 0.000s

[15:04:21] [Client thread/DEBUG] [FML/]: Bar Step: Rendering Setup - Loading Entity Renderer took 0.117s

[15:04:21] [Client thread/DEBUG] [FML/]: Bar Finished: Rendering Setup took 2.883s

[15:04:21] [Client thread/TRACE] [mcp/mcp]: Sending event FMLInitializationEvent to mod mcp

[15:04:21] [Client thread/TRACE] [mcp/mcp]: Sent event FMLInitializationEvent to mod mcp

[15:04:21] [Client thread/DEBUG] [FML/]: Bar Step: Initialization - Minecraft Coder Pack took 0.000s

[15:04:21] [Client thread/TRACE] [FML/FML]: Sending event FMLInitializationEvent to mod FML

[15:04:21] [Client thread/TRACE] [FML/FML]: Sent event FMLInitializationEvent to mod FML

[15:04:21] [Client thread/DEBUG] [FML/]: Bar Step: Initialization - Forge Mod Loader took 0.000s

[15:04:21] [Client thread/TRACE] [Forge/Forge]: Sending event FMLInitializationEvent to mod Forge

[15:04:21] [Client thread/TRACE] [Forge/Forge]: Sent event FMLInitializationEvent to mod Forge

[15:04:21] [Client thread/DEBUG] [FML/]: Bar Step: Initialization - Minecraft Forge took 0.000s

[15:04:21] [Client thread/TRACE] [buildhelper/buildhelper]: Sending event FMLInitializationEvent to mod buildhelper

[15:04:21] [Client thread/INFO] [buildhelper/buildhelper]: registering model variants of buildhelper:exchangewand

[15:04:21] [Client thread/TRACE] [buildhelper/buildhelper]: Sent event FMLInitializationEvent to mod buildhelper

[15:04:21] [Client thread/DEBUG] [FML/]: Bar Step: Initialization - Torojima's Build Helper took 0.001s

[15:04:21] [Client thread/DEBUG] [FML/]: Bar Finished: Initialization took 0.002s

[15:04:21] [Client thread/TRACE] [FML/]: Attempting to deliver 0 IMC messages to mod mcp

[15:04:21] [Client thread/TRACE] [mcp/mcp]: Sending event IMCEvent to mod mcp

[15:04:21] [Client thread/TRACE] [mcp/mcp]: Sent event IMCEvent to mod mcp

[15:04:21] [Client thread/DEBUG] [FML/]: Bar Step: InterModComms$IMC - Minecraft Coder Pack took 0.003s

[15:04:21] [Client thread/TRACE] [FML/]: Attempting to deliver 0 IMC messages to mod FML

[15:04:21] [Client thread/TRACE] [FML/FML]: Sending event IMCEvent to mod FML

[15:04:21] [Client thread/TRACE] [FML/FML]: Sent event IMCEvent to mod FML

[15:04:21] [Client thread/DEBUG] [FML/]: Bar Step: InterModComms$IMC - Forge Mod Loader took 0.000s

[15:04:21] [Client thread/TRACE] [FML/]: Attempting to deliver 0 IMC messages to mod Forge

[15:04:21] [Client thread/TRACE] [Forge/Forge]: Sending event IMCEvent to mod Forge

[15:04:21] [Client thread/TRACE] [Forge/Forge]: Sent event IMCEvent to mod Forge

[15:04:21] [Client thread/DEBUG] [FML/]: Bar Step: InterModComms$IMC - Minecraft Forge took 0.000s

[15:04:21] [Client thread/TRACE] [FML/]: Attempting to deliver 0 IMC messages to mod buildhelper

[15:04:21] [Client thread/TRACE] [buildhelper/buildhelper]: Sending event IMCEvent to mod buildhelper

[15:04:21] [Client thread/TRACE] [buildhelper/buildhelper]: Sent event IMCEvent to mod buildhelper

[15:04:21] [Client thread/DEBUG] [FML/]: Bar Step: InterModComms$IMC - Torojima's Build Helper took 0.000s

[15:04:21] [Client thread/DEBUG] [FML/]: Bar Finished: InterModComms$IMC took 0.004s

[15:04:21] [Client thread/INFO] [FML/]: Injecting itemstacks

[15:04:21] [Client thread/INFO] [FML/]: Itemstack injection complete

[15:04:21] [Client thread/TRACE] [mcp/mcp]: Sending event FMLPostInitializationEvent to mod mcp

[15:04:21] [Client thread/TRACE] [mcp/mcp]: Sent event FMLPostInitializationEvent to mod mcp

[15:04:21] [Client thread/DEBUG] [FML/]: Bar Step: PostInitialization - Minecraft Coder Pack took 0.000s

[15:04:21] [Client thread/TRACE] [FML/FML]: Sending event FMLPostInitializationEvent to mod FML

[15:04:21] [Client thread/TRACE] [FML/FML]: Sent event FMLPostInitializationEvent to mod FML

[15:04:21] [Client thread/DEBUG] [FML/]: Bar Step: PostInitialization - Forge Mod Loader took 0.000s

[15:04:21] [Client thread/TRACE] [Forge/Forge]: Sending event FMLPostInitializationEvent to mod Forge

[15:04:21] [Client thread/TRACE] [Forge/Forge]: Sent event FMLPostInitializationEvent to mod Forge

[15:04:21] [Client thread/DEBUG] [FML/]: Bar Step: PostInitialization - Minecraft Forge took 0.008s

[15:04:21] [Client thread/TRACE] [buildhelper/buildhelper]: Sending event FMLPostInitializationEvent to mod buildhelper

[15:04:21] [Client thread/TRACE] [buildhelper/buildhelper]: Sent event FMLPostInitializationEvent to mod buildhelper

[15:04:21] [Client thread/DEBUG] [FML/]: Bar Step: PostInitialization - Torojima's Build Helper took 0.000s

[15:04:21] [Client thread/DEBUG] [FML/]: Bar Finished: PostInitialization took 0.009s

[15:04:21] [Client thread/TRACE] [mcp/mcp]: Sending event FMLLoadCompleteEvent to mod mcp

[15:04:21] [Client thread/TRACE] [mcp/mcp]: Sent event FMLLoadCompleteEvent to mod mcp

[15:04:21] [Client thread/DEBUG] [FML/]: Bar Step: LoadComplete - Minecraft Coder Pack took 0.000s

[15:04:21] [Client thread/TRACE] [FML/FML]: Sending event FMLLoadCompleteEvent to mod FML

[15:04:21] [Client thread/TRACE] [FML/FML]: Sent event FMLLoadCompleteEvent to mod FML

[15:04:21] [Client thread/DEBUG] [FML/]: Bar Step: LoadComplete - Forge Mod Loader took 0.000s

[15:04:21] [Client thread/TRACE] [Forge/Forge]: Sending event FMLLoadCompleteEvent to mod Forge

[15:04:21] [Client thread/DEBUG] [FML/Forge]: Forge RecipeSorter Baking:

[15:04:21] [Client thread/DEBUG] [FML/Forge]:  16: RecipeEntry("Before", UNKNOWN, )

[15:04:21] [Client thread/DEBUG] [FML/Forge]:  15: RecipeEntry("minecraft:shaped", SHAPED, net.minecraft.item.crafting.ShapedRecipes) Before: minecraft:shapeless

[15:04:21] [Client thread/DEBUG] [FML/Forge]:  14: RecipeEntry("forge:shapedore", SHAPED, net.minecraftforge.oredict.ShapedOreRecipe) Before: minecraft:shapeless After: minecraft:shaped

[15:04:21] [Client thread/DEBUG] [FML/Forge]:  13: RecipeEntry("minecraft:mapextending", SHAPED, net.minecraft.item.crafting.RecipesMapExtending) Before: minecraft:shapeless After: minecraft:shaped

[15:04:21] [Client thread/DEBUG] [FML/Forge]:  12: RecipeEntry("minecraft:shapeless", SHAPELESS, net.minecraft.item.crafting.ShapelessRecipes) After: minecraft:shaped

[15:04:21] [Client thread/DEBUG] [FML/Forge]:  11: RecipeEntry("minecraft:repair", SHAPELESS, net.minecraft.item.crafting.RecipeRepairItem) After: minecraft:shapeless

[15:04:21] [Client thread/DEBUG] [FML/Forge]:  10: RecipeEntry("minecraft:shield_deco", SHAPELESS, net.minecraft.item.crafting.ShieldRecipes$Decoration) After: minecraft:shapeless

[15:04:21] [Client thread/DEBUG] [FML/Forge]:  9: RecipeEntry("minecraft:armordyes", SHAPELESS, net.minecraft.item.crafting.RecipesArmorDyes) After: minecraft:shapeless

[15:04:21] [Client thread/DEBUG] [FML/Forge]:  8: RecipeEntry("minecraft:fireworks", SHAPELESS, net.minecraft.item.crafting.RecipeFireworks) After: minecraft:shapeless

[15:04:21] [Client thread/DEBUG] [FML/Forge]:  7: RecipeEntry("minecraft:pattern_dupe", SHAPELESS, net.minecraft.item.crafting.RecipesBanners$RecipeDuplicatePattern) After: minecraft:shapeless

[15:04:21] [Client thread/DEBUG] [FML/Forge]:  6: RecipeEntry("minecraft:tippedarrow", SHAPELESS, net.minecraft.item.crafting.RecipeTippedArrow) After: minecraft:shapeless

[15:04:21] [Client thread/DEBUG] [FML/Forge]:  5: RecipeEntry("minecraft:mapcloning", SHAPELESS, net.minecraft.item.crafting.RecipesMapCloning) After: minecraft:shapeless

[15:04:21] [Client thread/DEBUG] [FML/Forge]:  4: RecipeEntry("forge:shapelessore", SHAPELESS, net.minecraftforge.oredict.ShapelessOreRecipe) After: minecraft:shapeless

[15:04:21] [Client thread/DEBUG] [FML/Forge]:  3: RecipeEntry("minecraft:pattern_add", SHAPELESS, net.minecraft.item.crafting.RecipesBanners$RecipeAddPattern) After: minecraft:shapeless

[15:04:21] [Client thread/DEBUG] [FML/Forge]:  2: RecipeEntry("minecraft:bookcloning", SHAPELESS, net.minecraft.item.crafting.RecipeBookCloning) After: minecraft:shapeless

[15:04:21] [Client thread/DEBUG] [FML/Forge]:  1: RecipeEntry("After", UNKNOWN, )

[15:04:21] [Client thread/DEBUG] [FML/Forge]: Sorting recipes

[15:04:21] [Client thread/TRACE] [Forge/Forge]: Sent event FMLLoadCompleteEvent to mod Forge

[15:04:21] [Client thread/DEBUG] [FML/]: Bar Step: LoadComplete - Minecraft Forge took 0.007s

[15:04:21] [Client thread/TRACE] [buildhelper/buildhelper]: Sending event FMLLoadCompleteEvent to mod buildhelper

[15:04:21] [Client thread/TRACE] [buildhelper/buildhelper]: Sent event FMLLoadCompleteEvent to mod buildhelper

[15:04:21] [Client thread/DEBUG] [FML/]: Bar Step: LoadComplete - Torojima's Build Helper took 0.000s

[15:04:21] [Client thread/DEBUG] [FML/]: Bar Finished: LoadComplete took 0.008s

[15:04:21] [Client thread/DEBUG] [FML/]: Freezing block and item id maps

[15:04:21] [Client thread/INFO] [FML/]: Forge Mod Loader has successfully loaded 4 mods

[15:04:21] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - Default took 0.000s

[15:04:21] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - FMLFileResourcePack:Forge Mod Loader took 0.010s

[15:04:21] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - FMLFileResourcePack:Minecraft Forge took 0.008s

[15:04:21] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - FMLFileResourcePack:Torojima's Build Helper took 0.001s

[15:04:21] [Client thread/DEBUG] [FML/]: Bar Step: Reloading Texture Manager - minecraft:textures/atlas/blocks.png took 0.000s

[15:04:21] [Client thread/DEBUG] [FML/]: Bar Step: Reloading Texture Manager - minecraft:textures/font/ascii.png took 0.006s

[15:04:21] [Client thread/DEBUG] [FML/]: Bar Step: Reloading Texture Manager - minecraft:dynamic/lightMap_1 took 0.000s

[15:04:21] [Client thread/DEBUG] [FML/]: Bar Step: Reloading Texture Manager - minecraft:dynamic/logo_1 took 0.000s

[15:04:21] [Client thread/DEBUG] [FML/]: Bar Step: Reloading Texture Manager - minecraft:textures/misc/forcefield.png took 0.006s

[15:04:21] [Client thread/DEBUG] [FML/]: Bar Step: Reloading Texture Manager - minecraft:textures/font/ascii_sga.png took 0.004s

[15:04:21] [Client thread/DEBUG] [FML/]: Bar Finished: Reloading Texture Manager took 0.016s

[15:04:23] [Client thread/DEBUG] [FML/]: Bar Finished: ModelLoader: blocks took 0.766s

[15:04:24] [Client thread/DEBUG] [FML/]: Bar Finished: ModelLoader: items took 0.434s

[15:04:24] [Client thread/INFO] [FML/]: Max texture size: 16384

[15:04:24] [Client thread/DEBUG] [FML/]: Bar Finished: Texture stitching took 0.102s

[15:04:24] [Client thread/DEBUG] [FML/]: Bar Finished: Texture stitching took 0.022s

[15:04:24] [Client thread/DEBUG] [FML/]: Bar Finished: Texture creation took 0.025s

[15:04:24] [Client thread/DEBUG] [FML/]: Bar Finished: Texture mipmap and upload took 0.297s

[15:04:24] [Client thread/DEBUG] [FML/]: Bar Finished: ModelLoader: baking took 0.308s

[15:04:24] [Client thread/DEBUG] [FML/]: Bar Finished: Reloading took 3.030s

[15:04:24] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - Reloading listeners took 3.030s

[15:04:24] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resources took 3.050s

[15:04:24] [Client thread/DEBUG] [Forge Mod Loader/]: Mod Forge Mod Loader is missing a pack.mcmeta file, substituting a dummy one

[15:04:24] [Client thread/DEBUG] [Minecraft Forge/]: Mod Minecraft Forge is missing a pack.mcmeta file, substituting a dummy one

[15:04:24] [Client thread/DEBUG] [Torojima's Build Helper/]: Mod Torojima's Build Helper is missing a pack.mcmeta file, substituting a dummy one

[15:04:24] [Client thread/DEBUG] [FML/]: Bar Finished: Loading took 9.242s

 

 

 

The strange thing is, while in eclipse debugging, the model doesn't change. If I build the mod and add it to my regular minecraft game, the models will change, but the new models are the pink/black ones ...

 

I have registered the following models with separated json and png files:

exchangewand

exchangewand_c1

exchangewand_c2

exchangewand_c3

 

or do I need one json with every variation?

running minecraft on Mac OS X - Sierra --- creating code since 1986 ... --- मेरा दिल भारतवासी है!

width=289 height=100http://www.arno-saxena.de/pictures/chococraft/banner_signature.png[/img]

Link to comment
Share on other sites

very strange effect. It is working in survival perfectly. While in creative the mode the model change will not work!? Does anybody have any idea how this can happen?

running minecraft on Mac OS X - Sierra --- creating code since 1986 ... --- मेरा दिल भारतवासी है!

width=289 height=100http://www.arno-saxena.de/pictures/chococraft/banner_signature.png[/img]

Link to comment
Share on other sites

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.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Announcements



×
×
  • Create New...

Important Information

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