Jump to content

RedshiftTheFox

Members
  • Posts

    4
  • Joined

  • Last visited

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

RedshiftTheFox's Achievements

Tree Puncher

Tree Puncher (2/8)

0

Reputation

  1. I tend to look at errors before loading a world to see if textures and other files have issues before loading a world. Though I didn't think to define the slab meta data state in the recipe result. I thought it meant something in the registry process lead to the block not being recognized properly. It never crossed my mind that all I needed was the data string. I didn't need to define this in other recipes. I'll keep it in mind for future things I do with modding. I do get some errors for glass slabs, however those errors seem to be largely inconsequential. "No item texture found" errors and model loading exceptions, but they work properly. Probably duplicate methods somewhere in there causing those errors.
  2. I feel like such a massive idiot. I'm so embarrassed right now. Thank you so much. I didn't give one thought that the meta data needed to be determined for the recipe result. You typed exactly what I needed to read. I even tried to put the meta data value in the hard code recipe, but I never thought about putting it in the json recipe file result. This has been bugging me for eight months now. I thought it was something with how hard code recipes were being handled, how the registry process changed or how I was registering the slabs. I never thought that it'd be something so simple.
  3. For whatever reason, using the minecraft:crafting_shaped/shapless parameter landed me with errors before, but now it doesn't. Odd. Back when I was starting to learn Minecraft modding, I wasn't aware that the @EventBusSubscriber could have a mod ID part inside it. It doesn't seem to of done much, but it probably helps having the ID defined in some way. I know that they are registered automatically from the json files, however I get an error when I attempt to have my slab recipes in them. The error states that there is missing data for the blocks. I'm cure this is how my slabs are being registered, I had this particular issue with 1.12.0 as well, but hard coding the recipes in that version worked fine. I'm not sure what exactly is going wrong. None of the other json recipes report missing data errors like this.
  4. I'm new to seeking modding help here, but I'll try to keep it somewhat short and simple. I have a recipe registration issue with a certain type of block; slabs. Particularly slab blocks referencing normal blocks added by this mod. Slab recipes using Vanilla blocks are fine and work without issue. \A side issue which I believe ties into this is that the top-most slab recipe appears in the crafting table after crafting any item/block and appears when any item/block is placed in a crafting table and then removed. The first issue I have no idea what I could do to fix. I don't quite know of a different way of handling slabs right now, of which how they are being registered could be the root issue. One thing I should also state which may very well lead to the registration being part of the problem is that I have to hard code these slab recipes, I run into problems if I try using .JSON files for these slab recipes. The mod is called BuildiBlocks, and was initially developed by another person. However they've allowed me to continue development in their absence. I have the project up on GitHub for anyone who may be able to help me out. It it built on the Forge version 14.23.2.2611 for Minecraft 1.12.2. Taking an older edit of this code, it works flawlessly in 1.12.0, hard coded recipes included. If anyone is able to lend a hand, I very much-so appreciate it. GitHub Link: BuildiBlocks project As a side note, I also can't get it running on Forge servers in this version of earlier versions back to 1.10, but that's for a different post. Edit: Included some images from my development environment that should help show what this issue is for any that may be confused. Or even if you're not confused, maybe it'll help in some way.
×
×
  • Create New...

Important Information

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