Jump to content
  • Home
  • Files
  • Docs
Topics
  • All Content

  • This Topic
  • This Forum

  • Advanced Search
  • Existing user? Sign In  

    Sign In



    • Not recommended on shared computers


    • Forgot your password?

  • Sign Up
  • All Activity
  • Home
  • Mod Developer Central
  • Modder Support
  • [1.12] Trouble with Recipes
Currently Supported: 1.16.X (Latest) and 1.15.X (LTS)
Sign in to follow this  
Followers 0
Draco18s

[1.12] Trouble with Recipes

By Draco18s, August 27, 2017 in Modder Support

  • Reply to this topic
  • Start new topic

Recommended Posts

Draco18s    2414

Draco18s

Draco18s    2414

  • Reality Controller
  • Draco18s
  • Members
  • 2414
  • 15998 posts
Posted August 27, 2017 (edited)

No errors in the log, recipe not available in-game.

gooblob.json, located at resources\assets\oreflowers\recipe:

{
    "type": "minecraft:crafting_shaped",
    "pattern": [
        "xx",
        "xx"
    ],
    "key": {
        "x": {
            "item": "oreflowers:oreflowers1",
            "data": 4
        }
    },
    "result": {
        "item": "oreflowers:sticky_goo",
        "data": 0
    }
}

(I also tried resources\assets\oreflowers\recipes but another thread indicated that that was wrong).

 

Also, I love how we went to enums for everything, only to then change to JSON files for recipes where raw metadata is used. 9_9

new ItemStack(oreFlowersDesert1,1,EnumOreFlowerDesert1._4AVELOZ.getOrdinal()

Was so good in 1.10 and 1.11.

Edited August 27, 2017 by Draco18s
  • Quote

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

 

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

 

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

Share this post


Link to post
Share on other sites

Eastonium    1

Eastonium

Eastonium    1

  • Creeper Killer
  • Eastonium
  • Members
  • 1
  • 151 posts
Posted August 27, 2017

First, I believe "recipes" is correct, as that is what I am using currently. Either that or both "recipe" and "recipes" works?

I just tested what you have here, and can confirm that my test recipe (basically identical) also did not load, and did not error either. You're not crazy!

I have a similar recipe that uses a shaped ore recipe that works though, so try changing the recipe type to "forge:ore_shaped".

If it works, I'm guessing you might have another problem: the recipe book will try to place the items in like "xxx", "x--", "---". If it does, there are a couple problems with forge that need to be fixed.

 

  • Quote

Share this post


Link to post
Share on other sites

Draco18s    2414

Draco18s

Draco18s    2414

  • Reality Controller
  • Draco18s
  • Members
  • 2414
  • 15998 posts
Posted August 27, 2017

Nope, still not working.

I even tried setting the recipe to "xx ","xx ", "   ", using # instead of x, removing the data:0 on the result (the output item doesn't have subtypes).

 

No dice.

16 minutes ago, Eastonium said:

the recipe book will try to place the items in like "xxx", "x--", "---". If it does, there are a couple problems with forge that need to be fixed.

Also didn't appear to be true.

  • Quote

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

 

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

 

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

Share this post


Link to post
Share on other sites

Draco18s    2414

Draco18s

Draco18s    2414

  • Reality Controller
  • Draco18s
  • Members
  • 2414
  • 15998 posts
Posted August 28, 2017

Finally figured it out.

Turns out my data value was off by 1...making it want a flower variant that didn't exist (pure coincidence).

  • Quote

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

 

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

 

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

Share this post


Link to post
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.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  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.

    • Insert image from URL
×
  • Desktop
  • Tablet
  • Phone
Sign in to follow this  
Followers 0
Go To Topic Listing



  • Recently Browsing

    No registered users viewing this page.

  • Posts

    • poopoodice
      [1.16.4] Null when OpenGUI

      By poopoodice · Posted 14 minutes ago

      https://github.com/Beardlessbrady/Currency-Mod/blob/master-1.16/src/main/java/com/beardlessbrady/gocurrency/blocks/vending/VendingTile.java#L68 This should not be null.
    • -MCS_Gaming-
      Matchmaking System?

      By -MCS_Gaming- · Posted 16 minutes ago

      I'm making an fps style mod and want to implement a matchmaking system, but I have absolutely no idea where to begin. Would anyone be able to give me some pointers as to how I would go about doing this?
    • BeardlessBrady
      [1.16.4] Null when OpenGUI

      By BeardlessBrady · Posted 39 minutes ago

      While trying to open a gui in my block my console returns with this error: https://pastebin.com/XNYzf9pe Its basically saying that something is null on line 51. I am checking if namedContainerProvider is null and its doubtful the player is null so that means the NetworkHooks is returning null? How does one fix that issue.   Below is a link to the line the error is referring to: https://github.com/Beardlessbrady/Currency-Mod/blob/master-1.16/src/main/java/com/beardlessbrady/gocurrency/blocks/vending/VendingBlock.java#L51
    • Beethoven92
      [1.16.5] Beacon Overwrite (Screen Error)

      By Beethoven92 · Posted 53 minutes ago

      The beacon container uses a proximity check to see if the player is near enough to open the container..unfortunately this check is hardcoded to only work with the vanilla Blocks.BEACON. So if you created your own beacon block this will be different from the vanilla one, and the proximity check will always fail leading to the behavior you described above. You need to override canInteractWith in your ModBeaconContainer (which i suppose directly inherits from the BeaconContainer class?) and allow interaction with your own Beacon block
    • ThisIsNotOriginal
      Error at load_registries event phase

      By ThisIsNotOriginal · Posted 1 hour ago

      I'm having a problem where when I run minecraft it shows error at load_registries event phase. Here is the error log and registry events. https://pastebin.com/zMVC8wTJ Registry Events https://pastebin.com/FtuVQLKq Log   Thank you in advance
  • Topics

    • BeardlessBrady
      1
      [1.16.4] Null when OpenGUI

      By BeardlessBrady
      Started 39 minutes ago

    • -MCS_Gaming-
      0
      Matchmaking System?

      By -MCS_Gaming-
      Started 16 minutes ago

    • Nyko
      1
      [1.16.5] Beacon Overwrite (Screen Error)

      By Nyko
      Started 15 hours ago

    • ThisIsNotOriginal
      0
      Error at load_registries event phase

      By ThisIsNotOriginal
      Started 1 hour ago

    • GhostGamesFSM
      1
      1.16 Ore generation.

      By GhostGamesFSM
      Started 3 hours ago

  • Who's Online (See full list)

    • Draco18s
    • BeardlessBrady
    • Varzac
    • -MCS_Gaming-
    • JackRaidenPH
    • Top_DawgsPM
    • Talp1
    • onyxwarrior117
  • All Activity
  • Home
  • Mod Developer Central
  • Modder Support
  • [1.12] Trouble with Recipes
  • Theme

Copyright © 2019 ForgeDevelopment LLC · Ads by Longitude Ads LLC Powered by Invision Community