I don't know if I'm doing something wrong, or if it was removed and I'm using outdated tutorials, but I just started with this whole Minecraft Forge programming stuff (although I have programmed before) and I went to use LootEntryTable here: (I know it's not complete)
@SubscribeEvent
public void lootLoad(LootTableLoadEvent evt) {
String name = evt.getName().toString();
if (name.contains("minecraft:entities")) {
String entryName = name.split("/")[1];
entryName = "soulstone" + entryName;
LootEntry ent = new LootEntryTable();
// ^^^^
}
}
The first time I added it, I hadn't added the import to use LootEntryTable so when it showed red I went to add the import, it said Create Class 'LootEntryTable'.
LootTableList also doesn't work. The most annoying thing is that I couldn't find anything about it anywhere. I replaced all the files after redownloading the mdk and it still doesn't work.
And I use IntelliJ, I'm not sure if that matters.
Also, it's my first time posting here so if I forgot something just tell me what to add.