Jump to content

Appleblomb

Members
  • Posts

    6
  • Joined

  • Last visited

Converted

  • Gender
    Undisclosed
  • Personal Text
    I am new!

Appleblomb's Achievements

Tree Puncher

Tree Puncher (2/8)

0

Reputation

  1. I figured it was probably a bug back then and would get fixed at some point. Guess it's time to make intermediate items. Thanks!
  2. Hi, I have been trying to add a recipe for 4 cactus green in to 1 charcoal using the furnace. However, it seems that Forge doesn't recognize the item amount in an ItemStack anymore. The recipe works fine except that it only costs 1 item rather than 4. This was supported in a much older version of Forge, so I am not sure if I need to file a bug report or if I am doing something wrong in my code. Thanks! GameRegistry.addSmelting(new ItemStack(Items.dye,4,2), new ItemStack(Items.coal,1,1), 1.0F);
  3. Thanks! Fixed the entity issue. Why would I register the tick handler only with the server? I added @SideOnly(Side.SERVER) above it and it made the code stop working.
  4. What the code tries to do is drop an item if it can't find room in the player's inventory, but I am getting ghost entities. I have been reading a bit in to it and it seems like I need to only run the drop code on the server. If so, how would I accomplish that? Doing anything else wrong? Thanks. http://paste.minecraftforge.net/view/829f33b7
  5. I was using Block.snow instead of Block.blockSnow. It's been a while since I've written a mod, gotta love that block naming.
  6. I have been trying to write a simple mod just to verify that Forge is working and installed properly. It shows up on my loaded mods but the recipe does not work. Here is the code: http://gw.minecraftforge.net/lLI3 Any help is appreciated!
×
×
  • Create New...

Important Information

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