Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 06/19/20 in all areas

  1. BoatEntity#getItemBoat() And I'd poke around the recipe system maybe, I'm sure there's a way to get the ingredients/recipe for an item.
    1 point
  2. I haven't looked at boats, but like I said, if the boat is generating the stacks without going through the standard systems, then correct: loot modifiers won't work. All you should have to do is "get boat, tell boat is is broken" and let the boat handle itself.
    1 point
  3. Funny how 144mb for an ingot means that a nugget is 16mb, which is divisible by 4, and the 144 is also divisible by 9. But oh no, a bucket is only 1000mb, meaning an entire metal block block (9 ingots) does not perfectly fit in a bucket. So no, you don't want compatibility with base 4 and base 9, but also base 10. This is as mathematically possible as perfectly tuning a piano.
    1 point
  4. If the boat does its own drops via Java code, it does not hook into the loot_table system and therefor does not invoke the global loot modifiers system. Beyond that I do not understand how that relates to your shark.
    1 point
  5. Ok, but you didn't add your block/item to an existing ore tag (eg iron, gold) you created a new ore type (which is fine) but then didn't tell forge that your new ore type was an ore by adding it to the ores.json list (which is what your code is grabbing): https://github.com/MinecraftForge/MinecraftForge/blob/1.15.x/src/generated/resources/data/forge/tags/items/ores.json
    1 point
  6. 404 Repository Not Found But here, have an example: https://github.com/Draco18s/ReasonableRealism/blob/1.14.4/src/main/resources/data/forge/tags/items/ores/iron.json
    1 point
  7. Check your debug.log, it will probably have an error in there somewhere about it, as it looks like the missing texture colors
    1 point
  8. Register this attribute https://github.com/denyoongi/supernova/blob/f5d2266aae29e75cab510790fcec1f7fbdeee550/src/main/java/com/jiminsdick/supernova/entities/AngelEntity.java#L64
    1 point
  9. Well it has fuckall to do with the code you posted because its entirely handled by the block class. I advise taking a look at the vanilla ores and their class hierarchy.
    1 point
  10. You are wrong. I do not know where you got your information, but structures definitely work, I made them work just in the past couple weeks. Sorry this thread is old, just replying because someone posted some incorrect information saying structures did not work. I made a simple structure test a few weeks ago messing around trying to figure out how to make it work, I only have a partial grasp on it, but feel free to check it out. Good luck, hope it helps you out! https://github.com/Ugdhar/structest
    1 point
×
×
  • Create New...

Important Information

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