Jump to content

[1.8]recipes whith buckets bug/feature is there a work around for this?<SOLVED>


perromercenary00

Recommended Posts

 

good days i found another feature hidden in 1.8

 

wen you create a recipe in way it return an item and a empy bucket all the derivated craftings using that item will return empty buckets

 

and i have

 

//Hierro al rojo vivo

GameRegistry.addSmelting(Items.iron_ingot, new ItemStack(MercenaryModItems.hierroAlrojo), 0.7F);

 

//and then acero mercenario

GameRegistry.addRecipe(new ItemStack(MercenaryModItems.aceroMercenario.setContainerItem(Items.bucket)),  new Object[] {" # ", " W ", "  ", '#' , MercenaryModItems.hierroAlrojo, 'W' , Items.water_bucket });

 

//whit aceromercenerio i do barra de acero notese there is no bucket in this recipe but return buckets as well

GameRegistry.addRecipe(new ItemStack(MercenaryModItems.barradeAcero,4), new Object[] {"  ", " # ", " # ", '#', MercenaryModItems.aceroMercenario, });

 

and here a video showing the issue

 

 

is there  workaround for this i realy like the idea of make steel trowing hot iron in a water bucket but this way i must change the recipe for the sake of logic 

 

 

 

 

Link to comment
Share on other sites

Yap i solv it

well itink i do i just muve the set container item to the water bucket in input know i think i just move the trouble to other place but for now is fine

 

it becomes rigth this

 

GameRegistry.addRecipe(new ItemStack(MercenaryModItems.aceroMercenario),  new Object[] {" # ", " W ", "  ", '#' , MercenaryModItems.hierroAlrojo, 'W' , Items.water_bucket.setContainerItem(Items.bucket) });

 

and there is no more buckets in the derivated items crafting whith acero mercenario

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Announcements



×
×
  • Create New...

Important Information

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