Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 09/05/19 in all areas

  1. No no yes. The only restrictions are it has to be lower case, only certain character; I believe alphanumeric and underscores allowed, and 64 or less characters. Though you shouldn't abbreviate too much like gm, fr, or ae.
    1 point
  2. We will be making an announcement about it when we can. The current state is that it means almost nothing for us. As the license doesn't allow for us to actually USE this information. We are waiting to hear back from Mojang's legal team {This is all stuff they could of answered before the public announcement by asking us, but whatever} Keep an eye on Github/Twitter and we'll keep you updated.
    1 point
  3. I also tried to update to 28.0.91. However it couldn't find the download and when I switched back to the older version it couldn't find that. I think there is a problem with the download servers. It should be fixed here soon.
    1 point
  4. That's because they haven't been implemented in 1.14 forge , yet(I assume). They are currently commented out in the source code under the forge section. You'll have to use Reflection like Draco18s has so helpfully provided an example for.
    1 point
  5. If you want to remove an item from a pool knowing only the item: https://github.com/Draco18s/ReasonableRealism/blob/1.14.4/src/main/java/com/draco18s/hardlib/util/LootUtils.java#L34 You need reflection. (Note: that removes it from all pools, you may wish to only remove from the main pool, from a pool by name, or...)
    1 point
  6. There is only one pool in entity loot tables it's called "main" and you need to remove an entry in that pool. Not the pool itself.
    1 point
  7. This returns the modid(both of our mistakes). You need to use getPath. Also just canceling the event will cause all of the drops for the iron_golem to not drop. So maybe try to remove the pool for the iron ingots instead.
    1 point
  8. That's because the ResourceLocation given by getName has a folder in the path IE entities/iron_golem. Also the namespace is the file name not the item it drops. You'll have to look at the LootTable/LootPool(s).
    1 point
  9. Hey, at least it isn't the soul-eating abyss of java bytecode.
    1 point
  10. Its called "reach" as it applies to all forms of the player interacting with the world. Placing blocks, digging blocks, hitting mobs...
    1 point
  11. Because your overriding a block that has the registry name minecraft:oak_leaves not mymod:oak_leaves
    1 point
  12. I'm confident I said data.minecraft.loot_tables.blocks not data.mymod.loot_tables.blocks
    1 point
  13. its en_us if you're using pack_format 3 in your pack.mcmeta file. If a value isn't specified it uses version 2.
    1 point
  14. That's the one. Welcome to needing Reflection.
    0 points
×
×
  • Create New...

Important Information

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