Jump to content

killerjdog51

Members
  • Posts

    56
  • Joined

  • Last visited

Posts posted by killerjdog51

  1. 6 hours ago, Dzuchun said:

    I'm not sure, but I heard that, since, like, minecraft 1.8 biome spawning respects temperature and humidity. So now taiga can't be spawned next to a desert, etc. You may try to set humidity less than in desert and a temperature higher than in it, so minecraft will be allowed to spawn a biome only in a center of big desert.

    But I can't figure out, how would you achieve a guaranteed single lake generation in a biome, so I'd choose to create a feature.

    Is it possible to create another feature from a feature? Because I'd like palm trees and flowers to spawn around the lake/oasis. 

  2. So I've successfully created my biome and have it spawn. The issue is that the biome is too large. But whatever value I set the scale variable to the biome never grows smaller (I even tried setting a negative number and the results were horrifying). The other issue is my biome spawns on the outskirts of deserts rather than the insides. I'm thinking of making my idea into a feature that spawns randomly in deserts instead, but is there any way to make a feature linked to a specific biome? I'd like to hear some feedback/sugesstions on this.

     

    goal:

    - Small mini feature/biome that spawns within deserts

    - 20 to 60 blocks in diameter

    - small to medium lake (depending on diameter) in center with grass blocks and vegetation surrounding it (palm trees, melons, flowers, etc)

    - vegetation to be a vibrant green similar to what is found in jungles

     

    code:

    public class OasisBiome extends Biome {
    
    	public OasisBiome() {
    	      super((new Biome.Builder()).surfaceBuilder(SurfaceBuilder.DEFAULT, SurfaceBuilder.GRASS_DIRT_GRAVEL_CONFIG).precipitation(Biome.RainType.NONE).category(Biome.Category.DESERT).depth(-0.1F).scale(0.00F).temperature(0.95F).downfall(0.9F).waterColor(4159204).waterFogColor(329011).parent("desert"));
    
    	      this.addStructure(Feature.MINESHAFT, new MineshaftConfig(0.004D, MineshaftStructure.Type.NORMAL));
    	      this.addStructure(Feature.STRONGHOLD, IFeatureConfig.NO_FEATURE_CONFIG);
    	      this.addStructure(Feature.VILLAGE, new VillageConfig("village/desert/town_centers", 6));
    	      this.addFeature(GenerationStage.Decoration.LOCAL_MODIFICATIONS, Biome.createDecoratedFeature(Feature.LAKE, new LakesConfig(Blocks.WATER.getDefaultState()), Placement.WATER_LAKE, new LakeChanceConfig(4)));
    	      this.addFeature(Decoration.VEGETAL_DECORATION, Biome.createDecoratedFeature(WorldFeatures.PALM_TREE, IFeatureConfig.NO_FEATURE_CONFIG, Placement.COUNT_EXTRA_HEIGHTMAP, new AtSurfaceWithExtraConfig(1, 0.1F, 1)));
    	      DefaultBiomeFeatures.addCarvers(this);
    	      DefaultBiomeFeatures.addMonsterRooms(this);
    	      DefaultBiomeFeatures.addStoneVariants(this);
    	      DefaultBiomeFeatures.addOres(this);
    	      DefaultBiomeFeatures.addSedimentDisks(this);
    	      DefaultBiomeFeatures.addDefaultFlowers(this);
    	      DefaultBiomeFeatures.func_222348_W(this);
    	      DefaultBiomeFeatures.addExtraReedsPumpkinsCactus(this);
    	      DefaultBiomeFeatures.addSprings(this);
    	      DefaultBiomeFeatures.addDesertFeatures(this);
    	      this.addSpawn(EntityClassification.CREATURE, new Biome.SpawnListEntry(EntityType.RABBIT, 4, 2, 3));
    	      this.addSpawn(EntityClassification.AMBIENT, new Biome.SpawnListEntry(EntityType.BAT, 10, 8, 8));
    	      this.addSpawn(EntityClassification.MONSTER, new Biome.SpawnListEntry(EntityType.SPIDER, 100, 4, 4));
    	      this.addSpawn(EntityClassification.MONSTER, new Biome.SpawnListEntry(EntityType.SKELETON, 100, 4, 4));
    	      this.addSpawn(EntityClassification.MONSTER, new Biome.SpawnListEntry(EntityType.ZOMBIE, 19, 4, 4));
    	      this.addSpawn(EntityClassification.MONSTER, new Biome.SpawnListEntry(EntityType.ZOMBIE_VILLAGER, 1, 1, 1));
    	      
    	      
    	}
    
    }

     

    public class WorldGeneration {
    
    	public static Biome OASIS = new OasisBiome();
    	
    	public static void registerBiome(Biome biome, int weight, BiomeType type, Type... types)
    	{
    		BiomeDictionary.addTypes(biome, types);
    		BiomeManager.addBiome(type, new BiomeEntry(biome, weight));
    		BiomeManager.addSpawnBiome(biome);
    		BiomeProvider.BIOMES_TO_SPAWN_IN.add(biome);
    	}
    }

     

    public static final DeferredRegister<Biome> BIOMES = new DeferredRegister<>(ForgeRegistries.BIOMES, Main.MOD_ID);
    public static void setup()
    	{
    		BIOMES.register(FMLJavaModLoadingContext.get().getModEventBus());
      
          	WorldGeneration.registerBiome(WorldGeneration.OASIS, 5, BiomeType.DESERT, Type.DRY);
    
    	}
      		public static final RegistryObject<Biome> OASIS_BIOME = BIOMES.register("oasis",  () -> WorldGeneration.OASIS);
    }

     

  3. 1 hour ago, Draco18s said:

    The events no longer exist. You need to remove the feature from the biome.

    You can see how I did that for ores here:

    https://github.com/Draco18s/ReasonableRealism/blob/1.14.4/src/main/java/com/draco18s/harderores/HarderOres.java#L206

     

    (Most of it is a disgusting mess because of the specifics of ore features, but should give you something to start with).

    Thank you, that was exactly what I needed to remove Swamp trees and Witch Huts from the game!

  4. I need to prevent the Minecraft Swamp trees feature from generating in the world. In the past I used a Decorate event to cancel the event/feature from generating. But when I went to look for this in the Forge terrain_gen event folder it didn't exist (probably because Minecraft switched to using features). So I'm curious if there is a way to prevent Minecraft Swamp trees from generating in 1.14/1.15 (since I'm replacing them with Mangroves). 

  5. 6 hours ago, vemerion said:

    I think the problem is that the superclass LeavesBlock tries to set the default state for DISTANCE in its constructor, which unfortunately does not exist anymore due to the fact that you have overriden fillStateContainer.

    To fix this, change the string name of your DISTANCE variable, like so:

    
    public static final IntegerProperty DISTANCE = IntegerProperty.create("distance2", 1, 11);

    and also change fillStateContainer to the following:

    
    @Override
    protected void fillStateContainer(StateContainer.Builder<Block, BlockState> builder) {
    	builder.add(DISTANCE);
      	super.fillStateContainer(builder);
    }

    Hopefully that will work.

    Thank you, this worked as well! Now none of the leaves despawn from the tree.

    • Like 1
  6. 7 minutes ago, ChampionAsh5357 said:

    Are they never called or do you just not see the result because you never set the tint index on your models?

    I set up a breakpoint at the beginning of each event, since neither of the breakpoints were triggered I'm guessing the events just aren't called. 

  7. 9 hours ago, Draco18s said:

    You need to register an IBlockColor instance on (and only on) the client thread.

    public class BlockColorHandler
    {
      	@OnlyIn(Dist.CLIENT)
    	@SubscribeEvent
    	public void registerBlockColourHandlers(final ColorHandlerEvent.Block event)
    	{
    		// Use the colour of the biome or the default colour
    		final IBlockColor grassColourHandler = (state, blockAccess, pos, tintIndex) -> {
    			
    			if (blockAccess != null && pos != null)
    			{
    				return BiomeColors.getFoliageColor(blockAccess, pos);
    			}
    
    			return GrassColors.get(0.5D, 1.0D);
    		};
    
    		event.getBlockColors().register(grassColourHandler, ModBlocks.BAOBAB_LEAVES, ModBlocks.MANGROVE_LEAVES, ModBlocks.PALM_LEAVES);
    	}
      	@OnlyIn(Dist.CLIENT)
    	@SubscribeEvent
    	public void registerItemColourHandlers(final ColorHandlerEvent.Item event)
    	{
    		// Use the Block's colour handler for an ItemBlock
    		final IItemColor itemBlockColourHandler = (stack, tintIndex) -> {
    			BlockState iblockstate = ((BlockItem) stack.getItem()).getBlock().getDefaultState();
    			return event.getBlockColors().getColor(iblockstate, null, null, tintIndex);
    		};
    
    		event.getItemColors().register(itemBlockColourHandler, ModBlocks.BAOBAB_LEAVES, ModBlocks.MANGROVE_LEAVES, ModBlocks.PALM_LEAVES);
    	}
    }
    MinecraftForge.EVENT_BUS.register(new BlockColorHandler());

    So here are my events, but they never get called.

     

    Initially i used:

    Minecraft.GetInstance().getBlockColors().register();

    like in the Coloring Textures section in the Forge Documentation, but that results in a nullPointerException error

  8. Hello, I'm trying to make a custom leaf block in my mod (for both 1.14 and 1.15 [and probably 1.16 now that that's out]) and have run into two problems. The first issue is the farthest leaves despawn, so to fix that I tried creating my own leaf class and extending the LeavesBlock class as shown, but upon loading the game I get this error: 

     

    Cannot set property IntegerProperty{name=distance, clazz=class java.lang.Integer, values=[1, 2, 3, 4, 5, 6, 7]} as it does not exist in Block{null}

     

    package killerjdog51.biomeEnhancementsMod.blocks;
    
    import java.util.Random;
    
    import net.minecraft.block.Block;
    import net.minecraft.block.BlockState;
    import net.minecraft.block.LeavesBlock;
    import net.minecraft.item.BlockItemUseContext;
    import net.minecraft.state.IntegerProperty;
    import net.minecraft.state.StateContainer;
    import net.minecraft.state.properties.BlockStateProperties;
    import net.minecraft.tags.BlockTags;
    import net.minecraft.util.Direction;
    import net.minecraft.util.math.BlockPos;
    import net.minecraft.world.IWorld;
    import net.minecraft.world.World;
    
    public class PalmLeavesBlock extends LeavesBlock {
    	   public static final IntegerProperty DISTANCE = IntegerProperty.create("distance", 1, 11);
    
    	   public PalmLeavesBlock(Block.Properties properties) {
    	      super(properties);
    	      this.setDefaultState(this.stateContainer.getBaseState().with(DISTANCE, Integer.valueOf(11)).with(PERSISTENT, Boolean.valueOf(false)));
    	   }
    
    	   @Override
    	   public boolean ticksRandomly(BlockState state) {
    	      return state.get(DISTANCE) == 11 && !state.get(PERSISTENT);
    	   }
    
    	   @Override
    	   public void randomTick(BlockState state, World worldIn, BlockPos pos, Random random) {
    	      if (!state.get(PERSISTENT) && state.get(DISTANCE) == 11) {
    	         spawnDrops(state, worldIn, pos);
    	         worldIn.removeBlock(pos, false);
    	      }
    
    	   }
    
    	   @Override
    	   public void tick(BlockState state, World worldIn, BlockPos pos, Random random) {
    	      worldIn.setBlockState(pos, updateDistance(state, worldIn, pos), 3);
    	   }
    
    	   @Override
    	   public BlockState updatePostPlacement(BlockState stateIn, Direction facing, BlockState facingState, IWorld worldIn, BlockPos currentPos, BlockPos facingPos) {
    	      int i = getDistance(facingState) + 1;
    	      if (i != 1 || stateIn.get(DISTANCE) != i) {
    	         worldIn.getPendingBlockTicks().scheduleTick(currentPos, this, 1);
    	      }
    
    	      return stateIn;
    	   }
    
    	   private static BlockState updateDistance(BlockState p_208493_0_, IWorld p_208493_1_, BlockPos p_208493_2_) {
    	      int i = 11;
    
    	      try (BlockPos.PooledMutableBlockPos blockpos$pooledmutableblockpos = BlockPos.PooledMutableBlockPos.retain()) {
    	         for(Direction direction : Direction.values()) {
    	            blockpos$pooledmutableblockpos.setPos(p_208493_2_).move(direction);
    	            i = Math.min(i, getDistance(p_208493_1_.getBlockState(blockpos$pooledmutableblockpos)) + 1);
    	            if (i == 1) {
    	               break;
    	            }
    	         }
    	      }
    
    	      return p_208493_0_.with(DISTANCE, Integer.valueOf(i));
    	   }
    
    	   private static int getDistance(BlockState neighbor) {
    	      if (BlockTags.LOGS.contains(neighbor.getBlock())) {
    	         return 0;
    	      } else {
    	         return neighbor.getBlock() instanceof PalmLeavesBlock ? neighbor.get(DISTANCE) : 11;
    	      }
    	   }
    
    	   @Override
    	   protected void fillStateContainer(StateContainer.Builder<Block, BlockState> builder) {
    	      builder.add(DISTANCE, PERSISTENT);
    	   }
    
    	   @Override
    	   public BlockState getStateForPlacement(BlockItemUseContext context) {
    	      return updateDistance(this.getDefaultState().with(PERSISTENT, Boolean.valueOf(true)), context.getWorld(), context.getPos());
    	   }
    	}

     

    So far the best solution I could think of was just to copy the entire LeavesBlock class and replace the necessary values since it appears that there's some sort of conflict between my distance property and LeavesBlock's distance property (I tried changing all the values to newdistance and that didn't work). I want to try avoiding this if possible and just find a solution that involves extending the LeavesBlock class and overriding the necessary functions to increase the distance. 

    The second issue is that my leaves are all grayed out. I saw that in 1.12.2 people created a color manager class for this, I was wondering if that was still the case in 1.14/1.15?

     

    Thanks for the feedback, I'll really appreciate it. 

  9. I tried to simplify my code by having all of my slabs run from a single class file, and they work, except that they all drop the same slab. Do you know why that is? 

     

    half slab class

    package com.chocolatemod.blocks;
    
    import net.minecraft.block.Block;
    import net.minecraft.block.material.Material;
    
    public class BlockHalfSlab extends Blockslab {
    	
        public BlockHalfSlab(Material materialIn, String string) {
        	super(materialIn, string);
    		this.setHarvestLevel("pickaxe", 2);
            this.setHardness(2.0F);
            this.setResistance(10.0F);
            this.setStepSound(soundTypePiston);		}
        
        @Override
        public final boolean isDouble() {
            return false;
        }
    }

    slab class

    package com.chocolatemod.blocks;
    
    import com.chocolatemod.main.GameUtility;
    import com.chocolatemod.main.MainRegistry;
    import com.chocolatemod.init.ChocolateBlocks;
    import com.chocolatemod.main.CommonProxy;
    
    import net.minecraft.block.Block;
    import net.minecraft.block.BlockSlab;
    import net.minecraft.block.material.Material;
    import net.minecraft.block.properties.IProperty;
    import net.minecraft.block.properties.PropertyBool;
    import net.minecraft.block.state.BlockState;
    import net.minecraft.block.state.IBlockState;
    import net.minecraft.client.Minecraft;
    import net.minecraft.client.resources.model.ModelResourceLocation;
    import net.minecraft.creativetab.CreativeTabs;
    import net.minecraft.item.Item;
    import net.minecraft.item.ItemStack;
    import net.minecraftforge.fml.relauncher.Side;
    import net.minecraftforge.fml.relauncher.SideOnly;
    
    
    public abstract class Blockslab extends BlockSlab {
    
    	
        private static final int HALF_META_BIT = 8;
    
        private static String ID;
        
        private static final PropertyBool VARIANT_PROPERTY =
            PropertyBool.create("variant");
        
    	public Blockslab(Material materialIn, String string) {
    		super(materialIn);
    		ID = string;
    		// TODO Auto-generated constructor stub
            if (!this.isDouble()) {
                setCreativeTab(MainRegistry.tabChocolateBlocks);
            }
            this.useNeighborBrightness = !this.isDouble();
    	
       
        IBlockState blockState = this.blockState.getBaseState();
        blockState = blockState.withProperty(VARIANT_PROPERTY, false);
        if (!this.isDouble()) {
            blockState = blockState.withProperty(HALF, EnumBlockHalf.BOTTOM);
        }
    
        setDefaultState(blockState);
        
        }
        
        public final String getId() {
            return this.innerGetId(this.isDouble());
        }
        
        @Override
        public final String getUnlocalizedName(final int metadata) {
            return this.getUnlocalizedName();
        }
    
        
        @Override
        public final Object getVariant(final ItemStack itemStack) {
            return false;
        }
    
       
        @Override
        public final IProperty getVariantProperty() {
            return VARIANT_PROPERTY;
        }
    
        
        @Override
        public final IBlockState getStateFromMeta(final int meta) {
            IBlockState blockState = this.getDefaultState();
            blockState = blockState.withProperty(VARIANT_PROPERTY, false);
            if (!this.isDouble()) {
                EnumBlockHalf value = EnumBlockHalf.BOTTOM;
                if ((meta & HALF_META_BIT) != 0) {
                    value = EnumBlockHalf.TOP;
                }
    
                blockState = blockState.withProperty(HALF, value);
            }
    
            return blockState;
        }
    
        
        @Override
        public final int getMetaFromState(final IBlockState state) {
            if (this.isDouble()) {
               return 0;
            }
    
            if ((EnumBlockHalf) state.getValue(HALF) == EnumBlockHalf.TOP) {
                return HALF_META_BIT;
            } else {
                return 0;
            }
        }
    
        
        @Override
        public final int damageDropped(final IBlockState state) {
            return 0;
        }
    
        
        @Override
        public final Item getItemDropped(
            final IBlockState blockState,
            final java.util.Random random,
            final int unused) {
            String blockId = this.innerGetId(false);
            return GameUtility.getItemFromBlock(blockId);
        }
    
        
        @SideOnly(Side.CLIENT)
        @Override
        public final net.minecraft.item.Item getItem(
            final net.minecraft.world.World world,
            final net.minecraft.util.BlockPos blockPos) {
            String blockId = this.innerGetId(false);
            return GameUtility.getItemFromBlock(blockId);
        }
    
        
        @Override
        protected final BlockState createBlockState() {
            if (this.isDouble()) {
                return new BlockState(this, new IProperty[] {VARIANT_PROPERTY});
            } else {
                return new BlockState(
                    this,
                    new IProperty[] {VARIANT_PROPERTY, HALF});
            }
        }
        
       
        public static void registerInventoryModel(
            final Item item,
            final String id,
            final int metadata) {
            Minecraft.getMinecraft().getRenderItem().getItemModelMesher().register(
                    item,
                    metadata,
                    new ModelResourceLocation(
                        MainRegistry.MODID + id,
                        "inventory"));
        }
        
        private String innerGetId(final boolean isDoubleStacked) {
            
            return ID;
        }
    }

     

  10. Theres no errors in the console pertaining to the growthcraft api I have. If you want to check here it is:

     

    [15:01:49] [main/INFO] [GradleStart]: Extra: []

    [15:01:49] [main/INFO] [GradleStart]: Running with arguments: [--userProperties, {}, --assetsDir, C:/Users/Jordan/.gradle/caches/minecraft/assets, --assetIndex, 1.7.10, --accessToken, {REDACTED}, --version, 1.7.10, --tweakClass, cpw.mods.fml.common.launcher.FMLTweaker, --tweakClass, net.minecraftforge.gradle.tweakers.CoremodTweaker]

    [15:01:49] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.FMLTweaker

    [15:01:49] [main/INFO] [LaunchWrapper]: Using primary tweak class name cpw.mods.fml.common.launcher.FMLTweaker

    [15:01:49] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker

    [15:01:50] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLTweaker

    [15:01:50] [main/INFO] [FML]: Forge Mod Loader version 7.99.40.1614 for Minecraft 1.7.10 loading

    [15:01:50] [main/INFO] [FML]: Java is Java HotSpot 64-Bit Server VM, version 1.8.0_65, running on Windows 10:amd64:10.0, installed at C:\Program Files\Java\jre1.8.0_65

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

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

    [15:01:50] [main/INFO] [GradleStart]: Injecting location in coremod cpw.mods.fml.relauncher.FMLCorePlugin

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

    [15:01:50] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker

    [15:01:50] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.FMLDeobfTweaker

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

    [15:01:50] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker

    [15:01:50] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker

    [15:01:50] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper

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

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

    [15:01:52] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper

    [15:01:52] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLDeobfTweaker

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

    [15:01:52] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.TerminalTweaker

    [15:01:52] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.TerminalTweaker

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

    [15:01:53] [main/INFO]: Setting user: Player706

    [15:01:55] [Client thread/INFO]: LWJGL Version: 2.9.1

    [15:01:57] [Client thread/INFO] [sTDOUT]: [cpw.mods.fml.client.SplashProgress:start:188]: ---- Minecraft Crash Report ----

    // You should try our sister game, Minceraft!

     

    Time: 11/16/16 3:01 PM

    Description: Loading screen debug info

     

    This is just a prompt for computer specs to be printed. THIS IS NOT A ERROR

     

     

    A detailed walkthrough of the error, its code path and all known details is as follows:

    ---------------------------------------------------------------------------------------

     

    -- System Details --

    Details:

    Minecraft Version: 1.7.10

    Operating System: Windows 10 (amd64) version 10.0

    Java Version: 1.8.0_65, Oracle Corporation

    Java VM Version: Java HotSpot 64-Bit Server VM (mixed mode), Oracle Corporation

    Memory: 788164840 bytes (751 MB) / 1038876672 bytes (990 MB) up to 1038876672 bytes (990 MB)

    JVM Flags: 3 total; -Xincgc -Xmx1024M -Xms1024M

    AABB Pool Size: 0 (0 bytes; 0 MB) allocated, 0 (0 bytes; 0 MB) used

    IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0

    FML:

    GL info: ' Vendor: 'NVIDIA Corporation' Version: '4.5.0 NVIDIA 369.09' Renderer: 'GeForce GT 630/PCIe/SSE2'

    [15:01:57] [Client thread/INFO] [MinecraftForge]: Attempting early MinecraftForge initialization

    [15:01:57] [Client thread/INFO] [FML]: MinecraftForge v10.13.4.1614 Initialized

    [15:01:57] [Client thread/INFO] [FML]: Replaced 183 ore recipies

    [15:01:58] [Client thread/INFO] [MinecraftForge]: Completed early MinecraftForge initialization

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

    [15:01:58] [Client thread/INFO] [FML]: Searching C:\Users\Jordan\Desktop\chocolate mod 1.7.10\eclipse\mods for mods

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

    [15:02:06] [Client thread/INFO] [FML]: Attempting connection with missing mods [mcp, FML, Forge, killerjdog51] at CLIENT

    [15:02:06] [Client thread/INFO] [FML]: Attempting connection with missing mods [mcp, FML, Forge, killerjdog51] at SERVER

    [15:02:07] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:Chocolate Mod

    [15:02:07] [Client thread/INFO] [FML]: Processing ObjectHolder annotations

    [15:02:07] [Client thread/INFO] [FML]: Found 341 ObjectHolder annotations

    [15:02:07] [Client thread/INFO] [FML]: Identifying ItemStackHolder annotations

    [15:02:07] [Client thread/INFO] [FML]: Found 0 ItemStackHolder annotations

    [15:02:07] [Client thread/INFO] [FML]: Configured a dormant chunk cache size of 0

    [15:02:07] [Client thread/WARN] [FML]: ****************************************

    [15:02:07] [Client thread/WARN] [FML]: * Illegal extra prefix item.killerjdog51 for name item.killerjdog51:chocolatebow, invalid registry invocation/invalid name?

    [15:02:07] [Client thread/WARN] [FML]: *  at cpw.mods.fml.common.registry.GameData.registerItem(GameData.java:809)

    [15:02:07] [Client thread/WARN] [FML]: *  at cpw.mods.fml.common.registry.GameRegistry.registerItem(GameRegistry.java:149)

    [15:02:07] [Client thread/WARN] [FML]: *  at cpw.mods.fml.common.registry.GameRegistry.registerItem(GameRegistry.java:137)

    [15:02:07] [Client thread/WARN] [FML]: *  at com.chocolatemod.tools.Tools.registerItem(Tools.java:163)

    [15:02:07] [Client thread/WARN] [FML]: *  at com.chocolatemod.tools.Tools.mainRegistry(Tools.java:28)

    [15:02:07] [Client thread/WARN] [FML]: *  at com.chocolatemod.main.MainRegistry.PreLoad(MainRegistry.java:183)...

    [15:02:07] [Client thread/WARN] [FML]: ****************************************

    [15:02:07] [Client thread/WARN] [FML]: ****************************************

    [15:02:07] [Client thread/WARN] [FML]: * Illegal extra prefix item.killerjdog51 for name item.killerjdog51:darkchocolatebow, invalid registry invocation/invalid name?

    [15:02:07] [Client thread/WARN] [FML]: *  at cpw.mods.fml.common.registry.GameData.registerItem(GameData.java:809)

    [15:02:07] [Client thread/WARN] [FML]: *  at cpw.mods.fml.common.registry.GameRegistry.registerItem(GameRegistry.java:149)

    [15:02:07] [Client thread/WARN] [FML]: *  at cpw.mods.fml.common.registry.GameRegistry.registerItem(GameRegistry.java:137)

    [15:02:07] [Client thread/WARN] [FML]: *  at com.chocolatemod.tools.Tools.registerItem(Tools.java:164)

    [15:02:07] [Client thread/WARN] [FML]: *  at com.chocolatemod.tools.Tools.mainRegistry(Tools.java:28)

    [15:02:07] [Client thread/WARN] [FML]: *  at com.chocolatemod.main.MainRegistry.PreLoad(MainRegistry.java:183)...

    [15:02:07] [Client thread/WARN] [FML]: ****************************************

    [15:02:07] [Client thread/WARN] [FML]: ****************************************

    [15:02:07] [Client thread/WARN] [FML]: * Illegal extra prefix item.killerjdog51 for name item.killerjdog51:lightchocolatebow, invalid registry invocation/invalid name?

    [15:02:07] [Client thread/WARN] [FML]: *  at cpw.mods.fml.common.registry.GameData.registerItem(GameData.java:809)

    [15:02:07] [Client thread/WARN] [FML]: *  at cpw.mods.fml.common.registry.GameRegistry.registerItem(GameRegistry.java:149)

    [15:02:07] [Client thread/WARN] [FML]: *  at cpw.mods.fml.common.registry.GameRegistry.registerItem(GameRegistry.java:137)

    [15:02:07] [Client thread/WARN] [FML]: *  at com.chocolatemod.tools.Tools.registerItem(Tools.java:165)

    [15:02:07] [Client thread/WARN] [FML]: *  at com.chocolatemod.tools.Tools.mainRegistry(Tools.java:28)

    [15:02:07] [Client thread/WARN] [FML]: *  at com.chocolatemod.main.MainRegistry.PreLoad(MainRegistry.java:183)...

    [15:02:07] [Client thread/WARN] [FML]: ****************************************

    [15:02:07] [Client thread/WARN] [FML]: ****************************************

    [15:02:07] [Client thread/WARN] [FML]: * Illegal extra prefix item.killerjdog51 for name item.killerjdog51:whitechocolatebow, invalid registry invocation/invalid name?

    [15:02:07] [Client thread/WARN] [FML]: *  at cpw.mods.fml.common.registry.GameData.registerItem(GameData.java:809)

    [15:02:07] [Client thread/WARN] [FML]: *  at cpw.mods.fml.common.registry.GameRegistry.registerItem(GameRegistry.java:149)

    [15:02:07] [Client thread/WARN] [FML]: *  at cpw.mods.fml.common.registry.GameRegistry.registerItem(GameRegistry.java:137)

    [15:02:07] [Client thread/WARN] [FML]: *  at com.chocolatemod.tools.Tools.registerItem(Tools.java:166)

    [15:02:07] [Client thread/WARN] [FML]: *  at com.chocolatemod.tools.Tools.mainRegistry(Tools.java:28)

    [15:02:07] [Client thread/WARN] [FML]: *  at com.chocolatemod.main.MainRegistry.PreLoad(MainRegistry.java:183)...

    [15:02:07] [Client thread/WARN] [FML]: ****************************************

    [15:02:07] [Client thread/WARN] [FML]: ****************************************

    [15:02:07] [Client thread/WARN] [FML]: * Illegal extra prefix item.killerjdog51 for name item.killerjdog51:extradarkchocolatebow, invalid registry invocation/invalid name?

    [15:02:07] [Client thread/WARN] [FML]: *  at cpw.mods.fml.common.registry.GameData.registerItem(GameData.java:809)

    [15:02:07] [Client thread/WARN] [FML]: *  at cpw.mods.fml.common.registry.GameRegistry.registerItem(GameRegistry.java:149)

    [15:02:07] [Client thread/WARN] [FML]: *  at cpw.mods.fml.common.registry.GameRegistry.registerItem(GameRegistry.java:137)

    [15:02:07] [Client thread/WARN] [FML]: *  at com.chocolatemod.tools.Tools.registerItem(Tools.java:168)

    [15:02:07] [Client thread/WARN] [FML]: *  at com.chocolatemod.tools.Tools.mainRegistry(Tools.java:28)

    [15:02:07] [Client thread/WARN] [FML]: *  at com.chocolatemod.main.MainRegistry.PreLoad(MainRegistry.java:183)...

    [15:02:07] [Client thread/WARN] [FML]: ****************************************

    [15:02:08] [Client thread/INFO] [FML]: Applying holder lookups

    [15:02:08] [Client thread/INFO] [FML]: Holder lookups applied

    [15:02:08] [Client thread/INFO] [FML]: Injecting itemstacks

    [15:02:08] [Client thread/INFO] [FML]: Itemstack injection complete

    [15:02:08] [sound Library Loader/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]:

    [15:02:08] [sound Library Loader/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: Starting up SoundSystem...

    [15:02:08] [Thread-8/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: Initializing LWJGL OpenAL

    [15:02:08] [Thread-8/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]:    (The LWJGL binding of OpenAL.  For more information, see http://www.lwjgl.org)

    [15:02:08] [Thread-8/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: OpenAL initialized.

    [15:02:08] [sound Library Loader/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]:

    [15:02:08] [sound Library Loader/INFO]: Sound engine started

    [15:02:15] [Client thread/INFO]: Created: 16x16 textures/blocks-atlas

    [15:02:15] [Client thread/INFO]: Created: 16x16 textures/items-atlas

    [15:02:15] [Client thread/INFO] [FML]: Injecting itemstacks

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

    [15:02:15] [Client thread/INFO] [FML]: Forge Mod Loader has successfully loaded 4 mods

    [15:02:15] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:Chocolate Mod

    [15:02:16] [Client thread/INFO]: Created: 512x512 textures/blocks-atlas

    [15:02:16] [Client thread/INFO]: Created: 512x256 textures/items-atlas

    [15:02:16] [Client thread/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]:

    [15:02:16] [Client thread/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: SoundSystem shutting down...

    [15:02:17] [Client thread/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:importantMessage:90]:    Author: Paul Lamb, www.paulscode.com

    [15:02:17] [Client thread/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]:

    [15:02:17] [sound Library Loader/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]:

    [15:02:17] [sound Library Loader/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: Starting up SoundSystem...

    [15:02:17] [Thread-10/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: Initializing LWJGL OpenAL

    [15:02:17] [Thread-10/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]:    (The LWJGL binding of OpenAL.  For more information, see http://www.lwjgl.org)

    [15:02:17] [Thread-10/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: OpenAL initialized.

    [15:02:17] [sound Library Loader/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]:

    [15:02:17] [sound Library Loader/INFO]: Sound engine started

    [15:02:18] [Client thread/ERROR] [TEXTURE ERRORS]: +=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=

    [15:02:18] [Client thread/ERROR] [TEXTURE ERRORS]: The following texture errors were found.

    [15:02:18] [Client thread/ERROR] [TEXTURE ERRORS]: ==================================================

    [15:02:18] [Client thread/ERROR] [TEXTURE ERRORS]:  DOMAIN minecraft

    [15:02:18] [Client thread/ERROR] [TEXTURE ERRORS]: --------------------------------------------------

    [15:02:18] [Client thread/ERROR] [TEXTURE ERRORS]:  domain minecraft is missing 45 textures

    [15:02:18] [Client thread/ERROR] [TEXTURE ERRORS]:    domain minecraft has 3 locations:

    [15:02:18] [Client thread/ERROR] [TEXTURE ERRORS]:      unknown resourcepack type net.minecraft.client.resources.DefaultResourcePack : Default

    [15:02:18] [Client thread/ERROR] [TEXTURE ERRORS]:      mod FML resources at C:\Users\Jordan\.gradle\caches\minecraft\net\minecraftforge\forge\1.7.10-10.13.4.1614-1.7.10\forgeSrc-1.7.10-10.13.4.1614-1.7.10.jar

    [15:02:18] [Client thread/ERROR] [TEXTURE ERRORS]:      mod Forge resources at C:\Users\Jordan\.gradle\caches\minecraft\net\minecraftforge\forge\1.7.10-10.13.4.1614-1.7.10\forgeSrc-1.7.10-10.13.4.1614-1.7.10.jar

    ==================================================

    +=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=

    [15:03:01] [server thread/INFO]: Starting integrated minecraft server version 1.7.10

    [15:03:01] [server thread/INFO]: Generating keypair

    [15:03:01] [server thread/INFO] [FML]: Injecting existing block and item data into this server instance

    [15:03:01] [server thread/INFO] [FML]: Applying holder lookups

    [15:03:01] [server thread/INFO] [FML]: Holder lookups applied

    [15:03:01] [server thread/INFO] [FML]: Loading dimension 0 (New World) (net.minecraft.server.integrated.IntegratedServer@4d0a5a6a)

    [15:03:01] [server thread/INFO] [sTDOUT]: [com.chocolatemod.worldgen.BiomeDecoratorChocolate:<init>:110]: Biome Decorator is Called

    [15:03:01] [server thread/INFO] [sTDOUT]: [com.chocolatemod.worldgen.BiomeDecoratorChocolate:<init>:110]: Biome Decorator is Called

    [15:03:01] [server thread/INFO] [sTDOUT]: [com.chocolatemod.worldgen.BiomeDecoratorChocolate:<init>:110]: Biome Decorator is Called

    [15:03:01] [server thread/INFO] [sTDOUT]: [com.chocolatemod.worldgen.BiomeDecoratorChocolate:<init>:110]: Biome Decorator is Called

    [15:03:01] [server thread/INFO] [sTDOUT]: [com.chocolatemod.worldgen.BiomeDecoratorChocolate:<init>:110]: Biome Decorator is Called

    [15:03:01] [server thread/INFO] [sTDOUT]: [com.chocolatemod.worldgen.BiomeDecoratorChocolate:<init>:110]: Biome Decorator is Called

    [15:03:01] [server thread/INFO] [sTDOUT]: [com.chocolatemod.worldgen.BiomeDecoratorChocolate:<init>:110]: Biome Decorator is Called

    [15:03:01] [server thread/INFO] [sTDOUT]: [com.chocolatemod.worldgen.BiomeDecoratorChocolate:<init>:110]: Biome Decorator is Called

    [15:03:01] [server thread/INFO] [sTDOUT]: [com.chocolatemod.worldgen.BiomeDecoratorChocolate:<init>:110]: Biome Decorator is Called

    [15:03:01] [server thread/INFO] [sTDOUT]: [com.chocolatemod.worldgen.BiomeGenChocolateMountian:<init>:45]: grass = com.chocolatemod.block.BlockChocoGrass@3cd2fd3d, dirt = com.chocolatemod.block.BlockChocoDirt@7984c4dc

    [15:03:01] [server thread/INFO] [sTDOUT]: [com.chocolatemod.worldgen.BiomeDecoratorChocolate:<init>:110]: Biome Decorator is Called

    [15:03:01] [server thread/INFO] [sTDOUT]: [com.chocolatemod.worldgen.BiomeDecoratorChocolate:<init>:110]: Biome Decorator is Called

    [15:03:01] [server thread/INFO] [sTDOUT]: [com.chocolatemod.worldgen.BiomeDecoratorChocolate:<init>:110]: Biome Decorator is Called

    [15:03:01] [server thread/INFO] [sTDOUT]: [com.chocolatemod.worldgen.BiomeDecoratorChocolate:<init>:110]: Biome Decorator is Called

    [15:03:01] [server thread/INFO] [sTDOUT]: [com.chocolatemod.worldgen.BiomeDecoratorChocolate:<init>:110]: Biome Decorator is Called

    [15:03:01] [server thread/INFO] [sTDOUT]: [com.chocolatemod.worldgen.BiomeGenChocolateSwamp:<init>:57]: grass = com.chocolatemod.block.BlockChocoGrass@3cd2fd3d, dirt = com.chocolatemod.block.BlockChocoDirt@7984c4dc

    [15:03:01] [server thread/INFO] [sTDOUT]: [com.chocolatemod.worldgen.BiomeDecoratorChocolate:<init>:110]: Biome Decorator is Called

    [15:03:01] [server thread/INFO] [sTDOUT]: [com.chocolatemod.worldgen.BiomeDecoratorChocolate:<init>:110]: Biome Decorator is Called

    [15:03:01] [server thread/INFO] [sTDOUT]: [com.chocolatemod.worldgen.BiomeDecoratorChocolate:<init>:110]: Biome Decorator is Called

    [15:03:01] [server thread/INFO] [sTDOUT]: [com.chocolatemod.worldgen.BiomeDecoratorChocolate:<init>:110]: Biome Decorator is Called

    [15:03:01] [server thread/INFO] [sTDOUT]: [com.chocolatemod.worldgen.BiomeDecoratorChocolate:<init>:110]: Biome Decorator is Called

    [15:03:01] [server thread/INFO] [sTDOUT]: [com.chocolatemod.worldgen.BiomeDecoratorChocolate:<init>:110]: Biome Decorator is Called

    [15:03:01] [server thread/INFO] [sTDOUT]: [com.chocolatemod.worldgen.BiomeDecoratorChocolate:<init>:110]: Biome Decorator is Called

    [15:03:01] [server thread/INFO] [sTDOUT]: [com.chocolatemod.worldgen.BiomeDecoratorChocolate:<init>:110]: Biome Decorator is Called

    [15:03:01] [server thread/INFO] [FML]: Loading dimension 3 (New World) (net.minecraft.server.integrated.IntegratedServer@4d0a5a6a)

    [15:03:01] [server thread/INFO] [FML]: Loading dimension 1 (New World) (net.minecraft.server.integrated.IntegratedServer@4d0a5a6a)

    [15:03:01] [server thread/INFO] [FML]: Loading dimension -1 (New World) (net.minecraft.server.integrated.IntegratedServer@4d0a5a6a)

    [15:03:01] [server thread/INFO]: Preparing start region for level 0

    [15:03:02] [server thread/INFO]: Changing view distance to 12, from 10

    [15:03:02] [Netty Client IO #0/INFO] [FML]: Server protocol version 2

    [15:03:02] [Netty IO #1/INFO] [FML]: Client protocol version 2

    [15:03:02] [Netty IO #1/INFO] [FML]: Client attempting to join with 4 mods : [email protected],[email protected],[email protected],[email protected]

    [15:03:02] [Netty IO #1/INFO] [FML]: Attempting connection with missing mods [] at CLIENT

    [15:03:02] [Netty Client IO #0/INFO] [FML]: Attempting connection with missing mods [] at SERVER

    [15:03:02] [Client thread/INFO] [FML]: [Client thread] Client side modded connection established

    [15:03:02] [server thread/INFO] [FML]: [server thread] Server side modded connection established

    [15:03:02] [server thread/INFO]: Player706[local:E:c3c2f3d3] logged in with entity id 307 at (-1181.6466920688872, 9.0, -315.6250277357989)

    [15:03:02] [server thread/INFO]: Player706 joined the game

    [15:03:06] [server thread/INFO]: Saving and pausing game...

    [15:03:06] [server thread/INFO]: Saving chunks for level 'New World'/Overworld

    [15:03:06] [server thread/INFO]: Saving chunks for level 'New World'/Nether

    [15:03:06] [server thread/INFO]: Saving chunks for level 'New World'/The End

    [15:03:06] [server thread/INFO]: Saving chunks for level 'New World'/Chocolate

    [15:03:07] [server thread/INFO]: Stopping server

    [15:03:07] [server thread/INFO]: Saving players

    [15:03:07] [server thread/INFO]: Saving worlds

    [15:03:07] [server thread/INFO]: Saving chunks for level 'New World'/Overworld

    [15:03:07] [server thread/INFO]: Saving chunks for level 'New World'/Nether

    [15:03:07] [server thread/INFO]: Saving chunks for level 'New World'/The End

    [15:03:07] [server thread/INFO]: Saving chunks for level 'New World'/Chocolate

    [15:03:07] [server thread/INFO] [FML]: Unloading dimension 0

    [15:03:07] [server thread/INFO] [FML]: Unloading dimension -1

    [15:03:07] [server thread/INFO] [FML]: Unloading dimension 1

    [15:03:07] [server thread/INFO] [FML]: Unloading dimension 3

    [15:03:07] [server thread/INFO] [FML]: Applying holder lookups

    [15:03:07] [server thread/INFO] [FML]: Holder lookups applied

    [15:03:10] [Client thread/INFO]: Stopping!

    [15:03:10] [Client thread/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]:

    [15:03:10] [Client thread/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: SoundSystem shutting down...

    [15:03:10] [Client thread/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:importantMessage:90]:    Author: Paul Lamb, www.paulscode.com

    [15:03:10] [Client thread/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]:

    Java HotSpot 64-Bit Server VM warning: Using incremental CMS is deprecated and will likely be removed in a future release

     

     

     

    And here is my repository: https://github.com/killerjdog51/chocolate-mod-1.7.10

  11. Alright, so I'm trying to use growthcraft 2.7.0 Api to integrate my chocolate mod with growthcraft in order to allow my mod to access growthcraft's cellar registry so that growthcraft's brew kettle could use my mod's fluid for brewing. However, when I used the gradlew.bat build command it stopped and spat out a bunch of errors. I would really appreciate the help.

     

    Error report

     

    C:\Users\Jordan\Desktop\chocolate mod 1.7.10>gradlew.bat build

    ****************************

    Powered By MCP:

    http://modcoderpack.com/

    Searge, ProfMobius, Fesh0r,

    R4wk, ZeuX, IngisKahn, bspkrs

    MCP Data version : unknown

    ****************************

    :compileApiJava UP-TO-DATE

    :processApiResources UP-TO-DATE

    :apiClasses UP-TO-DATE

    :sourceMainJava UP-TO-DATE

    :compileJava

    warning: [options] bootstrap class path not set in conjunction with -source 1.6

    C:\Users\Jordan\Desktop\chocolate mod 1.7.10\build\sources\java\com\chocolatemod\main\MainRegistry.java:21: error: package growthcraft.api.cellar does not exist

    import growthcraft.api.cellar.CellarRegistry;

    ^

    C:\Users\Jordan\Desktop\chocolate mod 1.7.10\build\sources\java\com\chocolatemod\main\MainRegistry.java:22: error: package growthcraft.api.cellar.brewing does not exist

    import growthcraft.api.cellar.brewing.BrewingRecipe;

    ^

    C:\Users\Jordan\Desktop\chocolate mod 1.7.10\build\sources\java\com\chocolatemod\main\MainRegistry.java:23: error: package growthcraft.api.cellar.brewing does not exist

    import growthcraft.api.cellar.brewing.IBrewingRegistry;

    ^

    C:\Users\Jordan\Desktop\chocolate mod 1.7.10\build\sources\java\com\chocolatemod\main\MainRegistry.java:24: error: package growthcraft.api.core.util does not exist

    import growthcraft.api.core.util.MultiStacksUtil;

    ^

    C:\Users\Jordan\Desktop\chocolate mod 1.7.10\build\sources\java\com\chocolatemod\main\MainRegistry.java:25: error: package growthcraft.api.cellar.common does not exist

    import growthcraft.api.cellar.common.Residue;

    ^

    C:\Users\Jordan\Desktop\chocolate mod 1.7.10\build\sources\java\com\chocolatemod\main\MainRegistry.java:197: error: cannot find symbol

    CellarRegistry.instance().brewing().addRecipe(new BrewingRecipe(FluidRegistry.getFluidStack("grc.milk", 40), MultiStacksUtil.toMultiItemStacks(new ItemStack(ItemRegistry.CocoaPowder)),new FluidStack(LiquidRegistry.whiteChocolateMilkFluid, 40), 1200, null));

    ^

    symbol: class BrewingRecipe

    location: class MainRegistry

    C:\Users\Jordan\Desktop\chocolate mod 1.7.10\build\sources\java\com\chocolatemod\main\MainRegistry.java:197: error: cannot find symbol

    CellarRegistry.instance().brewing().addRecipe(new BrewingRecipe(FluidRegistry.getFluidStack("grc.milk", 40), MultiStacksUtil.toMultiItemStacks(new ItemStack(ItemRegistry.CocoaPowder)),new FluidStack(LiquidRegistry.whiteChocolateMilkFluid, 40), 1200, null));

    ^

    symbol: variable MultiStacksUtil

    location: class MainRegistry

    C:\Users\Jordan\Desktop\chocolate mod 1.7.10\build\sources\java\com\chocolatemod\main\MainRegistry.java:197: error: cannot find symbol

    CellarRegistry.instance().brewing().addRecipe(new BrewingRecipe(FluidRegistry.getFluidStack("grc.milk", 40), MultiStacksUtil.toMultiItemStacks(new ItemStack(ItemRegistry.CocoaPowder)),new FluidStack(LiquidRegistry.whiteChocolateMilkFluid, 40), 1200, null));

    ^

    symbol: variable CellarRegistry

    location: class MainRegistry

    C:\Users\Jordan\Desktop\chocolate mod 1.7.10\build\sources\java\com\chocolatemod\main\MainRegistry.java:202: error: cannot find symbol

    CellarRegistry.instance().brewing().addRecipe(new BrewingRecipe(new FluidStack(LiquidRegistry.darkChocolateMilkFluid, 40), MultiStacksUtil.toMultiItemStacks(new ItemStack(Items.milk_bucket)),new FluidStack(LiquidRegistry.chocolateMilkFluid, 40), 1200, new Residue(new ItemStack(Items.bucket), 1.0F)));

    ^

    symbol: class BrewingRecipe

    location: class MainRegistry

    C:\Users\Jordan\Desktop\chocolate mod 1.7.10\build\sources\java\com\chocolatemod\main\MainRegistry.java:199: error: cannot find symbol

    CellarRegistry.instance().brewing().addRecipe(new BrewingRecipe(new FluidStack(LiquidRegistry.lightChocolateMilkFluid, 40), MultiStacksUtil.toMultiItemStacks(new ItemStack(ItemRegistry.CocoaPowder)),new FluidStack(LiquidRegistry.chocolateMilkFluid, 40), 1200, null));

    ^

    symbol: variable MultiStacksUtil

    location: class MainRegistry

    C:\Users\Jordan\Desktop\chocolate mod 1.7.10\build\sources\java\com\chocolatemod\main\MainRegistry.java:199: error: cannot find symbol

    CellarRegistry.instance().brewing().addRecipe(new BrewingRecipe(new FluidStack(LiquidRegistry.lightChocolateMilkFluid, 40), MultiStacksUtil.toMultiItemStacks(new ItemStack(ItemRegistry.CocoaPowder)),new FluidStack(LiquidRegistry.chocolateMilkFluid, 40), 1200, null));

    ^

    symbol: variable CellarRegistry

    location: class MainRegistry

    C:\Users\Jordan\Desktop\chocolate mod 1.7.10\build\sources\java\com\chocolatemod\main\MainRegistry.java:200: error: cannot find symbol

    CellarRegistry.instance().brewing().addRecipe(new BrewingRecipe(new FluidStack(LiquidRegistry.chocolateMilkFluid, 40), MultiStacksUtil.toMultiItemStacks(new ItemStack(ItemRegistry.CocoaPowder)),new FluidStack(LiquidRegistry.darkChocolateMilkFluid, 40), 1200, null));

    ^

    symbol: class BrewingRecipe

    location: class MainRegistry

    C:\Users\Jordan\Desktop\chocolate mod 1.7.10\build\sources\java\com\chocolatemod\main\MainRegistry.java:200: error: cannot find symbol

    CellarRegistry.instance().brewing().addRecipe(new BrewingRecipe(new FluidStack(LiquidRegistry.chocolateMilkFluid, 40), MultiStacksUtil.toMultiItemStacks(new ItemStack(ItemRegistry.CocoaPowder)),new FluidStack(LiquidRegistry.darkChocolateMilkFluid, 40), 1200, null));

    ^

    symbol: variable MultiStacksUtil

    location: class MainRegistry

    C:\Users\Jordan\Desktop\chocolate mod 1.7.10\build\sources\java\com\chocolatemod\main\MainRegistry.java:200: error: cannot find symbol

    CellarRegistry.instance().brewing().addRecipe(new BrewingRecipe(new FluidStack(LiquidRegistry.chocolateMilkFluid, 40), MultiStacksUtil.toMultiItemStacks(new ItemStack(ItemRegistry.CocoaPowder)),new FluidStack(LiquidRegistry.darkChocolateMilkFluid, 40), 1200, null));

    ^

    symbol: variable CellarRegistry

    location: class MainRegistry

    C:\Users\Jordan\Desktop\chocolate mod 1.7.10\build\sources\java\com\chocolatemod\main\MainRegistry.java:201: error: cannot find symbol

    CellarRegistry.instance().brewing().addRecipe(new BrewingRecipe(new FluidStack(LiquidRegistry.darkChocolateMilkFluid, 40), MultiStacksUtil.toMultiItemStacks(new ItemStack(ItemRegistry.bowlmilk)),new FluidStack(LiquidRegistry.chocolateMilkFluid, 40), 1200, new Residue(new ItemStack(Items.bowl), 1.0F)));

    ^

    symbol: class BrewingRecipe

    location: class MainRegistry

    C:\Users\Jordan\Desktop\chocolate mod 1.7.10\build\sources\java\com\chocolatemod\main\MainRegistry.java:201: error: cannot find symbol

    CellarRegistry.instance().brewing().addRecipe(new BrewingRecipe(new FluidStack(LiquidRegistry.darkChocolateMilkFluid, 40), MultiStacksUtil.toMultiItemStacks(new ItemStack(ItemRegistry.bowlmilk)),new FluidStack(LiquidRegistry.chocolateMilkFluid, 40), 1200, new Residue(new ItemStack(Items.bowl), 1.0F)));

    ^

    symbol: variable MultiStacksUtil

    location: class MainRegistry

    C:\Users\Jordan\Desktop\chocolate mod 1.7.10\build\sources\java\com\chocolatemod\main\MainRegistry.java:201: error: cannot find symbol

    CellarRegistry.instance().brewing().addRecipe(new BrewingRecipe(new FluidStack(LiquidRegistry.darkChocolateMilkFluid, 40), MultiStacksUtil.toMultiItemStacks(new ItemStack(ItemRegistry.bowlmilk)),new FluidStack(LiquidRegistry.chocolateMilkFluid, 40), 1200, new Residue(new ItemStack(Items.bowl), 1.0F)));

    ^

    symbol: class Residue

    location: class MainRegistry

    C:\Users\Jordan\Desktop\chocolate mod 1.7.10\build\sources\java\com\chocolatemod\main\MainRegistry.java:201: error: cannot find symbol

    CellarRegistry.instance().brewing().addRecipe(new BrewingRecipe(new FluidStack(LiquidRegistry.darkChocolateMilkFluid, 40), MultiStacksUtil.toMultiItemStacks(new ItemStack(ItemRegistry.bowlmilk)),new FluidStack(LiquidRegistry.chocolateMilkFluid, 40), 1200, new Residue(new ItemStack(Items.bowl), 1.0F)));

    ^

    symbol: variable CellarRegistry

    location: class MainRegistry

    C:\Users\Jordan\Desktop\chocolate mod 1.7.10\build\sources\java\com\chocolatemod\main\MainRegistry.java:202: error: cannot find symbol

    CellarRegistry.instance().brewing().addRecipe(new BrewingRecipe(new FluidStack(LiquidRegistry.darkChocolateMilkFluid, 40), MultiStacksUtil.toMultiItemStacks(new ItemStack(Items.milk_bucket)),new FluidStack(LiquidRegistry.chocolateMilkFluid, 40), 1200, new Residue(new ItemStack(Items.bucket), 1.0F)));

    ^

    symbol: class BrewingRecipe

    location: class MainRegistry

    C:\Users\Jordan\Desktop\chocolate mod 1.7.10\build\sources\java\com\chocolatemod\main\MainRegistry.java:202: error: cannot find symbol

    CellarRegistry.instance().brewing().addRecipe(new BrewingRecipe(new FluidStack(LiquidRegistry.darkChocolateMilkFluid, 40), MultiStacksUtil.toMultiItemStacks(new ItemStack(Items.milk_bucket)),new FluidStack(LiquidRegistry.chocolateMilkFluid, 40), 1200, new Residue(new ItemStack(Items.bucket), 1.0F)));

    ^

    symbol: variable MultiStacksUtil

    location: class MainRegistry

    C:\Users\Jordan\Desktop\chocolate mod 1.7.10\build\sources\java\com\chocolatemod\main\MainRegistry.java:202: error: cannot find symbol

    CellarRegistry.instance().brewing().addRecipe(new BrewingRecipe(new FluidStack(LiquidRegistry.darkChocolateMilkFluid, 40), MultiStacksUtil.toMultiItemStacks(new ItemStack(Items.milk_bucket)),new FluidStack(LiquidRegistry.chocolateMilkFluid, 40), 1200, new Residue(new ItemStack(Items.bucket), 1.0F)));

    ^

    symbol: class Residue

    location: class MainRegistry

    C:\Users\Jordan\Desktop\chocolate mod 1.7.10\build\sources\java\com\chocolatemod\main\MainRegistry.java:202: error: cannot find symbol

    CellarRegistry.instance().brewing().addRecipe(new BrewingRecipe(new FluidStack(LiquidRegistry.darkChocolateMilkFluid, 40), MultiStacksUtil.toMultiItemStacks(new ItemStack(Items.milk_bucket)),new FluidStack(LiquidRegistry.chocolateMilkFluid, 40), 1200, new Residue(new ItemStack(Items.bucket), 1.0F)));

    ^

    symbol: variable CellarRegistry

    location: class MainRegistry

    C:\Users\Jordan\Desktop\chocolate mod 1.7.10\build\sources\java\com\chocolatemod\main\MainRegistry.java:203: error: cannot find symbol

    CellarRegistry.instance().brewing().addRecipe(new BrewingRecipe(new FluidStack(LiquidRegistry.chocolateMilkFluid, 40), MultiStacksUtil.toMultiItemStacks(new ItemStack(ItemRegistry.bowlmilk)),new FluidStack(LiquidRegistry.lightChocolateMilkFluid, 40), 1200, new Residue(new ItemStack(Items.bowl), 1.0F)));

    ^

    symbol: class BrewingRecipe

    location: class MainRegistry

    C:\Users\Jordan\Desktop\chocolate mod 1.7.10\build\sources\java\com\chocolatemod\main\MainRegistry.java:203: error: cannot find symbol

    CellarRegistry.instance().brewing().addRecipe(new BrewingRecipe(new FluidStack(LiquidRegistry.chocolateMilkFluid, 40), MultiStacksUtil.toMultiItemStacks(new ItemStack(ItemRegistry.bowlmilk)),new FluidStack(LiquidRegistry.lightChocolateMilkFluid, 40), 1200, new Residue(new ItemStack(Items.bowl), 1.0F)));

    ^

    symbol: variable MultiStacksUtil

    location: class MainRegistry

    C:\Users\Jordan\Desktop\chocolate mod 1.7.10\build\sources\java\com\chocolatemod\main\MainRegistry.java:203: error: cannot find symbol

    CellarRegistry.instance().brewing().addRecipe(new BrewingRecipe(new FluidStack(LiquidRegistry.chocolateMilkFluid, 40), MultiStacksUtil.toMultiItemStacks(new ItemStack(ItemRegistry.bowlmilk)),new FluidStack(LiquidRegistry.lightChocolateMilkFluid, 40), 1200, new Residue(new ItemStack(Items.bowl), 1.0F)));

    ^

    symbol: class Residue

    location: class MainRegistry

    C:\Users\Jordan\Desktop\chocolate mod 1.7.10\build\sources\java\com\chocolatemod\main\MainRegistry.java:203: error: cannot find symbol

    CellarRegistry.instance().brewing().addRecipe(new BrewingRecipe(new FluidStack(LiquidRegistry.chocolateMilkFluid, 40), MultiStacksUtil.toMultiItemStacks(new ItemStack(ItemRegistry.bowlmilk)),new FluidStack(LiquidRegistry.lightChocolateMilkFluid, 40), 1200, new Residue(new ItemStack(Items.bowl), 1.0F)));

    ^

    symbol: variable CellarRegistry

    location: class MainRegistry

    C:\Users\Jordan\Desktop\chocolate mod 1.7.10\build\sources\java\com\chocolatemod\main\MainRegistry.java:204: error: cannot find symbol

    CellarRegistry.instance().brewing().addRecipe(new BrewingRecipe(new FluidStack(LiquidRegistry.chocolateMilkFluid, 40), MultiStacksUtil.toMultiItemStacks(new ItemStack(Items.milk_bucket)),new FluidStack(LiquidRegistry.lightChocolateMilkFluid, 40), 1200, new Residue(new ItemStack(Items.bucket), 1.0F)));

    ^

    symbol: class BrewingRecipe

    location: class MainRegistry

    C:\Users\Jordan\Desktop\chocolate mod 1.7.10\build\sources\java\com\chocolatemod\main\MainRegistry.java:204: error: cannot find symbol

    CellarRegistry.instance().brewing().addRecipe(new BrewingRecipe(new FluidStack(LiquidRegistry.chocolateMilkFluid, 40), MultiStacksUtil.toMultiItemStacks(new ItemStack(Items.milk_bucket)),new FluidStack(LiquidRegistry.lightChocolateMilkFluid, 40), 1200, new Residue(new ItemStack(Items.bucket), 1.0F)));

    ^

    symbol: variable MultiStacksUtil

    location: class MainRegistry

    C:\Users\Jordan\Desktop\chocolate mod 1.7.10\build\sources\java\com\chocolatemod\main\MainRegistry.java:204: error: cannot find symbol

    CellarRegistry.instance().brewing().addRecipe(new BrewingRecipe(new FluidStack(LiquidRegistry.chocolateMilkFluid, 40), MultiStacksUtil.toMultiItemStacks(new ItemStack(Items.milk_bucket)),new FluidStack(LiquidRegistry.lightChocolateMilkFluid, 40), 1200, new Residue(new ItemStack(Items.bucket), 1.0F)));

    ^

    symbol: class Residue

    location: class MainRegistry

    C:\Users\Jordan\Desktop\chocolate mod 1.7.10\build\sources\java\com\chocolatemod\main\MainRegistry.java:204: error: cannot find symbol

    CellarRegistry.instance().brewing().addRecipe(new BrewingRecipe(new FluidStack(LiquidRegistry.chocolateMilkFluid, 40), MultiStacksUtil.toMultiItemStacks(new ItemStack(Items.milk_bucket)),new FluidStack(LiquidRegistry.lightChocolateMilkFluid, 40), 1200, new Residue(new ItemStack(Items.bucket), 1.0F)));

    ^

    symbol: variable CellarRegistry

    location: class MainRegistry

    C:\Users\Jordan\Desktop\chocolate mod 1.7.10\build\sources\java\com\chocolatemod\main\MainRegistry.java:205: error: cannot find symbol

    CellarRegistry.instance().brewing().addRecipe(new BrewingRecipe(new FluidStack(LiquidRegistry.lightChocolateMilkFluid, 40), MultiStacksUtil.toMultiItemStacks(new ItemStack(ItemRegistry.bowlmilk)),new FluidStack(LiquidRegistry.whiteChocolateMilkFluid, 40), 1200, new Residue(new ItemStack(Items.bowl), 1.0F)));

    ^

    symbol: class BrewingRecipe

    location: class MainRegistry

    C:\Users\Jordan\Desktop\chocolate mod 1.7.10\build\sources\java\com\chocolatemod\main\MainRegistry.java:205: error: cannot find symbol

    CellarRegistry.instance().brewing().addRecipe(new BrewingRecipe(new FluidStack(LiquidRegistry.lightChocolateMilkFluid, 40), MultiStacksUtil.toMultiItemStacks(new ItemStack(ItemRegistry.bowlmilk)),new FluidStack(LiquidRegistry.whiteChocolateMilkFluid, 40), 1200, new Residue(new ItemStack(Items.bowl), 1.0F)));

    ^

    symbol: variable MultiStacksUtil

    location: class MainRegistry

    C:\Users\Jordan\Desktop\chocolate mod 1.7.10\build\sources\java\com\chocolatemod\main\MainRegistry.java:205: error: cannot find symbol

    CellarRegistry.instance().brewing().addRecipe(new BrewingRecipe(new FluidStack(LiquidRegistry.lightChocolateMilkFluid, 40), MultiStacksUtil.toMultiItemStacks(new ItemStack(ItemRegistry.bowlmilk)),new FluidStack(LiquidRegistry.whiteChocolateMilkFluid, 40), 1200, new Residue(new ItemStack(Items.bowl), 1.0F)));

    ^

    symbol: class Residue

    location: class MainRegistry

    C:\Users\Jordan\Desktop\chocolate mod 1.7.10\build\sources\java\com\chocolatemod\main\MainRegistry.java:205: error: cannot find symbol

    CellarRegistry.instance().brewing().addRecipe(new BrewingRecipe(new FluidStack(LiquidRegistry.lightChocolateMilkFluid, 40), MultiStacksUtil.toMultiItemStacks(new ItemStack(ItemRegistry.bowlmilk)),new FluidStack(LiquidRegistry.whiteChocolateMilkFluid, 40), 1200, new Residue(new ItemStack(Items.bowl), 1.0F)));

    ^

    symbol: variable CellarRegistry

    location: class MainRegistry

    C:\Users\Jordan\Desktop\chocolate mod 1.7.10\build\sources\java\com\chocolatemod\main\MainRegistry.java:206: error: cannot find symbol

    CellarRegistry.instance().brewing().addRecipe(new BrewingRecipe(new FluidStack(LiquidRegistry.lightChocolateMilkFluid, 40), MultiStacksUtil.toMultiItemStacks(new ItemStack(Items.milk_bucket)),new FluidStack(LiquidRegistry.whiteChocolateMilkFluid, 40), 1200, new Residue(new ItemStack(Items.bucket), 1.0F)));

    ^

    symbol: class BrewingRecipe

    location: class MainRegistry

    C:\Users\Jordan\Desktop\chocolate mod 1.7.10\build\sources\java\com\chocolatemod\main\MainRegistry.java:206: error: cannot find symbol

    CellarRegistry.instance().brewing().addRecipe(new BrewingRecipe(new FluidStack(LiquidRegistry.lightChocolateMilkFluid, 40), MultiStacksUtil.toMultiItemStacks(new ItemStack(Items.milk_bucket)),new FluidStack(LiquidRegistry.whiteChocolateMilkFluid, 40), 1200, new Residue(new ItemStack(Items.bucket), 1.0F)));

    ^

    symbol: variable MultiStacksUtil

    location: class MainRegistry

    C:\Users\Jordan\Desktop\chocolate mod 1.7.10\build\sources\java\com\chocolatemod\main\MainRegistry.java:206: error: cannot find symbol

    CellarRegistry.instance().brewing().addRecipe(new BrewingRecipe(new FluidStack(LiquidRegistry.lightChocolateMilkFluid, 40), MultiStacksUtil.toMultiItemStacks(new ItemStack(Items.milk_bucket)),new FluidStack(LiquidRegistry.whiteChocolateMilkFluid, 40), 1200, new Residue(new ItemStack(Items.bucket), 1.0F)));

    ^

    symbol: class Residue

    location: class MainRegistry

    C:\Users\Jordan\Desktop\chocolate mod 1.7.10\build\sources\java\com\chocolatemod\main\MainRegistry.java:206: error: cannot find symbol

    CellarRegistry.instance().brewing().addRecipe(new BrewingRecipe(new FluidStack(LiquidRegistry.lightChocolateMilkFluid, 40), MultiStacksUtil.toMultiItemStacks(new ItemStack(Items.milk_bucket)),new FluidStack(LiquidRegistry.whiteChocolateMilkFluid, 40), 1200, new Residue(new ItemStack(Items.bucket), 1.0F)));

    ^

    symbol: variable CellarRegistry

    location: class MainRegistry

    C:\Users\Jordan\Desktop\chocolate mod 1.7.10\build\sources\java\com\chocolatemod\main\MainRegistry.java:207: error: cannot find symbol

    CellarRegistry.instance().brewing().addRecipe(new BrewingRecipe(new FluidStack(LiquidRegistry.whiteChocolateMilkFluid, 40), MultiStacksUtil.toMultiItemStacks(new ItemStack(ItemRegistry.bowlmilk)),FluidRegistry.getFluidStack("grc.milk", 40), 1200, new Residue(new ItemStack(Items.bowl), 1.0F)));

    ^

    symbol: class BrewingRecipe

    location: class MainRegistry

    C:\Users\Jordan\Desktop\chocolate mod 1.7.10\build\sources\java\com\chocolatemod\main\MainRegistry.java:207: error: cannot find symbol

    CellarRegistry.instance().brewing().addRecipe(new BrewingRecipe(new FluidStack(LiquidRegistry.whiteChocolateMilkFluid, 40), MultiStacksUtil.toMultiItemStacks(new ItemStack(ItemRegistry.bowlmilk)),FluidRegistry.getFluidStack("grc.milk", 40), 1200, new Residue(new ItemStack(Items.bowl), 1.0F)));

    ^

    symbol: variable MultiStacksUtil

    location: class MainRegistry

    C:\Users\Jordan\Desktop\chocolate mod 1.7.10\build\sources\java\com\chocolatemod\main\MainRegistry.java:207: error: cannot find symbol

    CellarRegistry.instance().brewing().addRecipe(new BrewingRecipe(new FluidStack(LiquidRegistry.whiteChocolateMilkFluid, 40), MultiStacksUtil.toMultiItemStacks(new ItemStack(ItemRegistry.bowlmilk)),FluidRegistry.getFluidStack("grc.milk", 40), 1200, new Residue(new ItemStack(Items.bowl), 1.0F)));

    ^

    symbol: class Residue

    location: class MainRegistry

    C:\Users\Jordan\Desktop\chocolate mod 1.7.10\build\sources\java\com\chocolatemod\main\MainRegistry.java:207: error: cannot find symbol

    CellarRegistry.instance().brewing().addRecipe(new BrewingRecipe(new FluidStack(LiquidRegistry.whiteChocolateMilkFluid, 40), MultiStacksUtil.toMultiItemStacks(new ItemStack(ItemRegistry.bowlmilk)),FluidRegistry.getFluidStack("grc.milk", 40), 1200, new Residue(new ItemStack(Items.bowl), 1.0F)));

    ^

    symbol: variable CellarRegistry

    location: class MainRegistry

    C:\Users\Jordan\Desktop\chocolate mod 1.7.10\build\sources\java\com\chocolatemod\main\MainRegistry.java:208: error: cannot find symbol

    CellarRegistry.instance().brewing().addRecipe(new BrewingRecipe(new FluidStack(LiquidRegistry.whiteChocolateMilkFluid, 40), MultiStacksUtil.toMultiItemStacks(new ItemStack(Items.milk_bucket)),FluidRegistry.getFluidStack("grc.milk", 40), 1200, new Residue(new ItemStack(Items.bucket), 1.0F)));

    ^

    symbol: class BrewingRecipe

    location: class MainRegistry

    C:\Users\Jordan\Desktop\chocolate mod 1.7.10\build\sources\java\com\chocolatemod\main\MainRegistry.java:208: error: cannot find symbol

    CellarRegistry.instance().brewing().addRecipe(new BrewingRecipe(new FluidStack(LiquidRegistry.whiteChocolateMilkFluid, 40), MultiStacksUtil.toMultiItemStacks(new ItemStack(Items.milk_bucket)),FluidRegistry.getFluidStack("grc.milk", 40), 1200, new Residue(new ItemStack(Items.bucket), 1.0F)));

    ^

    symbol: variable MultiStacksUtil

    location: class MainRegistry

    C:\Users\Jordan\Desktop\chocolate mod 1.7.10\build\sources\java\com\chocolatemod\main\MainRegistry.java:208: error: cannot find symbol

    CellarRegistry.instance().brewing().addRecipe(new BrewingRecipe(new FluidStack(LiquidRegistry.whiteChocolateMilkFluid, 40), MultiStacksUtil.toMultiItemStacks(new ItemStack(Items.milk_bucket)),FluidRegistry.getFluidStack("grc.milk", 40), 1200, new Residue(new ItemStack(Items.bucket), 1.0F)));

    ^

    symbol: class Residue

    location: class MainRegistry

    C:\Users\Jordan\Desktop\chocolate mod 1.7.10\build\sources\java\com\chocolatemod\main\MainRegistry.java:208: error: cannot find symbol

    CellarRegistry.instance().brewing().addRecipe(new BrewingRecipe(new FluidStack(LiquidRegistry.whiteChocolateMilkFluid, 40), MultiStacksUtil.toMultiItemStacks(new ItemStack(Items.milk_bucket)),FluidRegistry.getFluidStack("grc.milk", 40), 1200, new Residue(new ItemStack(Items.bucket), 1.0F)));

    ^

    symbol: variable CellarRegistry

    location: class MainRegistry

    Note: Some input files use or override a deprecated API.

    Note: Recompile with -Xlint:deprecation for details.

    Note: Some input files use unchecked or unsafe operations.

    Note: Recompile with -Xlint:unchecked for details.

    49 errors

    1 warning

    :compileJava FAILED

    FAILURE: Build failed with an exception.

    * What went wrong:

    Execution failed for task ':compileJava'.

    > Compilation failed; see the compiler error output for details.

    * Try:

    Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output.

    BUILD FAILED

    Total time: 13.71 secs

    C:\Users\Jordan\Desktop\chocolate mod 1.7.10>

     

     

    MainRegistry Class

     

    public static boolean Growthcraft;

    Growthcraft = Loader.isModLoaded("Growthcraft");

     

    if(Growthcraft){

    CellarRegistry.instance().brewing().addRecipe(new BrewingRecipe(FluidRegistry.getFluidStack("grc.milk", 40), MultiStacksUtil.toMultiItemStacks(new ItemStack(ItemRegistry.CocoaPowder)),new FluidStack(LiquidRegistry.whiteChocolateMilkFluid, 40), 1200, null));

    CellarRegistry.instance().brewing().addRecipe(new BrewingRecipe(new FluidStack(LiquidRegistry.whiteChocolateMilkFluid, 40), MultiStacksUtil.toMultiItemStacks(new ItemStack(ItemRegistry.CocoaPowder)),new FluidStack(LiquidRegistry.lightChocolateMilkFluid, 40), 1200, null));

    CellarRegistry.instance().brewing().addRecipe(new BrewingRecipe(new FluidStack(LiquidRegistry.lightChocolateMilkFluid, 40), MultiStacksUtil.toMultiItemStacks(new ItemStack(ItemRegistry.CocoaPowder)),new FluidStack(LiquidRegistry.chocolateMilkFluid, 40), 1200, null));

    CellarRegistry.instance().brewing().addRecipe(new BrewingRecipe(new FluidStack(LiquidRegistry.chocolateMilkFluid, 40), MultiStacksUtil.toMultiItemStacks(new ItemStack(ItemRegistry.CocoaPowder)),new FluidStack(LiquidRegistry.darkChocolateMilkFluid, 40), 1200, null));

    CellarRegistry.instance().brewing().addRecipe(new BrewingRecipe(new FluidStack(LiquidRegistry.darkChocolateMilkFluid, 40), MultiStacksUtil.toMultiItemStacks(new ItemStack(ItemRegistry.bowlmilk)),new FluidStack(LiquidRegistry.chocolateMilkFluid, 40), 1200, new Residue(new ItemStack(Items.bowl), 1.0F)));

    CellarRegistry.instance().brewing().addRecipe(new BrewingRecipe(new FluidStack(LiquidRegistry.darkChocolateMilkFluid, 40), MultiStacksUtil.toMultiItemStacks(new ItemStack(Items.milk_bucket)),new FluidStack(LiquidRegistry.chocolateMilkFluid, 40), 1200, new Residue(new ItemStack(Items.bucket), 1.0F)));

    CellarRegistry.instance().brewing().addRecipe(new BrewingRecipe(new FluidStack(LiquidRegistry.chocolateMilkFluid, 40), MultiStacksUtil.toMultiItemStacks(new ItemStack(ItemRegistry.bowlmilk)),new FluidStack(LiquidRegistry.lightChocolateMilkFluid, 40), 1200, new Residue(new ItemStack(Items.bowl), 1.0F)));

    CellarRegistry.instance().brewing().addRecipe(new BrewingRecipe(new FluidStack(LiquidRegistry.chocolateMilkFluid, 40), MultiStacksUtil.toMultiItemStacks(new ItemStack(Items.milk_bucket)),new FluidStack(LiquidRegistry.lightChocolateMilkFluid, 40), 1200, new Residue(new ItemStack(Items.bucket), 1.0F)));

    CellarRegistry.instance().brewing().addRecipe(new BrewingRecipe(new FluidStack(LiquidRegistry.lightChocolateMilkFluid, 40), MultiStacksUtil.toMultiItemStacks(new ItemStack(ItemRegistry.bowlmilk)),new FluidStack(LiquidRegistry.whiteChocolateMilkFluid, 40), 1200, new Residue(new ItemStack(Items.bowl), 1.0F)));

    CellarRegistry.instance().brewing().addRecipe(new BrewingRecipe(new FluidStack(LiquidRegistry.lightChocolateMilkFluid, 40), MultiStacksUtil.toMultiItemStacks(new ItemStack(Items.milk_bucket)),new FluidStack(LiquidRegistry.whiteChocolateMilkFluid, 40), 1200, new Residue(new ItemStack(Items.bucket), 1.0F)));

    CellarRegistry.instance().brewing().addRecipe(new BrewingRecipe(new FluidStack(LiquidRegistry.whiteChocolateMilkFluid, 40), MultiStacksUtil.toMultiItemStacks(new ItemStack(ItemRegistry.bowlmilk)),FluidRegistry.getFluidStack("grc.milk", 40), 1200, new Residue(new ItemStack(Items.bowl), 1.0F)));

    CellarRegistry.instance().brewing().addRecipe(new BrewingRecipe(new FluidStack(LiquidRegistry.whiteChocolateMilkFluid, 40), MultiStacksUtil.toMultiItemStacks(new ItemStack(Items.milk_bucket)),FluidRegistry.getFluidStack("grc.milk", 40), 1200, new Residue(new ItemStack(Items.bucket), 1.0F)));

    }

     

  12. Thanks for the tutorial, its really helped me understand 1.8. :)

     

    Although my question is the index color, what do we do if we don't have or don't want an index color? because when I delete that portion it freaks out and creates a method. But on the other hand, it asking for me to give it a variable, but I don't have a variable to give it.

  13.  

    ModelBakery.addVariantName(yourItem, new String[]{"different", "variant", "namesOfModelFiles"});
    

     

    Im not the smartest, so im just trying to clarify something. but for this part of the code you input your .json file locations, correct? So you might replace "different" with "ModID:Cobblestone.json" and "variant" with "ModID:Cobblestone_mossy.json". I just want to make sure so im not missing anything.

  14. Im sorry for being a noob. but i still dont understand 1.8 one bit (1.7 was simple compared to 1.8 for me) i mean, i have my metadata block made, but it wont render the texture. please help me. :(

     

     

     

    package com.stonemod.Main;

     

    import net.minecraft.block.Block;

    import net.minecraft.block.material.Material;

    import net.minecraft.client.Minecraft;

    import net.minecraft.client.resources.model.ModelBakery;

    import net.minecraft.client.resources.model.ModelResourceLocation;

    import net.minecraft.item.Item;

    import net.minecraftforge.fml.common.Mod;

    import net.minecraftforge.fml.common.Mod.EventHandler;

    import net.minecraftforge.fml.common.event.FMLInitializationEvent;

    import net.minecraftforge.fml.common.registry.GameRegistry;

     

    @Mod(modid = MainRegistry.MODID, version = MainRegistry.VERSION)

    public class MainRegistry

    {

        public static final String MODID = "stonemod";

        public static final String VERSION = "1.0";

       

       

        public static Block Andesite;

        public static Block Diorite;

        public static Block Granite;

       

        @EventHandler

        public void init(FMLInitializationEvent event)

        {

    Andesite = new BlockAndesite(Material.rock).setHardness(1.5F).setResistance(10.0F).setStepSound(Block.soundTypePiston).setUnlocalizedName("andesite");

    GameRegistry.registerBlock(Andesite, "andesite");

    Minecraft.getMinecraft().getRenderItem().getItemModelMesher().register(Andesite, 0, new ModelResourceLocation("stonemod:chiseled_andesite", "inventory"));

    Minecraft.getMinecraft().getRenderItem().getItemModelMesher().register(Andesite, 1, new ModelResourceLocation("stonemod:andesite_column", "inventory"));

    ModelBakery.addVariantName(Andesite, new String[]{"stonemod:chiseled_andesite", "stonemod:andesite_column"});

     

        }

    }

     

  15. Well if you look in the examplemod.class file i've provided you would know that i am indeed registering the fluid and block before the bucket or bucket registry. Because i create, define, and register everything in this order: fluid, fluid block, fluid container (bucket).

  16. Ok, so i wanted to see if it was possible to make a fluid in 1.7.10 and i used this forge tutorial to create it http://www.minecraftforge.net/wiki/Create_a_Fluid. Now i know the tutorial is for 1.7.2 and im using for 1.7.10, but i dont think thats the problem because i dont thing a whole lot has changed between the two. Now, my fluid works well, and im able to pick it up in a bucket. But the problem lies with placing the fluid from the bucket, im still able to place it from its "block" form but not from its "item/bucket" form. Here is my code and my crash report, usually i can understand what the crash report is saying if it errored at the forge code but this is erroring at mojang's code so im not sure what to do and thats why im posting here. I would really appreciate the help, sincerelly killerjdog51.

     

    ExampleMod.class

     

    package com.example.examplemod;

     

    import net.minecraft.block.Block;

    import net.minecraft.block.material.Material;

    import net.minecraft.creativetab.CreativeTabs;

    import net.minecraft.init.Blocks;

    import net.minecraft.init.Items;

    import net.minecraft.item.Item;

    import net.minecraft.item.ItemStack;

    import net.minecraftforge.common.MinecraftForge;

    import net.minecraftforge.fluids.Fluid;

    import net.minecraftforge.fluids.FluidContainerRegistry;

    import net.minecraftforge.fluids.FluidRegistry;

    import cpw.mods.fml.client.registry.RenderingRegistry;

    import cpw.mods.fml.common.Mod;

    import cpw.mods.fml.common.Mod.EventHandler;

    import cpw.mods.fml.common.event.FMLInitializationEvent;

    import cpw.mods.fml.common.registry.GameRegistry;

     

    @Mod(modid = ExampleMod.MODID, version = ExampleMod.VERSION)

    public class ExampleMod

    {

        public static final String MODID = "liquids";

        public static final String VERSION = "1.0";

       

        public Fluid yourFluid = new Fluid("fluidname");

        public static Block yourFluidBlock;

        public Item yourBucket = new ItemYourBucket(yourFluidBlock);

     

        @EventHandler

        public void init(FMLInitializationEvent event)

        {

        FluidRegistry.registerFluid(yourFluid);

            yourFluidBlock = new BlockYourFluid(yourFluid, Material.water).setBlockName("yourFluid");

            GameRegistry.registerBlock(yourFluidBlock, MODID + "_" + yourFluidBlock.getUnlocalizedName().substring(5));

            yourFluid.setUnlocalizedName(yourFluidBlock.getUnlocalizedName());

           

            yourBucket .setUnlocalizedName("yourBucket").setContainerItem(Items.bucket);

            GameRegistry.registerItem(yourBucket, "yourBucket");

            FluidContainerRegistry.registerFluidContainer(yourFluid, new ItemStack(yourBucket), new ItemStack(Items.bucket));

           

            BucketHandler.INSTANCE.buckets.put(yourFluidBlock, yourBucket);

            MinecraftForge.EVENT_BUS.register(BucketHandler.INSTANCE);

        }

    }

     

     

     

    BlockYourFluid

     

    package com.example.examplemod;

     

    import cpw.mods.fml.relauncher.Side;

    import cpw.mods.fml.relauncher.SideOnly;

    import net.minecraft.block.material.Material;

    import net.minecraft.client.renderer.texture.IIconRegister;

    import net.minecraft.creativetab.CreativeTabs;

    import net.minecraft.util.IIcon;

    import net.minecraft.world.IBlockAccess;

    import net.minecraft.world.World;

    import net.minecraftforge.fluids.BlockFluidClassic;

    import net.minecraftforge.fluids.Fluid;

     

    public class BlockYourFluid extends BlockFluidClassic {

     

            @SideOnly(Side.CLIENT)

            protected IIcon stillIcon;

            @SideOnly(Side.CLIENT)

            protected IIcon flowingIcon;

           

            public BlockYourFluid(Fluid fluid, Material material) {

                    super(fluid, material);

                    setCreativeTab(CreativeTabs.tabMisc);

            }

           

            @Override

            public IIcon getIcon(int side, int meta) {

                    return (side == 0 || side == 1)? stillIcon : flowingIcon;

            }

           

            @SideOnly(Side.CLIENT)

            @Override

            public void registerBlockIcons(IIconRegister register) {

                    stillIcon = register.registerIcon("modid:fluidStill");

                    flowingIcon = register.registerIcon("modid:fluidFlowing");

            }

           

            @Override

            public boolean canDisplace(IBlockAccess world, int x, int y, int z) {

                    if (world.getBlock(x,  y,  z).getMaterial().isLiquid()) return false;

                    return super.canDisplace(world, x, y, z);

            }

           

            @Override

            public boolean displaceIfPossible(World world, int x, int y, int z) {

                    if (world.getBlock(x,  y,  z).getMaterial().isLiquid()) return false;

                    return super.displaceIfPossible(world, x, y, z);

            }

           

    }

     

     

    ItemYourBucket

     

    package com.example.examplemod;

     

    import net.minecraft.block.Block;

    import net.minecraft.init.Items;

    import net.minecraft.item.Item;

    import net.minecraft.item.ItemBucket;

     

    public class ItemYourBucket extends ItemBucket {

     

    public ItemYourBucket(Block p_i45331_1_) {

    super(ExampleMod.yourFluidBlock);

            this.setContainerItem(Items.bucket);

            this.maxStackSize = 1;

    }

     

    }

     

     

     

    BucketHandler

     

    /**

    * Copyright © SpaceToad, 2011 http://www.mod-buildcraft.com

    *

    * BuildCraft is distributed under the terms of the Minecraft Mod Public License

    * 1.0, or MMPL. Please check the contents of the license located in

    * http://www.mod-buildcraft.com/MMPL-1.0.txt

    */

    package com.example.examplemod;

     

    import java.util.HashMap;

    import java.util.Map;

     

    import cpw.mods.fml.common.eventhandler.Event.Result;

    import cpw.mods.fml.common.eventhandler.SubscribeEvent;

    import net.minecraft.block.Block;

    import net.minecraft.item.Item;

    import net.minecraft.item.ItemStack;

    import net.minecraft.util.MovingObjectPosition;

    import net.minecraft.world.World;

    import net.minecraftforge.event.entity.player.FillBucketEvent;

     

    public class BucketHandler {

     

            public static BucketHandler INSTANCE = new BucketHandler();

            public Map<Block, Item> buckets = new HashMap<Block, Item>();

     

            private BucketHandler() {

            }

     

            @SubscribeEvent

            public void onBucketFill(FillBucketEvent event) {

     

                    ItemStack result = fillCustomBucket(event.world, event.target);

     

                    if (result == null)

                            return;

     

                    event.result = result;

                    event.setResult(Result.ALLOW);

            }

     

            private ItemStack fillCustomBucket(World world, MovingObjectPosition pos) {

     

                    Block block = world.getBlock(pos.blockX, pos.blockY, pos.blockZ);

     

                    Item bucket = buckets.get(block);

                    if (bucket != null && world.getBlockMetadata(pos.blockX, pos.blockY, pos.blockZ) == 0) {

                            world.setBlockToAir(pos.blockX, pos.blockY, pos.blockZ);

                            return new ItemStack(bucket);

                    } else

                            return null;

     

            }

    }

     

     

    Crash Report

     

    ---- Minecraft Crash Report ----

    // Don't do that.

     

    Time: 3/20/15 8:48 AM

    Description: Unexpected error

     

    java.lang.NullPointerException: Unexpected error

    at net.minecraft.world.chunk.storage.ExtendedBlockStorage.func_150818_a(ExtendedBlockStorage.java:86)

    at net.minecraft.world.chunk.Chunk.func_150807_a(Chunk.java:653)

    at net.minecraft.world.World.setBlock(World.java:511)

    at net.minecraft.item.ItemBucket.tryPlaceContainedLiquid(ItemBucket.java:210)

    at net.minecraft.item.ItemBucket.onItemRightClick(ItemBucket.java:142)

    at net.minecraft.item.ItemStack.useItemRightClick(ItemStack.java:161)

    at net.minecraft.client.multiplayer.PlayerControllerMP.sendUseItem(PlayerControllerMP.java:430)

    at net.minecraft.client.Minecraft.func_147121_ag(Minecraft.java:1514)

    at net.minecraft.client.Minecraft.runTick(Minecraft.java:1999)

    at net.minecraft.client.Minecraft.runGameLoop(Minecraft.java:984)

    at net.minecraft.client.Minecraft.run(Minecraft.java:900)

    at net.minecraft.client.main.Main.main(Main.java:112)

    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

    at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)

    at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)

    at java.lang.reflect.Method.invoke(Unknown Source)

    at net.minecraft.launchwrapper.Launch.launch(Launch.java:134)

    at net.minecraft.launchwrapper.Launch.main(Launch.java:28)

     

     

    A detailed walkthrough of the error, its code path and all known details is as follows:

    ---------------------------------------------------------------------------------------

     

    -- Head --

    Stacktrace:

    at net.minecraft.world.chunk.storage.ExtendedBlockStorage.func_150818_a(ExtendedBlockStorage.java:86)

    at net.minecraft.world.chunk.Chunk.func_150807_a(Chunk.java:653)

    at net.minecraft.world.World.setBlock(World.java:511)

    at net.minecraft.item.ItemBucket.tryPlaceContainedLiquid(ItemBucket.java:210)

    at net.minecraft.item.ItemBucket.onItemRightClick(ItemBucket.java:142)

    at net.minecraft.item.ItemStack.useItemRightClick(ItemStack.java:161)

    at net.minecraft.client.multiplayer.PlayerControllerMP.sendUseItem(PlayerControllerMP.java:430)

    at net.minecraft.client.Minecraft.func_147121_ag(Minecraft.java:1514)

     

    -- Affected level --

    Details:

    Level name: MpServer

    All players: 1 total; [EntityClientPlayerMP['Player990'/295, l='MpServer', x=185.80, y=73.62, z=255.31]]

    Chunk stats: MultiplayerChunkCache: 225, 225

    Level seed: 0

    Level generator: ID 00 - default, ver 1. Features enabled: false

    Level generator options:

    Level spawn location: World: (188,64,248), Chunk: (at 12,4,8 in 11,15; contains blocks 176,0,240 to 191,255,255), Region: (0,0; contains chunks 0,0 to 31,31, blocks 0,0,0 to 511,255,511)

    Level time: 1530 game time, 1530 day time

    Level dimension: 0

    Level storage version: 0x00000 - Unknown?

    Level weather: Rain time: 0 (now: false), thunder time: 0 (now: false)

    Level game mode: Game mode: survival (ID 0). Hardcore: false. Cheats: false

    Forced entities: 71 total; [EntityZombie['Zombie'/137, l='MpServer', x=217.72, y=25.00, z=198.16], EntityZombie['Zombie'/136, l='MpServer', x=219.53, y=24.00, z=197.03], EntityPig['Pig'/139, l='MpServer', x=215.22, y=69.00, z=253.94], EntityPig['Pig'/138, l='MpServer', x=215.78, y=70.00, z=212.50], EntityPig['Pig'/141, l='MpServer', x=217.09, y=70.00, z=244.78], EntityPig['Pig'/140, l='MpServer', x=219.13, y=70.00, z=251.03], EntityCreeper['Creeper'/143, l='MpServer', x=221.59, y=15.00, z=319.00], EntityPig['Pig'/142, l='MpServer', x=214.38, y=70.00, z=256.19], EntityBat['Bat'/135, l='MpServer', x=223.51, y=42.00, z=184.51], EntityZombie['Zombie'/134, l='MpServer', x=220.97, y=24.00, z=190.25], EntityZombie['Zombie'/144, l='MpServer', x=227.38, y=11.39, z=314.13], EntityZombie['Zombie'/171, l='MpServer', x=227.44, y=23.00, z=264.06], EntityWitch['Witch'/170, l='MpServer', x=237.06, y=23.00, z=270.56], EntityEnderman['Enderman'/169, l='MpServer', x=235.56, y=23.00, z=266.03], EntitySkeleton['Skeleton'/168, l='MpServer', x=228.50, y=27.00, z=238.50], EntityItem['item.item.seeds'/175, l='MpServer', x=235.88, y=66.13, z=300.63], EntitySkeleton['Skeleton'/174, l='MpServer', x=232.44, y=30.00, z=282.06], EntitySkeleton['Skeleton'/173, l='MpServer', x=231.50, y=30.00, z=278.50], EntitySkeleton['Skeleton'/172, l='MpServer', x=229.50, y=31.00, z=277.88], EntityBat['Bat'/166, l='MpServer', x=235.08, y=55.28, z=184.34], EntitySpider['Spider'/164, l='MpServer', x=229.13, y=42.00, z=177.28], EntityCreeper['Creeper'/186, l='MpServer', x=254.41, y=12.00, z=196.00], EntitySkeleton['Skeleton'/187, l='MpServer', x=258.34, y=24.00, z=232.78], EntityZombie['Zombie'/185, l='MpServer', x=241.88, y=55.00, z=191.47], EntitySkeleton['Skeleton'/190, l='MpServer', x=249.31, y=27.00, z=232.25], EntitySkeleton['Skeleton'/191, l='MpServer', x=254.13, y=26.00, z=237.63], EntitySkeleton['Skeleton'/188, l='MpServer', x=251.50, y=27.00, z=231.50], EntitySkeleton['Skeleton'/189, l='MpServer', x=243.13, y=27.00, z=232.03], EntityClientPlayerMP['Player990'/295, l='MpServer', x=185.80, y=73.62, z=255.31], EntityZombie['Zombie'/178, l='MpServer', x=234.50, y=17.00, z=312.50], EntitySkeleton['Skeleton'/176, l='MpServer', x=224.56, y=14.00, z=308.56], EntitySkeleton['Skeleton'/177, l='MpServer', x=228.56, y=11.00, z=313.16], EntitySkeleton['Skeleton'/68, l='MpServer', x=109.13, y=36.00, z=180.53], EntitySkeleton['Skeleton'/69, l='MpServer', x=107.31, y=35.00, z=179.44], EntityEnderman['Enderman'/204, l='MpServer', x=261.84, y=12.00, z=193.31], EntityBat['Bat'/71, l='MpServer', x=111.75, y=29.10, z=200.44], EntityCreeper['Creeper'/203, l='MpServer', x=258.09, y=12.00, z=193.47], EntitySkeleton['Skeleton'/197, l='MpServer', x=251.50, y=28.00, z=299.47], EntityCreeper['Creeper'/77, l='MpServer', x=123.38, y=44.00, z=201.13], EntitySkeleton['Skeleton'/196, l='MpServer', x=255.50, y=29.00, z=302.50], EntityCreeper['Creeper'/78, l='MpServer', x=126.41, y=44.00, z=200.00], EntityEnderman['Enderman'/79, l='MpServer', x=118.75, y=21.00, z=212.34], EntityBat['Bat'/193, l='MpServer', x=247.16, y=27.41, z=251.06], EntitySkeleton['Skeleton'/192, l='MpServer', x=251.50, y=27.00, z=237.50], EntityWitch['Witch'/195, l='MpServer', x=248.30, y=11.16, z=282.30], EntityBat['Bat'/194, l='MpServer', x=253.53, y=27.90, z=256.25], EntityCreeper['Creeper'/85, l='MpServer', x=137.50, y=46.00, z=179.50], EntityBat['Bat'/87, l='MpServer', x=141.58, y=41.84, z=176.16], EntityZombie['Zombie'/86, l='MpServer', x=125.97, y=46.00, z=176.50], EntityBat['Bat'/81, l='MpServer', x=119.14, y=19.00, z=255.52], EntityCreeper['Creeper'/216, l='MpServer', x=258.47, y=19.00, z=332.03], EntityBat['Bat'/80, l='MpServer', x=122.08, y=20.76, z=254.02], EntityBat['Bat'/82, l='MpServer', x=124.09, y=22.10, z=256.47], EntityCreeper['Creeper'/212, l='MpServer', x=264.34, y=41.00, z=286.97], EntityCreeper['Creeper'/92, l='MpServer', x=140.50, y=14.00, z=274.50], EntityCow['Cow'/208, l='MpServer', x=262.84, y=68.00, z=210.81], EntityZombie['Zombie'/89, l='MpServer', x=128.50, y=44.00, z=202.50], EntitySkeleton['Skeleton'/209, l='MpServer', x=261.03, y=14.00, z=224.47], EntityCreeper['Creeper'/88, l='MpServer', x=130.38, y=44.00, z=207.00], EntityBat['Bat'/91, l='MpServer', x=135.88, y=20.00, z=257.34], EntityCreeper['Creeper'/211, l='MpServer', x=260.56, y=23.00, z=253.34], EntityCreeper['Creeper'/90, l='MpServer', x=145.69, y=30.00, z=241.78], EntityBat['Bat'/103, l='MpServer', x=167.38, y=22.17, z=232.23], EntitySkeleton['Skeleton'/98, l='MpServer', x=145.50, y=52.00, z=237.50], EntitySkeleton['Skeleton'/97, l='MpServer', x=144.50, y=31.00, z=238.50], EntitySkeleton['Skeleton'/104, l='MpServer', x=171.44, y=43.00, z=312.94], EntityZombie['Zombie'/118, l='MpServer', x=205.06, y=48.00, z=294.50], EntityZombie['Zombie'/117, l='MpServer', x=197.78, y=48.00, z=299.59], EntityPig['Pig'/116, l='MpServer', x=203.25, y=70.00, z=212.38], EntityPig['Pig'/115, l='MpServer', x=197.78, y=70.00, z=215.72], EntityPig['Pig'/114, l='MpServer', x=205.81, y=69.00, z=207.66]]

    Retry entities: 0 total; []

    Server brand: fml,forge

    Server type: Integrated singleplayer server

    Stacktrace:

    at net.minecraft.client.multiplayer.WorldClient.addWorldInfoToCrashReport(WorldClient.java:410)

    at net.minecraft.client.Minecraft.addGraphicsAndWorldToCrashReport(Minecraft.java:2509)

    at net.minecraft.client.Minecraft.run(Minecraft.java:929)

    at net.minecraft.client.main.Main.main(Main.java:112)

    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

    at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)

    at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)

    at java.lang.reflect.Method.invoke(Unknown Source)

    at net.minecraft.launchwrapper.Launch.launch(Launch.java:134)

    at net.minecraft.launchwrapper.Launch.main(Launch.java:28)

     

    -- System Details --

    Details:

    Minecraft Version: 1.7.2

    Operating System: Windows 8.1 (amd64) version 6.3

    Java Version: 1.7.0_75, Oracle Corporation

    Java VM Version: Java HotSpot 64-Bit Server VM (mixed mode), Oracle Corporation

    Memory: 669112504 bytes (638 MB) / 1038876672 bytes (990 MB) up to 1038876672 bytes (990 MB)

    JVM Flags: 3 total; -Xincgc -Xmx1024M -Xms1024M

    AABB Pool Size: 11558 (647248 bytes; 0 MB) allocated, 3 (168 bytes; 0 MB) used

    IntCache: cache: 0, tcache: 0, allocated: 12, tallocated: 94

    FML: MCP v9.03 FML v7.2.211.1121 Minecraft Forge 10.12.2.1121 4 mods loaded, 4 mods active

    mcp{9.03} [Minecraft Coder Pack] (minecraft.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available

    FML{7.2.211.1121} [Forge Mod Loader] (forgeSrc-1.7.2-10.12.2.1121.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available

    Forge{10.12.2.1121} [Minecraft Forge] (forgeSrc-1.7.2-10.12.2.1121.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available

    liquids{1.0} [liquids] (bin) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available

    Launched Version: 1.6

    LWJGL: 2.9.0

    OpenGL: Intel® HD Graphics 4400 GL version 4.2.0 - Build 10.18.10.3379, Intel

    Is Modded: Definitely; Client brand changed to 'fml,forge'

    Type: Client (map_client.txt)

    Resource Packs: []

    Current Language: ~~ERROR~~ NullPointerException: null

    Profiler Position: N/A (disabled)

    Vec3 Pool Size: 1077 (60312 bytes; 0 MB) allocated, 34 (1904 bytes; 0 MB) used

    Anisotropic Filtering: Off (1)

     

  17. The title hopefully explains it. Basically my bow works, but then when i implemented a bow renderer for it, it crashed the game when the player holds it in his hand. I was going to test if the renderer worked, apparently it didnt. I dont really know alot about java and sometimes i dont understand it, thats why im trying to learn it as i go along with my mod. I would really appreciate the help, sincerely killerjdog51.

     

    crash report

     

    [18:08:22] [Client thread/WARN] [FML]: ****************************************

    [18:08:22] [Client thread/WARN] [FML]: * Illegal extra prefix Chocolate for name Chocolate:lightchocolateslab_side, invalid registry invocation/invalid name?

    [18:08:22] [Client thread/WARN] [FML]: * at cpw.mods.fml.common.registry.GameData.registerBlock(GameData.java:855)

    [18:08:22] [Client thread/WARN] [FML]: * at cpw.mods.fml.common.registry.GameRegistry.registerBlock(GameRegistry.java:223)

    [18:08:22] [Client thread/WARN] [FML]: * at cpw.mods.fml.common.registry.GameRegistry.registerBlock(GameRegistry.java:182)

    [18:08:22] [Client thread/WARN] [FML]: * at com.chocolatemod.block.BlockRegistry.registerBlock(BlockRegistry.java:399)

    [18:08:22] [Client thread/WARN] [FML]: * at com.chocolatemod.block.BlockRegistry.mainRegistry(BlockRegistry.java:31)

    [18:08:22] [Client thread/WARN] [FML]: * at com.chocolatemod.main.MainRegistry.PreLoad(MainRegistry.java:112)...

    [18:08:22] [Client thread/WARN] [FML]: ****************************************

    [18:08:22] [Client thread/WARN] [FML]: ****************************************

    [18:08:22] [Client thread/WARN] [FML]: * Illegal extra prefix Chocolate for name Chocolate:lightchocolateslab_side, invalid registry invocation/invalid name?

    [18:08:22] [Client thread/WARN] [FML]: * at cpw.mods.fml.common.registry.GameData.registerItem(GameData.java:799)

    [18:08:22] [Client thread/WARN] [FML]: * at cpw.mods.fml.common.registry.GameRegistry.registerBlock(GameRegistry.java:226)

    [18:08:22] [Client thread/WARN] [FML]: * at cpw.mods.fml.common.registry.GameRegistry.registerBlock(GameRegistry.java:182)

    [18:08:22] [Client thread/WARN] [FML]: * at com.chocolatemod.block.BlockRegistry.registerBlock(BlockRegistry.java:399)

    [18:08:22] [Client thread/WARN] [FML]: * at com.chocolatemod.block.BlockRegistry.mainRegistry(BlockRegistry.java:31)

    [18:08:22] [Client thread/WARN] [FML]: * at com.chocolatemod.main.MainRegistry.PreLoad(MainRegistry.java:112)...

    [18:08:22] [Client thread/WARN] [FML]: ****************************************

    [18:08:22] [Client thread/WARN] [FML]: ****************************************

    [18:08:22] [Client thread/WARN] [FML]: * Illegal extra prefix Chocolate for name Chocolate:lightchocolateslab_top, invalid registry invocation/invalid name?

    [18:08:22] [Client thread/WARN] [FML]: * at cpw.mods.fml.common.registry.GameData.registerBlock(GameData.java:855)

    [18:08:22] [Client thread/WARN] [FML]: * at cpw.mods.fml.common.registry.GameRegistry.registerBlock(GameRegistry.java:223)

    [18:08:22] [Client thread/WARN] [FML]: * at cpw.mods.fml.common.registry.GameRegistry.registerBlock(GameRegistry.java:182)

    [18:08:22] [Client thread/WARN] [FML]: * at com.chocolatemod.block.BlockRegistry.registerBlock(BlockRegistry.java:400)

    [18:08:22] [Client thread/WARN] [FML]: * at com.chocolatemod.block.BlockRegistry.mainRegistry(BlockRegistry.java:31)

    [18:08:22] [Client thread/WARN] [FML]: * at com.chocolatemod.main.MainRegistry.PreLoad(MainRegistry.java:112)...

    [18:08:22] [Client thread/WARN] [FML]: ****************************************

    [18:08:22] [Client thread/WARN] [FML]: ****************************************

    [18:08:22] [Client thread/WARN] [FML]: * Illegal extra prefix Chocolate for name Chocolate:lightchocolateslab_top, invalid registry invocation/invalid name?

    [18:08:22] [Client thread/WARN] [FML]: * at cpw.mods.fml.common.registry.GameData.registerItem(GameData.java:799)

    [18:08:22] [Client thread/WARN] [FML]: * at cpw.mods.fml.common.registry.GameRegistry.registerBlock(GameRegistry.java:226)

    [18:08:22] [Client thread/WARN] [FML]: * at cpw.mods.fml.common.registry.GameRegistry.registerBlock(GameRegistry.java:182)

    [18:08:22] [Client thread/WARN] [FML]: * at com.chocolatemod.block.BlockRegistry.registerBlock(BlockRegistry.java:400)

    [18:08:22] [Client thread/WARN] [FML]: * at com.chocolatemod.block.BlockRegistry.mainRegistry(BlockRegistry.java:31)

    [18:08:22] [Client thread/WARN] [FML]: * at com.chocolatemod.main.MainRegistry.PreLoad(MainRegistry.java:112)...

    [18:08:22] [Client thread/WARN] [FML]: ****************************************

    [18:08:22] [Client thread/WARN] [FML]: ****************************************

    [18:08:22] [Client thread/WARN] [FML]: * Illegal extra prefix Chocolate for name Chocolate:whitechocolateslab_side, invalid registry invocation/invalid name?

    [18:08:22] [Client thread/WARN] [FML]: * at cpw.mods.fml.common.registry.GameData.registerBlock(GameData.java:855)

    [18:08:22] [Client thread/WARN] [FML]: * at cpw.mods.fml.common.registry.GameRegistry.registerBlock(GameRegistry.java:223)

    [18:08:22] [Client thread/WARN] [FML]: * at cpw.mods.fml.common.registry.GameRegistry.registerBlock(GameRegistry.java:182)

    [18:08:22] [Client thread/WARN] [FML]: * at com.chocolatemod.block.BlockRegistry.registerBlock(BlockRegistry.java:401)

    [18:08:22] [Client thread/WARN] [FML]: * at com.chocolatemod.block.BlockRegistry.mainRegistry(BlockRegistry.java:31)

    [18:08:22] [Client thread/WARN] [FML]: * at com.chocolatemod.main.MainRegistry.PreLoad(MainRegistry.java:112)...

    [18:08:22] [Client thread/WARN] [FML]: ****************************************

    [18:08:22] [Client thread/WARN] [FML]: ****************************************

    [18:08:22] [Client thread/WARN] [FML]: * Illegal extra prefix Chocolate for name Chocolate:whitechocolateslab_side, invalid registry invocation/invalid name?

    [18:08:22] [Client thread/WARN] [FML]: * at cpw.mods.fml.common.registry.GameData.registerItem(GameData.java:799)

    [18:08:22] [Client thread/WARN] [FML]: * at cpw.mods.fml.common.registry.GameRegistry.registerBlock(GameRegistry.java:226)

    [18:08:22] [Client thread/WARN] [FML]: * at cpw.mods.fml.common.registry.GameRegistry.registerBlock(GameRegistry.java:182)

    [18:08:22] [Client thread/WARN] [FML]: * at com.chocolatemod.block.BlockRegistry.registerBlock(BlockRegistry.java:401)

    [18:08:22] [Client thread/WARN] [FML]: * at com.chocolatemod.block.BlockRegistry.mainRegistry(BlockRegistry.java:31)

    [18:08:22] [Client thread/WARN] [FML]: * at com.chocolatemod.main.MainRegistry.PreLoad(MainRegistry.java:112)...

    [18:08:22] [Client thread/WARN] [FML]: ****************************************

    [18:08:22] [Client thread/WARN] [FML]: ****************************************

    [18:08:22] [Client thread/WARN] [FML]: * Illegal extra prefix Chocolate for name Chocolate:whitechocolateslab_top, invalid registry invocation/invalid name?

    [18:08:22] [Client thread/WARN] [FML]: * at cpw.mods.fml.common.registry.GameData.registerBlock(GameData.java:855)

    [18:08:22] [Client thread/WARN] [FML]: * at cpw.mods.fml.common.registry.GameRegistry.registerBlock(GameRegistry.java:223)

    [18:08:22] [Client thread/WARN] [FML]: * at cpw.mods.fml.common.registry.GameRegistry.registerBlock(GameRegistry.java:182)

    [18:08:22] [Client thread/WARN] [FML]: * at com.chocolatemod.block.BlockRegistry.registerBlock(BlockRegistry.java:402)

    [18:08:22] [Client thread/WARN] [FML]: * at com.chocolatemod.block.BlockRegistry.mainRegistry(BlockRegistry.java:31)

    [18:08:22] [Client thread/WARN] [FML]: * at com.chocolatemod.main.MainRegistry.PreLoad(MainRegistry.java:112)...

    [18:08:22] [Client thread/WARN] [FML]: ****************************************

    [18:08:22] [Client thread/WARN] [FML]: ****************************************

    [18:08:22] [Client thread/WARN] [FML]: * Illegal extra prefix Chocolate for name Chocolate:whitechocolateslab_top, invalid registry invocation/invalid name?

    [18:08:22] [Client thread/WARN] [FML]: * at cpw.mods.fml.common.registry.GameData.registerItem(GameData.java:799)

    [18:08:22] [Client thread/WARN] [FML]: * at cpw.mods.fml.common.registry.GameRegistry.registerBlock(GameRegistry.java:226)

    [18:08:22] [Client thread/WARN] [FML]: * at cpw.mods.fml.common.registry.GameRegistry.registerBlock(GameRegistry.java:182)

    [18:08:22] [Client thread/WARN] [FML]: * at com.chocolatemod.block.BlockRegistry.registerBlock(BlockRegistry.java:402)

    [18:08:22] [Client thread/WARN] [FML]: * at com.chocolatemod.block.BlockRegistry.mainRegistry(BlockRegistry.java:31)

    [18:08:22] [Client thread/WARN] [FML]: * at com.chocolatemod.main.MainRegistry.PreLoad(MainRegistry.java:112)...

    [18:08:22] [Client thread/WARN] [FML]: ****************************************

    [18:08:22] [Client thread/WARN] [FML]: ****************************************

    [18:08:22] [Client thread/WARN] [FML]: * Illegal extra prefix Chocolate for name Chocolate:smalldarkchocolatebrickSlabDouble, invalid registry invocation/invalid name?

    [18:08:22] [Client thread/WARN] [FML]: * at cpw.mods.fml.common.registry.GameData.registerBlock(GameData.java:855)

    [18:08:22] [Client thread/WARN] [FML]: * at cpw.mods.fml.common.registry.GameRegistry.registerBlock(GameRegistry.java:223)

    [18:08:22] [Client thread/WARN] [FML]: * at cpw.mods.fml.common.registry.GameRegistry.registerBlock(GameRegistry.java:182)

    [18:08:22] [Client thread/WARN] [FML]: * at com.chocolatemod.block.BlockRegistry.registerBlock(BlockRegistry.java:405)

    [18:08:22] [Client thread/WARN] [FML]: * at com.chocolatemod.block.BlockRegistry.mainRegistry(BlockRegistry.java:31)

    [18:08:22] [Client thread/WARN] [FML]: * at com.chocolatemod.main.MainRegistry.PreLoad(MainRegistry.java:112)...

    [18:08:22] [Client thread/WARN] [FML]: ****************************************

    [18:08:22] [Client thread/WARN] [FML]: ****************************************

    [18:08:22] [Client thread/WARN] [FML]: * Illegal extra prefix Chocolate for name Chocolate:smalldarkchocolatebrickSlabDouble, invalid registry invocation/invalid name?

    [18:08:22] [Client thread/WARN] [FML]: * at cpw.mods.fml.common.registry.GameData.registerItem(GameData.java:799)

    [18:08:22] [Client thread/WARN] [FML]: * at cpw.mods.fml.common.registry.GameRegistry.registerBlock(GameRegistry.java:226)

    [18:08:22] [Client thread/WARN] [FML]: * at cpw.mods.fml.common.registry.GameRegistry.registerBlock(GameRegistry.java:182)

    [18:08:22] [Client thread/WARN] [FML]: * at com.chocolatemod.block.BlockRegistry.registerBlock(BlockRegistry.java:405)

    [18:08:22] [Client thread/WARN] [FML]: * at com.chocolatemod.block.BlockRegistry.mainRegistry(BlockRegistry.java:31)

    [18:08:22] [Client thread/WARN] [FML]: * at com.chocolatemod.main.MainRegistry.PreLoad(MainRegistry.java:112)...

    [18:08:22] [Client thread/WARN] [FML]: ****************************************

    [18:08:22] [Client thread/WARN] [FML]: ****************************************

    [18:08:22] [Client thread/WARN] [FML]: * Illegal extra prefix Chocolate for name Chocolate:smalldarkchocolatebrickSlab, invalid registry invocation/invalid name?

    [18:08:22] [Client thread/WARN] [FML]: * at cpw.mods.fml.common.registry.GameData.registerBlock(GameData.java:855)

    [18:08:22] [Client thread/WARN] [FML]: * at cpw.mods.fml.common.registry.GameRegistry.registerBlock(GameRegistry.java:223)

    [18:08:22] [Client thread/WARN] [FML]: * at cpw.mods.fml.common.registry.GameRegistry.registerBlock(GameRegistry.java:182)

    [18:08:22] [Client thread/WARN] [FML]: * at com.chocolatemod.block.BlockRegistry.registerBlock(BlockRegistry.java:406)

    [18:08:22] [Client thread/WARN] [FML]: * at com.chocolatemod.block.BlockRegistry.mainRegistry(BlockRegistry.java:31)

    [18:08:22] [Client thread/WARN] [FML]: * at com.chocolatemod.main.MainRegistry.PreLoad(MainRegistry.java:112)...

    [18:08:22] [Client thread/WARN] [FML]: ****************************************

    [18:08:22] [Client thread/WARN] [FML]: ****************************************

    [18:08:22] [Client thread/WARN] [FML]: * Illegal extra prefix Chocolate for name Chocolate:smalldarkchocolatebrickSlab, invalid registry invocation/invalid name?

    [18:08:22] [Client thread/WARN] [FML]: * at cpw.mods.fml.common.registry.GameData.registerItem(GameData.java:799)

    [18:08:22] [Client thread/WARN] [FML]: * at cpw.mods.fml.common.registry.GameRegistry.registerBlock(GameRegistry.java:226)

    [18:08:22] [Client thread/WARN] [FML]: * at cpw.mods.fml.common.registry.GameRegistry.registerBlock(GameRegistry.java:182)

    [18:08:22] [Client thread/WARN] [FML]: * at com.chocolatemod.block.BlockRegistry.registerBlock(BlockRegistry.java:406)

    [18:08:22] [Client thread/WARN] [FML]: * at com.chocolatemod.block.BlockRegistry.mainRegistry(BlockRegistry.java:31)

    [18:08:22] [Client thread/WARN] [FML]: * at com.chocolatemod.main.MainRegistry.PreLoad(MainRegistry.java:112)...

    [18:08:22] [Client thread/WARN] [FML]: ****************************************

    [18:08:22] [Client thread/WARN] [FML]: ****************************************

    [18:08:22] [Client thread/WARN] [FML]: * Illegal extra prefix Chocolate for name Chocolate:smalllightchocolatebrickSlabDouble, invalid registry invocation/invalid name?

    [18:08:22] [Client thread/WARN] [FML]: * at cpw.mods.fml.common.registry.GameData.registerBlock(GameData.java:855)

    [18:08:22] [Client thread/WARN] [FML]: * at cpw.mods.fml.common.registry.GameRegistry.registerBlock(GameRegistry.java:223)

    [18:08:22] [Client thread/WARN] [FML]: * at cpw.mods.fml.common.registry.GameRegistry.registerBlock(GameRegistry.java:182)

    [18:08:22] [Client thread/WARN] [FML]: * at com.chocolatemod.block.BlockRegistry.registerBlock(BlockRegistry.java:407)

    [18:08:22] [Client thread/WARN] [FML]: * at com.chocolatemod.block.BlockRegistry.mainRegistry(BlockRegistry.java:31)

    [18:08:22] [Client thread/WARN] [FML]: * at com.chocolatemod.main.MainRegistry.PreLoad(MainRegistry.java:112)...

    [18:08:22] [Client thread/WARN] [FML]: ****************************************

    [18:08:22] [Client thread/WARN] [FML]: ****************************************

    [18:08:22] [Client thread/WARN] [FML]: * Illegal extra prefix Chocolate for name Chocolate:smalllightchocolatebrickSlabDouble, invalid registry invocation/invalid name?

    [18:08:22] [Client thread/WARN] [FML]: * at cpw.mods.fml.common.registry.GameData.registerItem(GameData.java:799)

    [18:08:22] [Client thread/WARN] [FML]: * at cpw.mods.fml.common.registry.GameRegistry.registerBlock(GameRegistry.java:226)

    [18:08:22] [Client thread/WARN] [FML]: * at cpw.mods.fml.common.registry.GameRegistry.registerBlock(GameRegistry.java:182)

    [18:08:22] [Client thread/WARN] [FML]: * at com.chocolatemod.block.BlockRegistry.registerBlock(BlockRegistry.java:407)

    [18:08:22] [Client thread/WARN] [FML]: * at com.chocolatemod.block.BlockRegistry.mainRegistry(BlockRegistry.java:31)

    [18:08:22] [Client thread/WARN] [FML]: * at com.chocolatemod.main.MainRegistry.PreLoad(MainRegistry.java:112)...

    [18:08:22] [Client thread/WARN] [FML]: ****************************************

    [18:08:22] [Client thread/WARN] [FML]: ****************************************

    [18:08:22] [Client thread/WARN] [FML]: * Illegal extra prefix Chocolate for name Chocolate:smalllightchocolatebrickSlab, invalid registry invocation/invalid name?

    [18:08:22] [Client thread/WARN] [FML]: * at cpw.mods.fml.common.registry.GameData.registerBlock(GameData.java:855)

    [18:08:22] [Client thread/WARN] [FML]: * at cpw.mods.fml.common.registry.GameRegistry.registerBlock(GameRegistry.java:223)

    [18:08:22] [Client thread/WARN] [FML]: * at cpw.mods.fml.common.registry.GameRegistry.registerBlock(GameRegistry.java:182)

    [18:08:22] [Client thread/WARN] [FML]: * at com.chocolatemod.block.BlockRegistry.registerBlock(BlockRegistry.java:408)

    [18:08:22] [Client thread/WARN] [FML]: * at com.chocolatemod.block.BlockRegistry.mainRegistry(BlockRegistry.java:31)

    [18:08:22] [Client thread/WARN] [FML]: * at com.chocolatemod.main.MainRegistry.PreLoad(MainRegistry.java:112)...

    [18:08:22] [Client thread/WARN] [FML]: ****************************************

    [18:08:22] [Client thread/WARN] [FML]: ****************************************

    [18:08:22] [Client thread/WARN] [FML]: * Illegal extra prefix Chocolate for name Chocolate:smalllightchocolatebrickSlab, invalid registry invocation/invalid name?

    [18:08:22] [Client thread/WARN] [FML]: * at cpw.mods.fml.common.registry.GameData.registerItem(GameData.java:799)

    [18:08:22] [Client thread/WARN] [FML]: * at cpw.mods.fml.common.registry.GameRegistry.registerBlock(GameRegistry.java:226)

    [18:08:22] [Client thread/WARN] [FML]: * at cpw.mods.fml.common.registry.GameRegistry.registerBlock(GameRegistry.java:182)

    [18:08:22] [Client thread/WARN] [FML]: * at com.chocolatemod.block.BlockRegistry.registerBlock(BlockRegistry.java:408)

    [18:08:22] [Client thread/WARN] [FML]: * at com.chocolatemod.block.BlockRegistry.mainRegistry(BlockRegistry.java:31)

    [18:08:22] [Client thread/WARN] [FML]: * at com.chocolatemod.main.MainRegistry.PreLoad(MainRegistry.java:112)...

    [18:08:22] [Client thread/WARN] [FML]: ****************************************

    [18:08:22] [Client thread/WARN] [FML]: ****************************************

    [18:08:22] [Client thread/WARN] [FML]: * Illegal extra prefix Chocolate for name Chocolate:smallwhitechocolatebrickSlabDouble, invalid registry invocation/invalid name?

    [18:08:22] [Client thread/WARN] [FML]: * at cpw.mods.fml.common.registry.GameData.registerBlock(GameData.java:855)

    [18:08:22] [Client thread/WARN] [FML]: * at cpw.mods.fml.common.registry.GameRegistry.registerBlock(GameRegistry.java:223)

    [18:08:22] [Client thread/WARN] [FML]: * at cpw.mods.fml.common.registry.GameRegistry.registerBlock(GameRegistry.java:182)

    [18:08:22] [Client thread/WARN] [FML]: * at com.chocolatemod.block.BlockRegistry.registerBlock(BlockRegistry.java:409)

    [18:08:22] [Client thread/WARN] [FML]: * at com.chocolatemod.block.BlockRegistry.mainRegistry(BlockRegistry.java:31)

    [18:08:22] [Client thread/WARN] [FML]: * at com.chocolatemod.main.MainRegistry.PreLoad(MainRegistry.java:112)...

    [18:08:22] [Client thread/WARN] [FML]: ****************************************

    [18:08:22] [Client thread/WARN] [FML]: ****************************************

    [18:08:22] [Client thread/WARN] [FML]: * Illegal extra prefix Chocolate for name Chocolate:smallwhitechocolatebrickSlabDouble, invalid registry invocation/invalid name?

    [18:08:22] [Client thread/WARN] [FML]: * at cpw.mods.fml.common.registry.GameData.registerItem(GameData.java:799)

    [18:08:22] [Client thread/WARN] [FML]: * at cpw.mods.fml.common.registry.GameRegistry.registerBlock(GameRegistry.java:226)

    [18:08:22] [Client thread/WARN] [FML]: * at cpw.mods.fml.common.registry.GameRegistry.registerBlock(GameRegistry.java:182)

    [18:08:22] [Client thread/WARN] [FML]: * at com.chocolatemod.block.BlockRegistry.registerBlock(BlockRegistry.java:409)

    [18:08:22] [Client thread/WARN] [FML]: * at com.chocolatemod.block.BlockRegistry.mainRegistry(BlockRegistry.java:31)

    [18:08:22] [Client thread/WARN] [FML]: * at com.chocolatemod.main.MainRegistry.PreLoad(MainRegistry.java:112)...

    [18:08:22] [Client thread/WARN] [FML]: ****************************************

    [18:08:22] [Client thread/WARN] [FML]: ****************************************

    [18:08:22] [Client thread/WARN] [FML]: * Illegal extra prefix Chocolate for name Chocolate:smallwhitechocolatebrickSlab, invalid registry invocation/invalid name?

    [18:08:22] [Client thread/WARN] [FML]: * at cpw.mods.fml.common.registry.GameData.registerBlock(GameData.java:855)

    [18:08:22] [Client thread/WARN] [FML]: * at cpw.mods.fml.common.registry.GameRegistry.registerBlock(GameRegistry.java:223)

    [18:08:22] [Client thread/WARN] [FML]: * at cpw.mods.fml.common.registry.GameRegistry.registerBlock(GameRegistry.java:182)

    [18:08:22] [Client thread/WARN] [FML]: * at com.chocolatemod.block.BlockRegistry.registerBlock(BlockRegistry.java:410)

    [18:08:22] [Client thread/WARN] [FML]: * at com.chocolatemod.block.BlockRegistry.mainRegistry(BlockRegistry.java:31)

    [18:08:22] [Client thread/WARN] [FML]: * at com.chocolatemod.main.MainRegistry.PreLoad(MainRegistry.java:112)...

    [18:08:22] [Client thread/WARN] [FML]: ****************************************

    [18:08:22] [Client thread/WARN] [FML]: ****************************************

    [18:08:22] [Client thread/WARN] [FML]: * Illegal extra prefix Chocolate for name Chocolate:smallwhitechocolatebrickSlab, invalid registry invocation/invalid name?

    [18:08:22] [Client thread/WARN] [FML]: * at cpw.mods.fml.common.registry.GameData.registerItem(GameData.java:799)

    [18:08:22] [Client thread/WARN] [FML]: * at cpw.mods.fml.common.registry.GameRegistry.registerBlock(GameRegistry.java:226)

    [18:08:22] [Client thread/WARN] [FML]: * at cpw.mods.fml.common.registry.GameRegistry.registerBlock(GameRegistry.java:182)

    [18:08:22] [Client thread/WARN] [FML]: * at com.chocolatemod.block.BlockRegistry.registerBlock(BlockRegistry.java:410)

    [18:08:22] [Client thread/WARN] [FML]: * at com.chocolatemod.block.BlockRegistry.mainRegistry(BlockRegistry.java:31)

    [18:08:22] [Client thread/WARN] [FML]: * at com.chocolatemod.main.MainRegistry.PreLoad(MainRegistry.java:112)...

    [18:08:22] [Client thread/WARN] [FML]: ****************************************

    [18:08:22] [Client thread/WARN] [FML]: ****************************************

    [18:08:22] [Client thread/WARN] [FML]: * Illegal extra prefix item.killerjdog51 for name item.killerjdog51:chocolatebar, invalid registry invocation/invalid name?

    [18:08:22] [Client thread/WARN] [FML]: * at cpw.mods.fml.common.registry.GameData.registerItem(GameData.java:799)

    [18:08:22] [Client thread/WARN] [FML]: * at cpw.mods.fml.common.registry.GameRegistry.registerItem(GameRegistry.java:143)

    [18:08:22] [Client thread/WARN] [FML]: * at cpw.mods.fml.common.registry.GameRegistry.registerItem(GameRegistry.java:131)

    [18:08:22] [Client thread/WARN] [FML]: * at com.chocolatemod.food.FoodRegistry.registerItem(FoodRegistry.java:85)

    [18:08:22] [Client thread/WARN] [FML]: * at com.chocolatemod.food.FoodRegistry.mainRegistry(FoodRegistry.java:17)

    [18:08:22] [Client thread/WARN] [FML]: * at com.chocolatemod.main.MainRegistry.PreLoad(MainRegistry.java:114)...

    [18:08:22] [Client thread/WARN] [FML]: ****************************************

    [18:08:22] [Client thread/WARN] [FML]: ****************************************

    [18:08:22] [Client thread/WARN] [FML]: * Illegal extra prefix item.killerjdog51 for name item.killerjdog51:fruitychocolatebar, invalid registry invocation/invalid name?

    [18:08:22] [Client thread/WARN] [FML]: * at cpw.mods.fml.common.registry.GameData.registerItem(GameData.java:799)

    [18:08:22] [Client thread/WARN] [FML]: * at cpw.mods.fml.common.registry.GameRegistry.registerItem(GameRegistry.java:143)

    [18:08:22] [Client thread/WARN] [FML]: * at cpw.mods.fml.common.registry.GameRegistry.registerItem(GameRegistry.java:131)

    [18:08:22] [Client thread/WARN] [FML]: * at com.chocolatemod.food.FoodRegistry.registerItem(FoodRegistry.java:86)

    [18:08:22] [Client thread/WARN] [FML]: * at com.chocolatemod.food.FoodRegistry.mainRegistry(FoodRegistry.java:17)

    [18:08:22] [Client thread/WARN] [FML]: * at com.chocolatemod.main.MainRegistry.PreLoad(MainRegistry.java:114)...

    [18:08:22] [Client thread/WARN] [FML]: ****************************************

    [18:08:22] [Client thread/WARN] [FML]: ****************************************

    [18:08:22] [Client thread/WARN] [FML]: * Illegal extra prefix item.killerjdog51 for name item.killerjdog51:mintychocolatebar, invalid registry invocation/invalid name?

    [18:08:22] [Client thread/WARN] [FML]: * at cpw.mods.fml.common.registry.GameData.registerItem(GameData.java:799)

    [18:08:22] [Client thread/WARN] [FML]: * at cpw.mods.fml.common.registry.GameRegistry.registerItem(GameRegistry.java:143)

    [18:08:22] [Client thread/WARN] [FML]: * at cpw.mods.fml.common.registry.GameRegistry.registerItem(GameRegistry.java:131)

    [18:08:22] [Client thread/WARN] [FML]: * at com.chocolatemod.food.FoodRegistry.registerItem(FoodRegistry.java:87)

    [18:08:22] [Client thread/WARN] [FML]: * at com.chocolatemod.food.FoodRegistry.mainRegistry(FoodRegistry.java:17)

    [18:08:22] [Client thread/WARN] [FML]: * at com.chocolatemod.main.MainRegistry.PreLoad(MainRegistry.java:114)...

    [18:08:22] [Client thread/WARN] [FML]: ****************************************

    [18:08:22] [Client thread/WARN] [FML]: ****************************************

    [18:08:22] [Client thread/WARN] [FML]: * Illegal extra prefix item.killerjdog51 for name item.killerjdog51:chocolatenutbar, invalid registry invocation/invalid name?

    [18:08:22] [Client thread/WARN] [FML]: * at cpw.mods.fml.common.registry.GameData.registerItem(GameData.java:799)

    [18:08:22] [Client thread/WARN] [FML]: * at cpw.mods.fml.common.registry.GameRegistry.registerItem(GameRegistry.java:143)

    [18:08:22] [Client thread/WARN] [FML]: * at cpw.mods.fml.common.registry.GameRegistry.registerItem(GameRegistry.java:131)

    [18:08:22] [Client thread/WARN] [FML]: * at com.chocolatemod.food.FoodRegistry.registerItem(FoodRegistry.java:88)

    [18:08:22] [Client thread/WARN] [FML]: * at com.chocolatemod.food.FoodRegistry.mainRegistry(FoodRegistry.java:17)

    [18:08:22] [Client thread/WARN] [FML]: * at com.chocolatemod.main.MainRegistry.PreLoad(MainRegistry.java:114)...

    [18:08:22] [Client thread/WARN] [FML]: ****************************************

    [18:08:22] [Client thread/WARN] [FML]: ****************************************

    [18:08:22] [Client thread/WARN] [FML]: * Illegal extra prefix item.killerjdog51 for name item.killerjdog51:chocolateApple, invalid registry invocation/invalid name?

    [18:08:22] [Client thread/WARN] [FML]: * at cpw.mods.fml.common.registry.GameData.registerItem(GameData.java:799)

    [18:08:22] [Client thread/WARN] [FML]: * at cpw.mods.fml.common.registry.GameRegistry.registerItem(GameRegistry.java:143)

    [18:08:22] [Client thread/WARN] [FML]: * at cpw.mods.fml.common.registry.GameRegistry.registerItem(GameRegistry.java:131)

    [18:08:22] [Client thread/WARN] [FML]: * at com.chocolatemod.food.FoodRegistry.registerItem(FoodRegistry.java:89)

    [18:08:22] [Client thread/WARN] [FML]: * at com.chocolatemod.food.FoodRegistry.mainRegistry(FoodRegistry.java:17)

    [18:08:22] [Client thread/WARN] [FML]: * at com.chocolatemod.main.MainRegistry.PreLoad(MainRegistry.java:114)...

    [18:08:22] [Client thread/WARN] [FML]: ****************************************

    [18:08:22] [Client thread/WARN] [FML]: ****************************************

    [18:08:22] [Client thread/WARN] [FML]: * Illegal extra prefix item.killerjdog51 for name item.killerjdog51:cookiesandcreambar, invalid registry invocation/invalid name?

    [18:08:22] [Client thread/WARN] [FML]: * at cpw.mods.fml.common.registry.GameData.registerItem(GameData.java:799)

    [18:08:22] [Client thread/WARN] [FML]: * at cpw.mods.fml.common.registry.GameRegistry.registerItem(GameRegistry.java:143)

    [18:08:22] [Client thread/WARN] [FML]: * at cpw.mods.fml.common.registry.GameRegistry.registerItem(GameRegistry.java:131)

    [18:08:22] [Client thread/WARN] [FML]: * at com.chocolatemod.food.FoodRegistry.registerItem(FoodRegistry.java:90)

    [18:08:22] [Client thread/WARN] [FML]: * at com.chocolatemod.food.FoodRegistry.mainRegistry(FoodRegistry.java:17)

    [18:08:22] [Client thread/WARN] [FML]: * at com.chocolatemod.main.MainRegistry.PreLoad(MainRegistry.java:114)...

    [18:08:22] [Client thread/WARN] [FML]: ****************************************

    [18:08:22] [Client thread/WARN] [FML]: ****************************************

    [18:08:22] [Client thread/WARN] [FML]: * Illegal extra prefix item.killerjdog51 for name item.killerjdog51:chocolateegg, invalid registry invocation/invalid name?

    [18:08:22] [Client thread/WARN] [FML]: * at cpw.mods.fml.common.registry.GameData.registerItem(GameData.java:799)

    [18:08:22] [Client thread/WARN] [FML]: * at cpw.mods.fml.common.registry.GameRegistry.registerItem(GameRegistry.java:143)

    [18:08:22] [Client thread/WARN] [FML]: * at cpw.mods.fml.common.registry.GameRegistry.registerItem(GameRegistry.java:131)

    [18:08:22] [Client thread/WARN] [FML]: * at com.chocolatemod.food.FoodRegistry.registerItem(FoodRegistry.java:91)

    [18:08:22] [Client thread/WARN] [FML]: * at com.chocolatemod.food.FoodRegistry.mainRegistry(FoodRegistry.java:17)

    [18:08:22] [Client thread/WARN] [FML]: * at com.chocolatemod.main.MainRegistry.PreLoad(MainRegistry.java:114)...

    [18:08:22] [Client thread/WARN] [FML]: ****************************************

    [18:08:22] [Client thread/WARN] [FML]: ****************************************

    [18:08:22] [Client thread/WARN] [FML]: * Illegal extra prefix item.killerjdog51 for name item.killerjdog51:chocolatesoup, invalid registry invocation/invalid name?

    [18:08:22] [Client thread/WARN] [FML]: * at cpw.mods.fml.common.registry.GameData.registerItem(GameData.java:799)

    [18:08:22] [Client thread/WARN] [FML]: * at cpw.mods.fml.common.registry.GameRegistry.registerItem(GameRegistry.java:143)

    [18:08:22] [Client thread/WARN] [FML]: * at cpw.mods.fml.common.registry.GameRegistry.registerItem(GameRegistry.java:131)

    [18:08:22] [Client thread/WARN] [FML]: * at com.chocolatemod.food.FoodRegistry.registerItem(FoodRegistry.java:92)

    [18:08:22] [Client thread/WARN] [FML]: * at com.chocolatemod.food.FoodRegistry.mainRegistry(FoodRegistry.java:17)

    [18:08:22] [Client thread/WARN] [FML]: * at com.chocolatemod.main.MainRegistry.PreLoad(MainRegistry.java:114)...

    [18:08:22] [Client thread/WARN] [FML]: ****************************************

    [18:08:22] [Client thread/WARN] [FML]: ****************************************

    [18:08:22] [Client thread/WARN] [FML]: * Illegal extra prefix item.killerjdog51 for name item.killerjdog51:chocolateStrawberry, invalid registry invocation/invalid name?

    [18:08:22] [Client thread/WARN] [FML]: * at cpw.mods.fml.common.registry.GameData.registerItem(GameData.java:799)

    [18:08:22] [Client thread/WARN] [FML]: * at cpw.mods.fml.common.registry.GameRegistry.registerItem(GameRegistry.java:143)

    [18:08:22] [Client thread/WARN] [FML]: * at cpw.mods.fml.common.registry.GameRegistry.registerItem(GameRegistry.java:131)

    [18:08:22] [Client thread/WARN] [FML]: * at com.chocolatemod.food.FoodRegistry.registerItem(FoodRegistry.java:93)

    [18:08:22] [Client thread/WARN] [FML]: * at com.chocolatemod.food.FoodRegistry.mainRegistry(FoodRegistry.java:17)

    [18:08:22] [Client thread/WARN] [FML]: * at com.chocolatemod.main.MainRegistry.PreLoad(MainRegistry.java:114)...

    [18:08:22] [Client thread/WARN] [FML]: ****************************************

    [18:08:22] [Client thread/WARN] [FML]: ****************************************

    [18:08:22] [Client thread/WARN] [FML]: * Illegal extra prefix item.killerjdog51 for name item.killerjdog51:chocolateball, invalid registry invocation/invalid name?

    [18:08:22] [Client thread/WARN] [FML]: * at cpw.mods.fml.common.registry.GameData.registerItem(GameData.java:799)

    [18:08:22] [Client thread/WARN] [FML]: * at cpw.mods.fml.common.registry.GameRegistry.registerItem(GameRegistry.java:143)

    [18:08:22] [Client thread/WARN] [FML]: * at cpw.mods.fml.common.registry.GameRegistry.registerItem(GameRegistry.java:131)

    [18:08:22] [Client thread/WARN] [FML]: * at com.chocolatemod.food.FoodRegistry.registerItem(FoodRegistry.java:94)

    [18:08:22] [Client thread/WARN] [FML]: * at com.chocolatemod.food.FoodRegistry.mainRegistry(FoodRegistry.java:17)

    [18:08:22] [Client thread/WARN] [FML]: * at com.chocolatemod.main.MainRegistry.PreLoad(MainRegistry.java:114)...

    [18:08:22] [Client thread/WARN] [FML]: ****************************************

    [18:08:22] [Client thread/WARN] [FML]: ****************************************

    [18:08:22] [Client thread/WARN] [FML]: * Illegal extra prefix item.killerjdog51 for name item.killerjdog51:fruitychocolateball, invalid registry invocation/invalid name?

    [18:08:22] [Client thread/WARN] [FML]: * at cpw.mods.fml.common.registry.GameData.registerItem(GameData.java:799)

    [18:08:22] [Client thread/WARN] [FML]: * at cpw.mods.fml.common.registry.GameRegistry.registerItem(GameRegistry.java:143)

    [18:08:22] [Client thread/WARN] [FML]: * at cpw.mods.fml.common.registry.GameRegistry.registerItem(GameRegistry.java:131)

    [18:08:22] [Client thread/WARN] [FML]: * at com.chocolatemod.food.FoodRegistry.registerItem(FoodRegistry.java:95)

    [18:08:22] [Client thread/WARN] [FML]: * at com.chocolatemod.food.FoodRegistry.mainRegistry(FoodRegistry.java:17)

    [18:08:22] [Client thread/WARN] [FML]: * at com.chocolatemod.main.MainRegistry.PreLoad(MainRegistry.java:114)...

    [18:08:22] [Client thread/WARN] [FML]: ****************************************

    [18:08:22] [Client thread/WARN] [FML]: ****************************************

    [18:08:22] [Client thread/WARN] [FML]: * Illegal extra prefix item.killerjdog51 for name item.killerjdog51:mintychocolateball, invalid registry invocation/invalid name?

    [18:08:22] [Client thread/WARN] [FML]: * at cpw.mods.fml.common.registry.GameData.registerItem(GameData.java:799)

    [18:08:22] [Client thread/WARN] [FML]: * at cpw.mods.fml.common.registry.GameRegistry.registerItem(GameRegistry.java:143)

    [18:08:22] [Client thread/WARN] [FML]: * at cpw.mods.fml.common.registry.GameRegistry.registerItem(GameRegistry.java:131)

    [18:08:22] [Client thread/WARN] [FML]: * at com.chocolatemod.food.FoodRegistry.registerItem(FoodRegistry.java:96)

    [18:08:22] [Client thread/WARN] [FML]: * at com.chocolatemod.food.FoodRegistry.mainRegistry(FoodRegistry.java:17)

    [18:08:22] [Client thread/WARN] [FML]: * at com.chocolatemod.main.MainRegistry.PreLoad(MainRegistry.java:114)...

    [18:08:22] [Client thread/WARN] [FML]: ****************************************

    [18:08:22] [Client thread/WARN] [FML]: ****************************************

    [18:08:22] [Client thread/WARN] [FML]: * Illegal extra prefix item.killerjdog51 for name item.killerjdog51:chocolatenutball, invalid registry invocation/invalid name?

    [18:08:22] [Client thread/WARN] [FML]: * at cpw.mods.fml.common.registry.GameData.registerItem(GameData.java:799)

    [18:08:22] [Client thread/WARN] [FML]: * at cpw.mods.fml.common.registry.GameRegistry.registerItem(GameRegistry.java:143)

    [18:08:22] [Client thread/WARN] [FML]: * at cpw.mods.fml.common.registry.GameRegistry.registerItem(GameRegistry.java:131)

    [18:08:22] [Client thread/WARN] [FML]: * at com.chocolatemod.food.FoodRegistry.registerItem(FoodRegistry.java:97)

    [18:08:22] [Client thread/WARN] [FML]: * at com.chocolatemod.food.FoodRegistry.mainRegistry(FoodRegistry.java:17)

    [18:08:22] [Client thread/WARN] [FML]: * at com.chocolatemod.main.MainRegistry.PreLoad(MainRegistry.java:114)...

    [18:08:22] [Client thread/WARN] [FML]: ****************************************

    [18:08:22] [Client thread/WARN] [FML]: ****************************************

    [18:08:22] [Client thread/WARN] [FML]: * Illegal extra prefix item.killerjdog51 for name item.killerjdog51:goldchocolatebar, invalid registry invocation/invalid name?

    [18:08:22] [Client thread/WARN] [FML]: * at cpw.mods.fml.common.registry.GameData.registerItem(GameData.java:799)

    [18:08:22] [Client thread/WARN] [FML]: * at cpw.mods.fml.common.registry.GameRegistry.registerItem(GameRegistry.java:143)

    [18:08:22] [Client thread/WARN] [FML]: * at cpw.mods.fml.common.registry.GameRegistry.registerItem(GameRegistry.java:131)

    [18:08:22] [Client thread/WARN] [FML]: * at com.chocolatemod.food.FoodRegistry.registerItem(FoodRegistry.java:98)

    [18:08:22] [Client thread/WARN] [FML]: * at com.chocolatemod.food.FoodRegistry.mainRegistry(FoodRegistry.java:17)

    [18:08:22] [Client thread/WARN] [FML]: * at com.chocolatemod.main.MainRegistry.PreLoad(MainRegistry.java:114)...

    [18:08:22] [Client thread/WARN] [FML]: ****************************************

    [18:08:22] [Client thread/WARN] [FML]: ****************************************

    [18:08:22] [Client thread/WARN] [FML]: * Illegal extra prefix item.killerjdog51 for name item.killerjdog51:chocolatecake, invalid registry invocation/invalid name?

    [18:08:22] [Client thread/WARN] [FML]: * at cpw.mods.fml.common.registry.GameData.registerItem(GameData.java:799)

    [18:08:22] [Client thread/WARN] [FML]: * at cpw.mods.fml.common.registry.GameRegistry.registerItem(GameRegistry.java:143)

    [18:08:22] [Client thread/WARN] [FML]: * at cpw.mods.fml.common.registry.GameRegistry.registerItem(GameRegistry.java:131)

    [18:08:22] [Client thread/WARN] [FML]: * at com.chocolatemod.food.FoodRegistry.registerItem(FoodRegistry.java:100)

    [18:08:22] [Client thread/WARN] [FML]: * at com.chocolatemod.food.FoodRegistry.mainRegistry(FoodRegistry.java:17)

    [18:08:22] [Client thread/WARN] [FML]: * at com.chocolatemod.main.MainRegistry.PreLoad(MainRegistry.java:114)...

    [18:08:22] [Client thread/WARN] [FML]: ****************************************

    [18:08:22] [Client thread/WARN] [FML]: ****************************************

    [18:08:22] [Client thread/WARN] [FML]: * Illegal extra prefix item.killerjdog51 for name item.killerjdog51:darkchocolatecake, invalid registry invocation/invalid name?

    [18:08:22] [Client thread/WARN] [FML]: * at cpw.mods.fml.common.registry.GameData.registerItem(GameData.java:799)

    [18:08:22] [Client thread/WARN] [FML]: * at cpw.mods.fml.common.registry.GameRegistry.registerItem(GameRegistry.java:143)

    [18:08:22] [Client thread/WARN] [FML]: * at cpw.mods.fml.common.registry.GameRegistry.registerItem(GameRegistry.java:131)

    [18:08:22] [Client thread/WARN] [FML]: * at com.chocolatemod.food.FoodRegistry.registerItem(FoodRegistry.java:101)

    [18:08:22] [Client thread/WARN] [FML]: * at com.chocolatemod.food.FoodRegistry.mainRegistry(FoodRegistry.java:17)

    [18:08:22] [Client thread/WARN] [FML]: * at com.chocolatemod.main.MainRegistry.PreLoad(MainRegistry.java:114)...

    [18:08:22] [Client thread/WARN] [FML]: ****************************************

    [18:08:22] [Client thread/WARN] [FML]: ****************************************

    [18:08:22] [Client thread/WARN] [FML]: * Illegal extra prefix item.killerjdog51 for name item.killerjdog51:lightchocolatecake, invalid registry invocation/invalid name?

    [18:08:22] [Client thread/WARN] [FML]: * at cpw.mods.fml.common.registry.GameData.registerItem(GameData.java:799)

    [18:08:22] [Client thread/WARN] [FML]: * at cpw.mods.fml.common.registry.GameRegistry.registerItem(GameRegistry.java:143)

    [18:08:22] [Client thread/WARN] [FML]: * at cpw.mods.fml.common.registry.GameRegistry.registerItem(GameRegistry.java:131)

    [18:08:22] [Client thread/WARN] [FML]: * at com.chocolatemod.food.FoodRegistry.registerItem(FoodRegistry.java:102)

    [18:08:22] [Client thread/WARN] [FML]: * at com.chocolatemod.food.FoodRegistry.mainRegistry(FoodRegistry.java:17)

    [18:08:22] [Client thread/WARN] [FML]: * at com.chocolatemod.main.MainRegistry.PreLoad(MainRegistry.java:114)...

    [18:08:22] [Client thread/WARN] [FML]: ****************************************

    [18:08:22] [Client thread/WARN] [FML]: ****************************************

    [18:08:22] [Client thread/WARN] [FML]: * Illegal extra prefix item.killerjdog51 for name item.killerjdog51:whitechocolatecake, invalid registry invocation/invalid name?

    [18:08:22] [Client thread/WARN] [FML]: * at cpw.mods.fml.common.registry.GameData.registerItem(GameData.java:799)

    [18:08:22] [Client thread/WARN] [FML]: * at cpw.mods.fml.common.registry.GameRegistry.registerItem(GameRegistry.java:143)

    [18:08:22] [Client thread/WARN] [FML]: * at cpw.mods.fml.common.registry.GameRegistry.registerItem(GameRegistry.java:131)

    [18:08:22] [Client thread/WARN] [FML]: * at com.chocolatemod.food.FoodRegistry.registerItem(FoodRegistry.java:103)

    [18:08:22] [Client thread/WARN] [FML]: * at com.chocolatemod.food.FoodRegistry.mainRegistry(FoodRegistry.java:17)

    [18:08:22] [Client thread/WARN] [FML]: * at com.chocolatemod.main.MainRegistry.PreLoad(MainRegistry.java:114)...

    [18:08:22] [Client thread/WARN] [FML]: ****************************************

    [18:08:22] [Client thread/WARN] [FML]: ****************************************

    [18:08:22] [Client thread/WARN] [FML]: * Illegal extra prefix item.killerjdog51 for name item.killerjdog51:chocolatebow, invalid registry invocation/invalid name?

    [18:08:22] [Client thread/WARN] [FML]: * at cpw.mods.fml.common.registry.GameData.registerItem(GameData.java:799)

    [18:08:22] [Client thread/WARN] [FML]: * at cpw.mods.fml.common.registry.GameRegistry.registerItem(GameRegistry.java:143)

    [18:08:22] [Client thread/WARN] [FML]: * at cpw.mods.fml.common.registry.GameRegistry.registerItem(GameRegistry.java:131)

    [18:08:22] [Client thread/WARN] [FML]: * at com.chocolatemod.tools.Tools.registerItem(Tools.java:131)

    [18:08:22] [Client thread/WARN] [FML]: * at com.chocolatemod.tools.Tools.mainRegistry(Tools.java:32)

    [18:08:22] [Client thread/WARN] [FML]: * at com.chocolatemod.main.MainRegistry.PreLoad(MainRegistry.java:115)...

    [18:08:22] [Client thread/WARN] [FML]: ****************************************

    [18:08:22] [Client thread/WARN] [FML]: ****************************************

    [18:08:22] [Client thread/WARN] [FML]: * Illegal extra prefix item.killerjdog51 for name item.killerjdog51:darkchocolatebow, invalid registry invocation/invalid name?

    [18:08:22] [Client thread/WARN] [FML]: * at cpw.mods.fml.common.registry.GameData.registerItem(GameData.java:799)

    [18:08:22] [Client thread/WARN] [FML]: * at cpw.mods.fml.common.registry.GameRegistry.registerItem(GameRegistry.java:143)

    [18:08:22] [Client thread/WARN] [FML]: * at cpw.mods.fml.common.registry.GameRegistry.registerItem(GameRegistry.java:131)

    [18:08:22] [Client thread/WARN] [FML]: * at com.chocolatemod.tools.Tools.registerItem(Tools.java:132)

    [18:08:22] [Client thread/WARN] [FML]: * at com.chocolatemod.tools.Tools.mainRegistry(Tools.java:32)

    [18:08:22] [Client thread/WARN] [FML]: * at com.chocolatemod.main.MainRegistry.PreLoad(MainRegistry.java:115)...

    [18:08:22] [Client thread/WARN] [FML]: ****************************************

    [18:08:22] [Client thread/WARN] [FML]: ****************************************

    [18:08:22] [Client thread/WARN] [FML]: * Illegal extra prefix item.killerjdog51 for name item.killerjdog51:lightchocolatebow, invalid registry invocation/invalid name?

    [18:08:22] [Client thread/WARN] [FML]: * at cpw.mods.fml.common.registry.GameData.registerItem(GameData.java:799)

    [18:08:22] [Client thread/WARN] [FML]: * at cpw.mods.fml.common.registry.GameRegistry.registerItem(GameRegistry.java:143)

    [18:08:22] [Client thread/WARN] [FML]: * at cpw.mods.fml.common.registry.GameRegistry.registerItem(GameRegistry.java:131)

    [18:08:22] [Client thread/WARN] [FML]: * at com.chocolatemod.tools.Tools.registerItem(Tools.java:133)

    [18:08:22] [Client thread/WARN] [FML]: * at com.chocolatemod.tools.Tools.mainRegistry(Tools.java:32)

    [18:08:22] [Client thread/WARN] [FML]: * at com.chocolatemod.main.MainRegistry.PreLoad(MainRegistry.java:115)...

    [18:08:22] [Client thread/WARN] [FML]: ****************************************

    [18:08:22] [Client thread/WARN] [FML]: ****************************************

    [18:08:22] [Client thread/WARN] [FML]: * Illegal extra prefix item.killerjdog51 for name item.killerjdog51:whitechocolatebow, invalid registry invocation/invalid name?

    [18:08:22] [Client thread/WARN] [FML]: * at cpw.mods.fml.common.registry.GameData.registerItem(GameData.java:799)

    [18:08:22] [Client thread/WARN] [FML]: * at cpw.mods.fml.common.registry.GameRegistry.registerItem(GameRegistry.java:143)

    [18:08:22] [Client thread/WARN] [FML]: * at cpw.mods.fml.common.registry.GameRegistry.registerItem(GameRegistry.java:131)

    [18:08:22] [Client thread/WARN] [FML]: * at com.chocolatemod.tools.Tools.registerItem(Tools.java:134)

    [18:08:22] [Client thread/WARN] [FML]: * at com.chocolatemod.tools.Tools.mainRegistry(Tools.java:32)

    [18:08:22] [Client thread/WARN] [FML]: * at com.chocolatemod.main.MainRegistry.PreLoad(MainRegistry.java:115)...

    [18:08:22] [Client thread/WARN] [FML]: ****************************************

    [18:08:22] [Client thread/WARN] [FML]: ****************************************

    [18:08:22] [Client thread/WARN] [FML]: * Illegal extra prefix item.killerjdog51 for name item.killerjdog51:nuts, invalid registry invocation/invalid name?

    [18:08:22] [Client thread/WARN] [FML]: * at cpw.mods.fml.common.registry.GameData.registerItem(GameData.java:799)

    [18:08:22] [Client thread/WARN] [FML]: * at cpw.mods.fml.common.registry.GameRegistry.registerItem(GameRegistry.java:143)

    [18:08:22] [Client thread/WARN] [FML]: * at cpw.mods.fml.common.registry.GameRegistry.registerItem(GameRegistry.java:131)

    [18:08:22] [Client thread/WARN] [FML]: * at com.chocolatemod.crops.crops.registerBlock(crops.java:45)

    [18:08:22] [Client thread/WARN] [FML]: * at com.chocolatemod.crops.crops.mainRegistry(crops.java:18)

    [18:08:22] [Client thread/WARN] [FML]: * at com.chocolatemod.main.MainRegistry.PreLoad(MainRegistry.java:117)...

    [18:08:22] [Client thread/WARN] [FML]: ****************************************

    [18:08:22] [Client thread/WARN] [FML]: ****************************************

    [18:08:22] [Client thread/WARN] [FML]: * Illegal extra prefix item.killerjdog51 for name item.killerjdog51:Strawberry, invalid registry invocation/invalid name?

    [18:08:22] [Client thread/WARN] [FML]: * at cpw.mods.fml.common.registry.GameData.registerItem(GameData.java:799)

    [18:08:22] [Client thread/WARN] [FML]: * at cpw.mods.fml.common.registry.GameRegistry.registerItem(GameRegistry.java:143)

    [18:08:22] [Client thread/WARN] [FML]: * at cpw.mods.fml.common.registry.GameRegistry.registerItem(GameRegistry.java:131)

    [18:08:22] [Client thread/WARN] [FML]: * at com.chocolatemod.crops.crops.registerBlock(crops.java:47)

    [18:08:22] [Client thread/WARN] [FML]: * at com.chocolatemod.crops.crops.mainRegistry(crops.java:18)

    [18:08:22] [Client thread/WARN] [FML]: * at com.chocolatemod.main.MainRegistry.PreLoad(MainRegistry.java:117)...

    [18:08:22] [Client thread/WARN] [FML]: ****************************************

    [18:08:22] [Client thread/WARN] [FML]: ****************************************

    [18:08:22] [Client thread/WARN] [FML]: * Illegal extra prefix item.killerjdog51 for name item.killerjdog51:MintSeeds, invalid registry invocation/invalid name?

    [18:08:22] [Client thread/WARN] [FML]: * at cpw.mods.fml.common.registry.GameData.registerItem(GameData.java:799)

    [18:08:22] [Client thread/WARN] [FML]: * at cpw.mods.fml.common.registry.GameRegistry.registerItem(GameRegistry.java:143)

    [18:08:22] [Client thread/WARN] [FML]: * at cpw.mods.fml.common.registry.GameRegistry.registerItem(GameRegistry.java:131)

    [18:08:22] [Client thread/WARN] [FML]: * at com.chocolatemod.crops.crops.registerBlock(crops.java:49)

    [18:08:22] [Client thread/WARN] [FML]: * at com.chocolatemod.crops.crops.mainRegistry(crops.java:18)

    [18:08:22] [Client thread/WARN] [FML]: * at com.chocolatemod.main.MainRegistry.PreLoad(MainRegistry.java:117)...

    [18:08:22] [Client thread/WARN] [FML]: ****************************************

    [18:08:22] [Client thread/WARN] [FML]: ****************************************

    [18:08:22] [Client thread/WARN] [FML]: * Illegal extra prefix killerjdog51 for name killerjdog51:leaves, invalid registry invocation/invalid name?

    [18:08:22] [Client thread/WARN] [FML]: * at cpw.mods.fml.common.registry.GameData.registerBlock(GameData.java:855)

    [18:08:22] [Client thread/WARN] [FML]: * at cpw.mods.fml.common.registry.GameRegistry.registerBlock(GameRegistry.java:223)

    [18:08:22] [Client thread/WARN] [FML]: * at cpw.mods.fml.common.registry.GameRegistry.registerBlock(GameRegistry.java:182)

    [18:08:22] [Client thread/WARN] [FML]: * at com.chocolatemod.plants.PlantRegistry.registerBlock(PlantRegistry.java:70)

    [18:08:22] [Client thread/WARN] [FML]: * at com.chocolatemod.plants.PlantRegistry.mainRegistry(PlantRegistry.java:27)

    [18:08:22] [Client thread/WARN] [FML]: * at com.chocolatemod.main.MainRegistry.PreLoad(MainRegistry.java:118)...

    [18:08:22] [Client thread/WARN] [FML]: ****************************************

    [18:08:22] [Client thread/WARN] [FML]: ****************************************

    [18:08:22] [Client thread/WARN] [FML]: * Illegal extra prefix killerjdog51 for name killerjdog51:leaves, invalid registry invocation/invalid name?

    [18:08:22] [Client thread/WARN] [FML]: * at cpw.mods.fml.common.registry.GameData.registerItem(GameData.java:799)

    [18:08:22] [Client thread/WARN] [FML]: * at cpw.mods.fml.common.registry.GameRegistry.registerBlock(GameRegistry.java:226)

    [18:08:22] [Client thread/WARN] [FML]: * at cpw.mods.fml.common.registry.GameRegistry.registerBlock(GameRegistry.java:182)

    [18:08:22] [Client thread/WARN] [FML]: * at com.chocolatemod.plants.PlantRegistry.registerBlock(PlantRegistry.java:70)

    [18:08:22] [Client thread/WARN] [FML]: * at com.chocolatemod.plants.PlantRegistry.mainRegistry(PlantRegistry.java:27)

    [18:08:22] [Client thread/WARN] [FML]: * at com.chocolatemod.main.MainRegistry.PreLoad(MainRegistry.java:118)...

    [18:08:22] [Client thread/WARN] [FML]: ****************************************

    [18:08:23] [Client thread/INFO] [FML]: Applying holder lookups

    [18:08:23] [Client thread/INFO] [FML]: Holder lookups applied

    [18:08:23] [sound Library Loader/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]:

    [18:08:23] [sound Library Loader/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: Starting up SoundSystem...

    [18:08:23] [Thread-6/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: Initializing LWJGL OpenAL

    [18:08:23] [Thread-6/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: (The LWJGL binding of OpenAL. For more information, see http://www.lwjgl.org)

    [18:08:23] [Thread-6/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: OpenAL initialized.

    [18:08:23] [sound Library Loader/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]:

    [18:08:23] [sound Library Loader/INFO]: Sound engine started

    [18:08:26] [Client thread/INFO]: Created: 512x512 textures/blocks-atlas

    [18:08:26] [Client thread/ERROR]: Using missing texture, unable to load minecraft:textures/items/MISSING_ICON_ITEM_4104_fruitbits.png

    java.io.FileNotFoundException: minecraft:textures/items/MISSING_ICON_ITEM_4104_fruitbits.png

    at net.minecraft.client.resources.FallbackResourceManager.getResource(FallbackResourceManager.java:65) ~[FallbackResourceManager.class:?]

    at net.minecraft.client.resources.SimpleReloadableResourceManager.getResource(SimpleReloadableResourceManager.java:67) ~[simpleReloadableResourceManager.class:?]

    at net.minecraft.client.renderer.texture.TextureMap.loadTextureAtlas(TextureMap.java:126) [TextureMap.class:?]

    at net.minecraft.client.renderer.texture.TextureMap.loadTexture(TextureMap.java:91) [TextureMap.class:?]

    at net.minecraft.client.renderer.texture.TextureManager.loadTexture(TextureManager.java:89) [TextureManager.class:?]

    at net.minecraft.client.renderer.texture.TextureManager.loadTickableTexture(TextureManager.java:71) [TextureManager.class:?]

    at net.minecraft.client.renderer.texture.TextureManager.loadTextureMap(TextureManager.java:58) [TextureManager.class:?]

    at net.minecraft.client.Minecraft.startGame(Minecraft.java:583) [Minecraft.class:?]

    at net.minecraft.client.Minecraft.run(Minecraft.java:931) [Minecraft.class:?]

    at net.minecraft.client.main.Main.main(Main.java:164) [Main.class:?]

    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.7.0_71]

    at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.7.0_71]

    at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.7.0_71]

    at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.7.0_71]

    at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.11.jar:?]

    at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.11.jar:?]

    at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:78) [start/:?]

    at GradleStart.main(GradleStart.java:45) [start/:?]

    [18:08:26] [Client thread/ERROR]: Using missing texture, unable to load minecraft:textures/items/MISSING_ICON_ITEM_4108_ChocolatePortal.png

    java.io.FileNotFoundException: minecraft:textures/items/MISSING_ICON_ITEM_4108_ChocolatePortal.png

    at net.minecraft.client.resources.FallbackResourceManager.getResource(FallbackResourceManager.java:65) ~[FallbackResourceManager.class:?]

    at net.minecraft.client.resources.SimpleReloadableResourceManager.getResource(SimpleReloadableResourceManager.java:67) ~[simpleReloadableResourceManager.class:?]

    at net.minecraft.client.renderer.texture.TextureMap.loadTextureAtlas(TextureMap.java:126) [TextureMap.class:?]

    at net.minecraft.client.renderer.texture.TextureMap.loadTexture(TextureMap.java:91) [TextureMap.class:?]

    at net.minecraft.client.renderer.texture.TextureManager.loadTexture(TextureManager.java:89) [TextureManager.class:?]

    at net.minecraft.client.renderer.texture.TextureManager.loadTickableTexture(TextureManager.java:71) [TextureManager.class:?]

    at net.minecraft.client.renderer.texture.TextureManager.loadTextureMap(TextureManager.java:58) [TextureManager.class:?]

    at net.minecraft.client.Minecraft.startGame(Minecraft.java:583) [Minecraft.class:?]

    at net.minecraft.client.Minecraft.run(Minecraft.java:931) [Minecraft.class:?]

    at net.minecraft.client.main.Main.main(Main.java:164) [Main.class:?]

    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.7.0_71]

    at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.7.0_71]

    at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.7.0_71]

    at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.7.0_71]

    at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.11.jar:?]

    at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.11.jar:?]

    at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:78) [start/:?]

    at GradleStart.main(GradleStart.java:45) [start/:?]

    [18:08:26] [Client thread/INFO]: Created: 512x256 textures/items-atlas

    [18:08:26] [Client thread/INFO] [FML]: Forge Mod Loader has successfully loaded 4 mods

    [18:08:26] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:Chocolate Mod

    [18:08:26] [Client thread/ERROR]: Using missing texture, unable to load minecraft:textures/items/MISSING_ICON_ITEM_4104_fruitbits.png

    java.io.FileNotFoundException: minecraft:textures/items/MISSING_ICON_ITEM_4104_fruitbits.png

    at net.minecraft.client.resources.FallbackResourceManager.getResource(FallbackResourceManager.java:65) ~[FallbackResourceManager.class:?]

    at net.minecraft.client.resources.SimpleReloadableResourceManager.getResource(SimpleReloadableResourceManager.java:67) ~[simpleReloadableResourceManager.class:?]

    at net.minecraft.client.renderer.texture.TextureMap.loadTextureAtlas(TextureMap.java:126) [TextureMap.class:?]

    at net.minecraft.client.renderer.texture.TextureMap.loadTexture(TextureMap.java:91) [TextureMap.class:?]

    at net.minecraft.client.renderer.texture.TextureManager.loadTexture(TextureManager.java:89) [TextureManager.class:?]

    at net.minecraft.client.renderer.texture.TextureManager.onResourceManagerReload(TextureManager.java:170) [TextureManager.class:?]

    at net.minecraft.client.resources.SimpleReloadableResourceManager.notifyReloadListeners(SimpleReloadableResourceManager.java:134) [simpleReloadableResourceManager.class:?]

    at net.minecraft.client.resources.SimpleReloadableResourceManager.reloadResources(SimpleReloadableResourceManager.java:118) [simpleReloadableResourceManager.class:?]

    at net.minecraft.client.Minecraft.refreshResources(Minecraft.java:643) [Minecraft.class:?]

    at cpw.mods.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:303) [FMLClientHandler.class:?]

    at net.minecraft.client.Minecraft.startGame(Minecraft.java:586) [Minecraft.class:?]

    at net.minecraft.client.Minecraft.run(Minecraft.java:931) [Minecraft.class:?]

    at net.minecraft.client.main.Main.main(Main.java:164) [Main.class:?]

    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.7.0_71]

    at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.7.0_71]

    at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.7.0_71]

    at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.7.0_71]

    at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.11.jar:?]

    at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.11.jar:?]

    at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:78) [start/:?]

    at GradleStart.main(GradleStart.java:45) [start/:?]

    [18:08:26] [Client thread/ERROR]: Using missing texture, unable to load minecraft:textures/items/MISSING_ICON_ITEM_4108_ChocolatePortal.png

    java.io.FileNotFoundException: minecraft:textures/items/MISSING_ICON_ITEM_4108_ChocolatePortal.png

    at net.minecraft.client.resources.FallbackResourceManager.getResource(FallbackResourceManager.java:65) ~[FallbackResourceManager.class:?]

    at net.minecraft.client.resources.SimpleReloadableResourceManager.getResource(SimpleReloadableResourceManager.java:67) ~[simpleReloadableResourceManager.class:?]

    at net.minecraft.client.renderer.texture.TextureMap.loadTextureAtlas(TextureMap.java:126) [TextureMap.class:?]

    at net.minecraft.client.renderer.texture.TextureMap.loadTexture(TextureMap.java:91) [TextureMap.class:?]

    at net.minecraft.client.renderer.texture.TextureManager.loadTexture(TextureManager.java:89) [TextureManager.class:?]

    at net.minecraft.client.renderer.texture.TextureManager.onResourceManagerReload(TextureManager.java:170) [TextureManager.class:?]

    at net.minecraft.client.resources.SimpleReloadableResourceManager.notifyReloadListeners(SimpleReloadableResourceManager.java:134) [simpleReloadableResourceManager.class:?]

    at net.minecraft.client.resources.SimpleReloadableResourceManager.reloadResources(SimpleReloadableResourceManager.java:118) [simpleReloadableResourceManager.class:?]

    at net.minecraft.client.Minecraft.refreshResources(Minecraft.java:643) [Minecraft.class:?]

    at cpw.mods.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:303) [FMLClientHandler.class:?]

    at net.minecraft.client.Minecraft.startGame(Minecraft.java:586) [Minecraft.class:?]

    at net.minecraft.client.Minecraft.run(Minecraft.java:931) [Minecraft.class:?]

    at net.minecraft.client.main.Main.main(Main.java:164) [Main.class:?]

    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.7.0_71]

    at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.7.0_71]

    at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.7.0_71]

    at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.7.0_71]

    at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.11.jar:?]

    at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.11.jar:?]

    at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:78) [start/:?]

    at GradleStart.main(GradleStart.java:45) [start/:?]

    [18:08:26] [Client thread/INFO]: Created: 512x256 textures/items-atlas

    [18:08:27] [Client thread/INFO]: Created: 512x512 textures/blocks-atlas

    [18:08:27] [Client thread/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]:

    [18:08:27] [Client thread/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: SoundSystem shutting down...

    [18:08:27] [Client thread/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:importantMessage:90]: Author: Paul Lamb, www.paulscode.com

    [18:08:27] [Client thread/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]:

    [18:08:27] [sound Library Loader/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]:

    [18:08:27] [sound Library Loader/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: Starting up SoundSystem...

    [18:08:27] [Thread-8/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: Initializing LWJGL OpenAL

    [18:08:27] [Thread-8/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: (The LWJGL binding of OpenAL. For more information, see http://www.lwjgl.org)

    [18:08:27] [Thread-8/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: OpenAL initialized.

    [18:08:28] [sound Library Loader/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]:

    [18:08:28] [sound Library Loader/INFO]: Sound engine started

    [18:08:36] [server thread/INFO]: Starting integrated minecraft server version 1.7.10

    [18:08:36] [server thread/INFO]: Generating keypair

    [18:08:36] [server thread/INFO] [FML]: Injecting existing block and item data into this server instance

    [18:08:36] [server thread/INFO] [FML]: Found a missing id from the world killerjdog51:item.lightchocolatebow

    [18:08:36] [server thread/INFO] [FML]: Found a missing id from the world killerjdog51:item.whitechocolatebow

    [18:08:36] [server thread/INFO] [FML]: Found a missing id from the world killerjdog51:item.darkchocolatebow

    [18:08:36] [server thread/INFO] [FML]: Found a missing id from the world killerjdog51:item.chocolatebow

    [18:08:36] [server thread/ERROR] [FML]: There are unidentified mappings in this world - we are going to attempt to process anyway

    [18:08:36] [server thread/ERROR] [FML]: Unidentified item: killerjdog51:item.lightchocolatebow, id 4187

    [18:08:36] [server thread/ERROR] [FML]: Unidentified item: killerjdog51:item.whitechocolatebow, id 4185

    [18:08:36] [server thread/ERROR] [FML]: Unidentified item: killerjdog51:item.darkchocolatebow, id 4184

    [18:08:36] [server thread/ERROR] [FML]: Unidentified item: killerjdog51:item.chocolatebow, id 4186

    [18:08:42] [server thread/INFO] [FML]: World backup created at C:\Users\Jordan\Desktop\1.7.2 Chocolate\eclipse\saves\New World-20150105-180841.zip.

    [18:08:42] [server thread/ERROR] [FML]: This world contains block and item mappings that may cause world breakage

    [18:08:42] [server thread/INFO] [FML]: Injecting new block and item data into this server instance.

    [18:08:42] [server thread/INFO] [FML]: Injected new block/item killerjdog51:item.killerjdog51:lightchocolatebow: 4162 (init) -> 4188 (map).

    [18:08:42] [server thread/INFO] [FML]: Injected new block/item killerjdog51:item.killerjdog51:chocolatebow: 4160 (init) -> 4189 (map).

    [18:08:42] [server thread/INFO] [FML]: Injected new block/item killerjdog51:item.killerjdog51:darkchocolatebow: 4161 (init) -> 4190 (map).

    [18:08:42] [server thread/INFO] [FML]: Injected new block/item killerjdog51:item.killerjdog51:whitechocolatebow: 4163 (init) -> 4191 (map).

    [18:08:42] [server thread/INFO] [FML]: Applying holder lookups

    [18:08:43] [server thread/INFO] [FML]: Holder lookups applied

    [18:08:43] [server thread/INFO] [FML]: Loading dimension 0 (New World) (net.minecraft.server.integrated.IntegratedServer@620301eb)

    [18:08:43] [server thread/INFO] [sTDOUT]: [com.chocolatemod.worldgen.BiomeDecoratorChocolate:<init>:104]: Biome Decorator is Called

    [18:08:43] [server thread/INFO] [sTDOUT]: [com.chocolatemod.worldgen.BiomeDecoratorChocolate:<init>:104]: Biome Decorator is Called

    [18:08:43] [server thread/INFO] [sTDOUT]: [com.chocolatemod.worldgen.BiomeDecoratorChocolate:<init>:104]: Biome Decorator is Called

    [18:08:43] [server thread/INFO] [sTDOUT]: [com.chocolatemod.worldgen.BiomeDecoratorChocolate:<init>:104]: Biome Decorator is Called

    [18:08:43] [server thread/INFO] [sTDOUT]: [com.chocolatemod.worldgen.BiomeDecoratorChocolate:<init>:104]: Biome Decorator is Called

    [18:08:43] [server thread/INFO] [sTDOUT]: [com.chocolatemod.worldgen.BiomeDecoratorChocolate:<init>:104]: Biome Decorator is Called

    [18:08:43] [server thread/INFO] [sTDOUT]: [com.chocolatemod.worldgen.BiomeDecoratorChocolate:<init>:104]: Biome Decorator is Called

    [18:08:43] [server thread/INFO] [sTDOUT]: [com.chocolatemod.worldgen.BiomeDecoratorChocolate:<init>:104]: Biome Decorator is Called

    [18:08:43] [server thread/INFO] [sTDOUT]: [com.chocolatemod.worldgen.BiomeDecoratorChocolate:<init>:104]: Biome Decorator is Called

    [18:08:43] [server thread/INFO] [sTDOUT]: [com.chocolatemod.worldgen.BiomeDecoratorChocolate:<init>:104]: Biome Decorator is Called

    [18:08:43] [server thread/INFO] [sTDOUT]: [com.chocolatemod.worldgen.BiomeDecoratorChocolate:<init>:104]: Biome Decorator is Called

    [18:08:43] [server thread/INFO] [sTDOUT]: [com.chocolatemod.worldgen.BiomeDecoratorChocolate:<init>:104]: Biome Decorator is Called

    [18:08:43] [server thread/INFO] [sTDOUT]: [com.chocolatemod.worldgen.BiomeDecoratorChocolate:<init>:104]: Biome Decorator is Called

    [18:08:43] [server thread/INFO] [sTDOUT]: [com.chocolatemod.worldgen.BiomeDecoratorChocolate:<init>:104]: Biome Decorator is Called

    [18:08:43] [server thread/INFO] [sTDOUT]: [com.chocolatemod.worldgen.BiomeDecoratorChocolate:<init>:104]: Biome Decorator is Called

    [18:08:43] [server thread/INFO] [sTDOUT]: [com.chocolatemod.worldgen.BiomeDecoratorChocolate:<init>:104]: Biome Decorator is Called

    [18:08:43] [server thread/INFO] [FML]: Loading dimension 3 (New World) (net.minecraft.server.integrated.IntegratedServer@620301eb)

    [18:08:43] [server thread/INFO] [FML]: Loading dimension 1 (New World) (net.minecraft.server.integrated.IntegratedServer@620301eb)

    [18:08:43] [server thread/INFO] [FML]: Loading dimension -1 (New World) (net.minecraft.server.integrated.IntegratedServer@620301eb)

    [18:08:43] [server thread/INFO]: Preparing start region for level 0

    [18:08:44] [server thread/INFO]: Changing view distance to 6, from 10

    [18:08:44] [Netty Client IO #0/INFO] [FML]: Server protocol version 1

    [18:08:44] [Netty IO #1/INFO] [FML]: Client protocol version 1

    [18:08:44] [Netty IO #1/INFO] [FML]: Client attempting to join with 4 mods : [email protected],[email protected],[email protected],[email protected]

    [18:08:44] [Netty IO #1/INFO] [FML]: Attempting connection with missing mods [] at CLIENT

    [18:08:44] [Netty Client IO #0/INFO] [FML]: Attempting connection with missing mods [] at SERVER

    [18:08:44] [server thread/INFO] [FML]: [server thread] Server side modded connection established

    [18:08:44] [Client thread/INFO] [FML]: [Client thread] Client side modded connection established

    [18:08:44] [server thread/INFO]: Player329[local:E:852aca8a] logged in with entity id 215 at (-222.55912988996224, 68.0, -13.13471399452742)

    [18:08:44] [server thread/INFO]: Player329 joined the game

    [18:08:46] [server thread/INFO]: Player329 has just earned the achievement [Taking Inventory]

    [18:08:46] [Client thread/INFO]: [CHAT] Player329 has just earned the achievement [Taking Inventory]

    [18:08:57] [server thread/INFO]: Stopping server

    [18:08:57] [server thread/INFO]: Saving players

    [18:08:57] [server thread/INFO]: Saving worlds

    [18:08:57] [server thread/INFO]: Saving chunks for level 'New World'/Overworld

    [18:08:57] [server thread/INFO]: Saving chunks for level 'New World'/Nether

    [18:08:57] [server thread/INFO]: Saving chunks for level 'New World'/The End

    [18:08:57] [server thread/INFO]: Saving chunks for level 'New World'/Chocolate

    [18:08:57] [server thread/INFO] [FML]: Unloading dimension 0

    [18:08:57] [server thread/INFO] [FML]: Unloading dimension -1

    [18:08:57] [server thread/INFO] [FML]: Unloading dimension 1

    [18:08:57] [server thread/INFO] [FML]: Unloading dimension 3

    [18:08:57] [server thread/INFO] [FML]: Applying holder lookups

    [18:08:57] [server thread/INFO] [FML]: Holder lookups applied

    [18:08:58] [Client thread/FATAL]: Unreported exception thrown!

    java.lang.NullPointerException

    at com.chocolatemod.tools.BowRenderer.renderItem(BowRenderer.java:87) ~[bowRenderer.class:?]

    at com.chocolatemod.tools.BowRenderer.renderItem(BowRenderer.java:49) ~[bowRenderer.class:?]

    at net.minecraftforge.client.ForgeHooksClient.renderEquippedItem(ForgeHooksClient.java:232) ~[ForgeHooksClient.class:?]

    at net.minecraft.client.renderer.ItemRenderer.renderItem(ItemRenderer.java:86) ~[itemRenderer.class:?]

    at net.minecraft.client.renderer.ItemRenderer.renderItemInFirstPerson(ItemRenderer.java:511) ~[itemRenderer.class:?]

    at net.minecraft.client.renderer.EntityRenderer.renderHand(EntityRenderer.java:797) ~[EntityRenderer.class:?]

    at net.minecraft.client.renderer.EntityRenderer.renderWorld(EntityRenderer.java:1437) ~[EntityRenderer.class:?]

    at net.minecraft.client.renderer.EntityRenderer.updateCameraAndRender(EntityRenderer.java:1087) ~[EntityRenderer.class:?]

    at net.minecraft.client.Minecraft.runGameLoop(Minecraft.java:1057) ~[Minecraft.class:?]

    at net.minecraft.client.Minecraft.run(Minecraft.java:951) [Minecraft.class:?]

    at net.minecraft.client.main.Main.main(Main.java:164) [Main.class:?]

    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.7.0_71]

    at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.7.0_71]

    at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.7.0_71]

    at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.7.0_71]

    at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.11.jar:?]

    at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.11.jar:?]

    at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:78) [start/:?]

    at GradleStart.main(GradleStart.java:45) [start/:?]

    [18:08:58] [Client thread/INFO] [sTDOUT]: [net.minecraft.client.Minecraft:displayCrashReport:388]: ---- Minecraft Crash Report ----

    // Oops.

     

    Time: 1/5/15 6:08 PM

    Description: Unexpected error

     

    java.lang.NullPointerException: Unexpected error

    at com.chocolatemod.tools.BowRenderer.renderItem(BowRenderer.java:87)

    at com.chocolatemod.tools.BowRenderer.renderItem(BowRenderer.java:49)

    at net.minecraftforge.client.ForgeHooksClient.renderEquippedItem(ForgeHooksClient.java:232)

    at net.minecraft.client.renderer.ItemRenderer.renderItem(ItemRenderer.java:86)

    at net.minecraft.client.renderer.ItemRenderer.renderItemInFirstPerson(ItemRenderer.java:511)

    at net.minecraft.client.renderer.EntityRenderer.renderHand(EntityRenderer.java:797)

    at net.minecraft.client.renderer.EntityRenderer.renderWorld(EntityRenderer.java:1437)

    at net.minecraft.client.renderer.EntityRenderer.updateCameraAndRender(EntityRenderer.java:1087)

    at net.minecraft.client.Minecraft.runGameLoop(Minecraft.java:1057)

    at net.minecraft.client.Minecraft.run(Minecraft.java:951)

    at net.minecraft.client.main.Main.main(Main.java:164)

    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

    at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)

    at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)

    at java.lang.reflect.Method.invoke(Unknown Source)

    at net.minecraft.launchwrapper.Launch.launch(Launch.java:135)

    at net.minecraft.launchwrapper.Launch.main(Launch.java:28)

    at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:78)

    at GradleStart.main(GradleStart.java:45)

     

     

    A detailed walkthrough of the error, its code path and all known details is as follows:

    ---------------------------------------------------------------------------------------

     

    -- Head --

    Stacktrace:

    at com.chocolatemod.tools.BowRenderer.renderItem(BowRenderer.java:87)

    at com.chocolatemod.tools.BowRenderer.renderItem(BowRenderer.java:49)

    at net.minecraftforge.client.ForgeHooksClient.renderEquippedItem(ForgeHooksClient.java:232)

    at net.minecraft.client.renderer.ItemRenderer.renderItem(ItemRenderer.java:86)

    at net.minecraft.client.renderer.ItemRenderer.renderItemInFirstPerson(ItemRenderer.java:511)

    at net.minecraft.client.renderer.EntityRenderer.renderHand(EntityRenderer.java:797)

    at net.minecraft.client.renderer.EntityRenderer.renderWorld(EntityRenderer.java:1437)

     

    -- Affected level --

    Details:

    Level name: MpServer

    All players: 1 total; ['Player329'/215, l='MpServer', x=-222.56, y=69.62, z=-13.13]]

    Chunk stats: MultiplayerChunkCache: 169, 169

    Level seed: 0

    Level generator: ID 00 - default, ver 1. Features enabled: false

    Level generator options:

    Level spawn location: World: (-248,64,88), Chunk: (at 8,4,8 in -16,5; contains blocks -256,0,80 to -241,255,95), Region: (-1,0; contains chunks -32,0 to -1,31, blocks -512,0,0 to -1,255,511)

    Level time: 239384 game time, 1000 day time

    Level dimension: 0

    Level storage version: 0x00000 - Unknown?

    Level weather: Rain time: 0 (now: false), thunder time: 0 (now: false)

    Level game mode: Game mode: creative (ID 1). Hardcore: false. Cheats: false

    Forced entities: 69 total; ['Player329'/215, l='MpServer', x=-222.56, y=69.62, z=-13.13], EntityCow['Cow'/129, l='MpServer', x=-171.25, y=63.00, z=-86.47], EntityChicken['Chicken'/131, l='MpServer', x=-167.44, y=62.53, z=-65.63], EntityBat['Bat'/130, l='MpServer', x=-154.10, y=63.91, z=-74.45], EntityChicken['Chicken'/133, l='MpServer', x=-168.56, y=62.29, z=-15.44], EntityChicken['Chicken'/132, l='MpServer', x=-170.44, y=63.00, z=-9.56], EntitySheep['Sheep'/135, l='MpServer', x=-161.78, y=63.00, z=52.38], EntityChicken['Chicken'/134, l='MpServer', x=-166.63, y=63.00, z=31.66], EntityCreeper['Creeper'/152, l='MpServer', x=-150.78, y=17.00, z=-76.91], EntitySkeleton['Skeleton'/153, l='MpServer', x=-152.50, y=17.00, z=-82.69], EntitySkeleton['Skeleton'/154, l='MpServer', x=-148.22, y=16.00, z=-89.25], EntitySkeleton['Skeleton'/155, l='MpServer', x=-144.50, y=34.00, z=-90.91], EntityZombie['Zombie'/156, l='MpServer', x=-145.06, y=37.00, z=-88.63], EntitySkeleton['Skeleton'/158, l='MpServer', x=-149.25, y=34.00, z=-97.03], EntityBat['Bat'/159, l='MpServer', x=-153.25, y=38.10, z=-90.78], EntitySkeleton['Skeleton'/146, l='MpServer', x=-153.44, y=25.00, z=-83.84], EntitySpider['Spider'/147, l='MpServer', x=-148.97, y=17.00, z=-85.00], EntityCreeper['Creeper'/148, l='MpServer', x=-149.09, y=16.00, z=-89.47], EntityZombie['Zombie'/149, l='MpServer', x=-145.50, y=17.00, z=-90.50], EntityZombie['Zombie'/150, l='MpServer', x=-147.47, y=17.00, z=-84.94], EntitySkeleton['Skeleton'/151, l='MpServer', x=-147.09, y=16.00, z=-87.50], EntityBat['Bat'/175, l='MpServer', x=-151.41, y=20.05, z=-54.79], EntityBat['Bat'/174, l='MpServer', x=-152.51, y=26.08, z=-54.46], EntitySkeleton['Skeleton'/162, l='MpServer', x=-144.50, y=34.00, z=-91.91], EntitySkeleton['Skeleton'/161, l='MpServer', x=-147.16, y=34.00, z=-83.56], EntitySkeleton['Skeleton'/166, l='MpServer', x=-150.00, y=37.00, z=-93.28], EntitySkeleton['Skeleton'/165, l='MpServer', x=-151.97, y=34.00, z=-86.44], EntitySkeleton['Skeleton'/164, l='MpServer', x=-149.09, y=37.00, z=-93.78], EntitySkeleton['Skeleton'/290, l='MpServer', x=-191.50, y=65.00, z=61.50], EntitySheep['Sheep'/184, l='MpServer', x=-143.69, y=66.00, z=-29.88], EntitySheep['Sheep'/178, l='MpServer', x=-146.09, y=63.00, z=20.09], EntityChicken['Chicken'/177, l='MpServer', x=-155.41, y=68.00, z=-7.41], EntityCow['Cow'/63, l='MpServer', x=-293.38, y=72.00, z=-28.59], EntityCow['Cow'/62, l='MpServer', x=-301.53, y=69.00, z=-64.69], EntityCow['Cow'/61, l='MpServer', x=-295.53, y=68.00, z=-71.69], EntityCreeper['Creeper'/60, l='MpServer', x=-294.97, y=53.00, z=-80.06], EntityChicken['Chicken'/64, l='MpServer', x=-296.34, y=71.00, z=-37.19], EntityCow['Cow'/65, l='MpServer', x=-300.38, y=72.00, z=34.16], EntityZombie['Zombie'/76, l='MpServer', x=-283.16, y=30.00, z=-87.47], EntityCow['Cow'/78, l='MpServer', x=-283.44, y=69.00, z=-80.19], EntityCow['Cow'/79, l='MpServer', x=-274.63, y=71.00, z=-58.03], EntityChicken['Chicken'/81, l='MpServer', x=-274.47, y=70.00, z=-36.53], EntityCow['Cow'/80, l='MpServer', x=-285.13, y=71.00, z=-56.88], EntityBat['Bat'/456, l='MpServer', x=-217.49, y=14.78, z=-21.59], EntityCow['Cow'/82, l='MpServer', x=-284.25, y=71.00, z=49.56], EntityBat['Bat'/93, l='MpServer', x=-243.38, y=35.65, z=39.95], EntityCow['Cow'/92, l='MpServer', x=-266.13, y=68.00, z=-85.78], EntitySkeleton['Skeleton'/88, l='MpServer', x=-267.47, y=31.00, z=-92.84], EntityBat['Bat'/90, l='MpServer', x=-270.25, y=32.10, z=-88.75], EntityCow['Cow'/102, l='MpServer', x=-252.13, y=74.00, z=57.97], EntityCow['Cow'/100, l='MpServer', x=-251.94, y=69.00, z=37.97], EntityCow['Cow'/101, l='MpServer', x=-249.97, y=74.00, z=62.84], EntitySheep['Sheep'/98, l='MpServer', x=-253.94, y=71.00, z=-8.78], EntitySlime['Slime'/99, l='MpServer', x=-243.38, y=28.00, z=26.38], EntityCow['Cow'/97, l='MpServer', x=-246.81, y=72.00, z=-44.19], EntityCow['Cow'/110, l='MpServer', x=-221.47, y=49.69, z=-33.47], EntitySpider['Spider'/111, l='MpServer', x=-217.00, y=39.00, z=-27.16], entitychocolatearrow['entity.killerjdog51.ChocolateArrow.name'/106, l='MpServer', x=-225.13, y=67.03, z=-13.16], EntityCow['Cow'/107, l='MpServer', x=-233.09, y=69.00, z=34.19], EntityCow['Cow'/105, l='MpServer', x=-232.89, y=70.00, z=-29.53], EntityCow['Cow'/117, l='MpServer', x=-204.81, y=66.00, z=16.22], Entitychocolateninja['entity.Chocolate Ninja.name'/115, l='MpServer', x=-218.34, y=64.00, z=-0.31], EntityCow['Cow'/114, l='MpServer', x=-213.03, y=66.00, z=2.13], Entitychocolateninja['entity.Chocolate Ninja.name'/113, l='MpServer', x=-219.63, y=64.00, z=-0.63], EntitySkeleton['Skeleton'/112, l='MpServer', x=-216.44, y=38.00, z=-21.91], EntityZombie['Zombie'/126, l='MpServer', x=-186.30, y=44.12, z=34.70], EntityBat['Bat'/125, l='MpServer', x=-183.01, y=20.89, z=16.01], EntityBat['Bat'/124, l='MpServer', x=-179.68, y=22.97, z=28.47], EntitySheep['Sheep'/123, l='MpServer', x=-178.53, y=64.00, z=-5.22]]

    Retry entities: 0 total; []

    Server brand: fml,forge

    Server type: Integrated singleplayer server

    Stacktrace:

    at net.minecraft.client.multiplayer.WorldClient.addWorldInfoToCrashReport(WorldClient.java:415)

    at net.minecraft.client.Minecraft.addGraphicsAndWorldToCrashReport(Minecraft.java:2556)

    at net.minecraft.client.Minecraft.run(Minecraft.java:980)

    at net.minecraft.client.main.Main.main(Main.java:164)

    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

    at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)

    at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)

    at java.lang.reflect.Method.invoke(Unknown Source)

    at net.minecraft.launchwrapper.Launch.launch(Launch.java:135)

    at net.minecraft.launchwrapper.Launch.main(Launch.java:28)

    at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:78)

    at GradleStart.main(GradleStart.java:45)

     

    -- System Details --

    Details:

    Minecraft Version: 1.7.10

    Operating System: Windows 8.1 (amd64) version 6.3

    Java Version: 1.7.0_71, Oracle Corporation

    Java VM Version: Java HotSpot 64-Bit Server VM (mixed mode), Oracle Corporation

    Memory: 736927480 bytes (702 MB) / 1038876672 bytes (990 MB) up to 1038876672 bytes (990 MB)

    JVM Flags: 3 total; -Xincgc -Xmx1024M -Xms1024M

    AABB Pool Size: 0 (0 bytes; 0 MB) allocated, 0 (0 bytes; 0 MB) used

    IntCache: cache: 0, tcache: 0, allocated: 13, tallocated: 95

    FML: MCP v9.05 FML v7.10.85.1230 Minecraft Forge 10.13.2.1230 4 mods loaded, 4 mods active

    mcp{9.05} [Minecraft Coder Pack] (minecraft.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available

    FML{7.10.85.1230} [Forge Mod Loader] (forgeSrc-1.7.10-10.13.2.1230.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available

    Forge{10.13.2.1230} [Minecraft Forge] (forgeSrc-1.7.10-10.13.2.1230.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available

    killerjdog51{2.2} [Chocolate Mod] (bin) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available

    Launched Version: 1.7.10

    LWJGL: 2.9.1

    OpenGL: Intel® HD Graphics 4400 GL version 4.2.0 - Build 10.18.10.3379, Intel

    GL Caps: Using GL 1.3 multitexturing.

    Using framebuffer objects because OpenGL 3.0 is supported and separate blending is supported.

    Anisotropic filtering is supported and maximum anisotropy is 16.

    Shaders are available because OpenGL 2.1 is supported.

     

    Is Modded: Definitely; Client brand changed to 'fml,forge'

    Type: Client (map_client.txt)

    Resource Packs: []

    Current Language: English (US)

    Profiler Position: N/A (disabled)

    Vec3 Pool Size: 0 (0 bytes; 0 MB) allocated, 0 (0 bytes; 0 MB) used

    Anisotropic Filtering: Off (1)

    [18:08:58] [Client thread/INFO] [sTDOUT]: [net.minecraft.client.Minecraft:displayCrashReport:398]: #@!@# Game crashed! Crash report saved to: #@!@# C:\Users\Jordan\Desktop\1.7.2 Chocolate\eclipse\.\crash-reports\crash-2015-01-05_18.08.58-client.txt

    AL lib: (EE) alc_cleanup: 1 device not closed

     

     

     

    Bow Render

     

    package com.chocolatemod.tools;

     

    import java.lang.reflect.Method;

    import org.lwjgl.opengl.GL11;

    import org.lwjgl.opengl.GL12;

    import net.minecraft.client.Minecraft;

    import net.minecraft.client.entity.EntityClientPlayerMP;

    import net.minecraft.client.renderer.ItemRenderer;

    import net.minecraft.client.renderer.Tessellator;

    import net.minecraft.client.renderer.entity.RenderManager;

    import net.minecraft.client.renderer.texture.TextureManager;

    import net.minecraft.entity.EntityLiving;

    import net.minecraft.item.Item;

    import net.minecraft.item.ItemStack;

    import net.minecraft.util.IIcon;

    import net.minecraft.util.MathHelper;

    import net.minecraft.util.ResourceLocation;

    import net.minecraftforge.client.IItemRenderer;

    import net.minecraftforge.client.IItemRenderer.ItemRenderType;

    public class BowRenderer implements IItemRenderer {

    private RenderManager renderManager;

    private Minecraft mc;

    private TextureManager texturemanager;

     

    public BowRenderer() {

    this.renderManager = RenderManager.instance;

    this.mc = Minecraft.getMinecraft();

    this.texturemanager = this.mc.getTextureManager();

    }

    @Override

    //HandleRenderType lets forge know if it will render the item in the requested view.

    public boolean handleRenderType(ItemStack item, ItemRenderType type) {

    //You can remove everything after "EQUIPPED" if you only want this class to render the third person item.

    return type == ItemRenderType.EQUIPPED || type == ItemRenderType.EQUIPPED_FIRST_PERSON;

    }

    @Override

    //RenderHelpers I don't fully understand, I'd assume they are modifiers, but I've never looked into it.

    public boolean shouldUseRenderHelper(ItemRenderType type, ItemStack item, ItemRendererHelper helper) {

    return false;

    }

    @Override

    //This function decides what to do in rendering an item, whether it's first or third person.

    //Credit to SanAndreasP on minecraftforge forums for this code.

    public void renderItem(ItemRenderType type, ItemStack item, Object... data) {

    EntityClientPlayerMP entity = (EntityClientPlayerMP)data[1];

    ItemRenderer irInstance = this.mc.entityRenderer.itemRenderer;

    GL11.glPopMatrix(); // prevents Forge from pre-translating the item

    if(type == ItemRenderType.EQUIPPED_FIRST_PERSON) {

    this.renderItem(entity, item, 0);

    } else {

    GL11.glPushMatrix();

    // contra-translate the item from it's standard translation

    // also apply some more scale or else the bow is tiny

    float f2 = 3F - (1F/3F);

    GL11.glRotatef(-20.0F, 0.0F, 0.0F, 1.0F);

    GL11.glRotatef(90.0F, 1.0F, 0.0F, 0.0F);

    GL11.glRotatef(-60.0F, 0.0F, 0.0F, 1.0F);

    GL11.glScalef(f2, f2, f2);

    GL11.glTranslatef(-0.25F, -0.1875F, 0.1875F);

     

    // render the item as 'real' bow

    //This is pulled from RenderBiped

    float f3 = 0.625F;

    GL11.glTranslatef(0.0F, 0.125F, 0.3125F);

    GL11.glRotatef(-20.0F, 0.0F, 1.0F, 0.0F);

    GL11.glScalef(f3, -f3, f3);

    GL11.glRotatef(-100.0F, 1.0F, 0.0F, 0.0F);

    GL11.glRotatef(45.0F, 0.0F, 1.0F, 0.0F);

     

    this.renderItem(entity, item, 0);

    GL11.glPopMatrix();

    }

    GL11.glPushMatrix(); // prevents GL Underflow errors

    }

     

    //This actually renders an Icon to be worked with.

    //All of this code is directly pulled from ItemRenderer.class

    private void renderItem(EntityClientPlayerMP par1EntityLiving, ItemStack par2ItemStack, int par3) {

    {

    //If you for whatever reason aren't registering icons with iconRegister, I'm assuming you'll need to change the code below.

    IIcon icon = par1EntityLiving.getItemIcon(par2ItemStack, par3);

    if (icon == null)

    {

    GL11.glPopMatrix();

    return;

    }

    texturemanager.bindTexture(texturemanager.getResourceLocation(par2ItemStack.getItemSpriteNumber()));

    Tessellator tessellator = Tessellator.instance;

    float f = icon.getMinU();

    float f1 = icon.getMaxU();

    float f2 = icon.getMinV();

    float f3 = icon.getMaxV();

    float f4 = 0.0F;

    float f5 = 0.3F;

    GL11.glEnable(GL12.GL_RESCALE_NORMAL);

    GL11.glTranslatef(-f4, -f5, 0.0F);

    float f6 = 1.5F;

    GL11.glScalef(f6, f6, f6);

    GL11.glRotatef(50.0F, 0.0F, 1.0F, 0.0F);

    GL11.glRotatef(335.0F, 0.0F, 0.0F, 1.0F);

    GL11.glTranslatef(-0.9375F, -0.0625F, 0.0F);

    ItemRenderer.renderItemIn2D(tessellator, f1, f2, f, f3, icon.getIconWidth(), icon.getIconHeight(), 0.0625F);

    //This checks for enchantments.

    if (par2ItemStack.hasEffect(par3))

    {

    GL11.glDepthFunc(GL11.GL_EQUAL);

    GL11.glDisable(GL11.GL_LIGHTING);

    texturemanager.bindTexture(new ResourceLocation("textures/misc/enchanted_item_glint.png"));

    GL11.glEnable(GL11.GL_BLEND);

    GL11.glBlendFunc(GL11.GL_SRC_COLOR, GL11.GL_ONE);

    float f7 = 0.76F;

    GL11.glColor4f(0.5F * f7, 0.25F * f7, 0.8F * f7, 1.0F);

    GL11.glMatrixMode(GL11.GL_TEXTURE);

    GL11.glPushMatrix();

    float f8 = 0.125F;

    GL11.glScalef(f8, f8, f8);

    float f9 = (float)(Minecraft.getSystemTime() % 3000L) / 3000.0F * 8.0F;

    GL11.glTranslatef(f9, 0.0F, 0.0F);

    GL11.glRotatef(-50.0F, 0.0F, 0.0F, 1.0F);

    ItemRenderer.renderItemIn2D(tessellator, 0.0F, 0.0F, 1.0F, 1.0F, 256, 256, 0.0625F);

    GL11.glPopMatrix();

    GL11.glPushMatrix();

    GL11.glScalef(f8, f8, f8);

    f9 = (float)(Minecraft.getSystemTime() % 4873L) / 4873.0F * 8.0F;

    GL11.glTranslatef(-f9, 0.0F, 0.0F);

    GL11.glRotatef(10.0F, 0.0F, 0.0F, 1.0F);

    ItemRenderer.renderItemIn2D(tessellator, 0.0F, 0.0F, 1.0F, 1.0F, 256, 256, 0.0625F);

    GL11.glPopMatrix();

    GL11.glMatrixMode(GL11.GL_MODELVIEW);

    GL11.glDisable(GL11.GL_BLEND);

    GL11.glEnable(GL11.GL_LIGHTING);

    GL11.glDepthFunc(GL11.GL_LEQUAL);

    }

    GL11.glDisable(GL12.GL_RESCALE_NORMAL);

    }

    }

    }

     

     

     

    client proxy

     

    MinecraftForgeClient.registerItemRenderer(Tools.ChocolateBow, new BowRenderer());

    MinecraftForgeClient.registerItemRenderer(Tools.DarkChocolateBow, new BowRenderer());

    MinecraftForgeClient.registerItemRenderer(Tools.LightChocolateBow, new BowRenderer());

    MinecraftForgeClient.registerItemRenderer(Tools.WhiteChocolateBow, new BowRenderer());

     

     

    The error specifies these two lines from the Bow Renderer but i dont understand what they mean.

     

    this.renderItem(entity, item, 0);

     

    texturemanager.bindTexture(texturemanager.getResourceLocation(par2ItemStack.getItemSpriteNumber()));

  18. Alright, so i got a new computer and just happened to install java 8 and when i tried to launch minecraft in eclipse it wouldnt work. eventually i learned that minecraft and java 8 dont like eachother. so i uninstalled java 8 and instead installed java 7(jdk and jre). So ive installed forge gradle using java 7 and open my mod in eclipse, so far no errors. I try to launch it in eclipse but it doesnt work, I ended up getting this error. Ive searched on the forums to see if there are any similar errors without much luck. so now im making my own thread. I would really appreciate the help, sincerely killerjdog51.

     

    [06:53:39] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.FMLTweaker

    [06:53:39] [main/INFO] [LaunchWrapper]: Using primary tweak class name cpw.mods.fml.common.launcher.FMLTweaker

    [06:53:39] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLTweaker

    [06:53:39] [main/INFO] [FML]: Forge Mod Loader version 7.2.211.1121 for Minecraft 1.7.2 loading

    [06:53:39] [main/INFO] [FML]: Java is Java HotSpot 64-Bit Server VM, version 1.7.0_71, running on Windows 8.1:amd64:6.3, installed at C:\Program Files\Java\jre7

    [06:53:39] [main/INFO] [FML]: Managed to load a deobfuscated Minecraft name- we are in a deobfuscated environment. Skipping runtime deobfuscation

    [06:53:39] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker

    [06:53:39] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.FMLDeobfTweaker

    [06:53:39] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker

    [06:53:39] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker

    [06:53:39] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper

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

    [06:53:40] [main/ERROR] [FML]: The minecraft jar file:/C:/Users/Jordan/.gradle/caches/minecraft/net/minecraftforge/forge/1.7.2-10.12.2.1121/forgeSrc-1.7.2-10.12.2.1121.jar!/net/minecraft/client/ClientBrandRetriever.class appears to be corrupt! There has been CRITICAL TAMPERING WITH MINECRAFT, it is highly unlikely minecraft will work! STOP NOW, get a clean copy and try again!

    [06:53:40] [main/ERROR] [FML]: FML has been ordered to ignore the invalid or missing minecraft certificate. This is very likely to cause a problem!

    [06:53:40] [main/ERROR] [FML]: Technical information: ClientBrandRetriever was at jar:file:/C:/Users/Jordan/.gradle/caches/minecraft/net/minecraftforge/forge/1.7.2-10.12.2.1121/forgeSrc-1.7.2-10.12.2.1121.jar!/net/minecraft/client/ClientBrandRetriever.class, there were 0 certificates for it

    [06:53:40] [main/ERROR] [FML]: FML appears to be missing any signature data. This is not a good thing

    [06:53:40] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper

    [06:53:40] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLDeobfTweaker

    [06:53:40] [main/INFO] [LaunchWrapper]: Launching wrapped minecraft {net.minecraft.client.main.Main}

    [06:53:41] [main/ERROR] [LaunchWrapper]: Unable to launch

    java.lang.reflect.InvocationTargetException

    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.7.0_71]

    at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.7.0_71]

    at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.7.0_71]

    at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.7.0_71]

    at net.minecraft.launchwrapper.Launch.launch(Launch.java:134) [launchwrapper-1.9.jar:?]

    at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.9.jar:?]

    Caused by: java.lang.UnsatisfiedLinkError: no lwjgl in java.library.path

    at java.lang.ClassLoader.loadLibrary(Unknown Source) ~[?:1.7.0_71]

    at java.lang.Runtime.loadLibrary0(Unknown Source) ~[?:1.7.0_71]

    at java.lang.System.loadLibrary(Unknown Source) ~[?:1.7.0_71]

    at org.lwjgl.Sys$1.run(Sys.java:73) ~[lwjgl-2.9.0.jar:?]

    at java.security.AccessController.doPrivileged(Native Method) ~[?:1.7.0_71]

    at org.lwjgl.Sys.doLoadLibrary(Sys.java:66) ~[lwjgl-2.9.0.jar:?]

    at org.lwjgl.Sys.loadLibrary(Sys.java:95) ~[lwjgl-2.9.0.jar:?]

    at org.lwjgl.Sys.<clinit>(Sys.java:112) ~[lwjgl-2.9.0.jar:?]

    at net.minecraft.client.Minecraft.getSystemTime(Minecraft.java:2674) ~[Minecraft.class:?]

    at net.minecraft.client.main.Main.main(Main.java:40) ~[Main.class:?]

    ... 6 more

     

×
×
  • Create New...

Important Information

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