Jump to content

Draco18s

Members
  • Posts

    16559
  • Joined

  • Last visited

  • Days Won

    156

Everything posted by Draco18s

  1. All of the vanilla loot tables use a predicate for silk touch. Its the same thing.
  2. https://minecraft.gamepedia.com/Predicate
  3. Custom Ore Gen
  4. No idea. 1.12 days, sure. COG can do that. Heck I even added an event to COG to fire after COG ran, so I could be sure that my code 100% ran after COG ran which already ran as super-last as it could.
  5. No. Do not conditionally register items. Do not do this. There is a reason that the registry events run before the configuration events. Do not do this. Do not attempt to do this. Do not.
  6. Worldgen has changed so radically with 1.15 and 1.16 that any answer I give you for a supported version is utterly unhelpful to you. 1.16 worldgen is handled by json data files, for instance.
  7. Congradulations on following directions.
  8. What. Why? Does this mean your BlockItems are in your items mod?
  9. That's what the code block does. Click the <> button when posting.
  10. I don't know why you've insisted on posting your code (and the error) as images. Those things are 100% text.
  11. There's also: https://mcforge.readthedocs.io/en/1.15.x/ And that site is simply an extraction of the in-code Javadoc, so its likely out of date. Not to mention that 1.16 is not fully deobfuscated yet. Anyway, what things do you still need? I know there were a few more changes from 1.14 to 1.15 (and again to 1.16) but I've lost track of the gist for them.
  12. https://gist.github.com/williewillus/353c872bcf1a6ace9921189f6100d09a
  13. <project dir>\run\logs
  14. You could always go look at what those functions do. Pretty sure the first one is something like getDimensionType() and the second would be something like bedsExplode() (If they were to have human readable names).
  15. So... Put the whole thing into a gist... And let us decide the important bits.
  16. Burn time comes from items. Each item tells the furnace how much "fuel time" it is worth. Check AbstractFurnaceTileEntity around line 296 for a method named getBurnTime.
  17. I do see these two errors: [30Oct2020 11:02:56.874] [Server thread/ERROR] [net.minecraft.item.crafting.RecipeManager/]: Parsing error loading recipe continfblocklib:rose_quartz_pillar_stairs com.google.gson.JsonSyntaxException: Unknown item 'continfblocklib:rose_quartz_pillar_stairs' [30Oct2020 11:02:56.879] [Server thread/ERROR] [net.minecraft.item.crafting.RecipeManager/]: Parsing error loading recipe continfblocklib:chiseled_rose_quartz_stairs com.google.gson.JsonSyntaxException: Unknown item 'continfblocklib:chiseled_rose_quartz_stairs'
  18. Your git repository is not a valid Forge project.
  19. https://forums.minecraftforge.net/search/?q=transparent block&type=forums_topic&updated_after=any&sortby=relevancy&search_and_or=and
  20. This cannot be done client side. #ReadTheThread.
  21. The client, as the client, obviously has some way to make blocks break and drop their loot on the server. It doesn't happen by magic (unless packets are magic). All you need to do is find the code that the client already does and make it run automatically instead of on user input.
  22. Sounds like you want a block that is a container of some kind (like the furnace). You might be best served by looking at a working example: https://github.com/TheGreyGhost/MinecraftByExample/tree/1-15-2-final/src/main/java/minecraftbyexample/mbe31_inventory_furnace There's a lot of moving parts to get what you want and trying to explain through machine translation will be difficult.
  23. Missed the giant banner at the top of the forum?
  24. Great you have the value. How about you do something with it instead of just ... ignoring it.
×
×
  • Create New...

Important Information

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