Skip to content
View in the app

A better way to browse. Learn more.

Forge Forums

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

All Activity

This stream auto-updates

  1. Today

  2. bomboklat2011 joined the community
  3. Rosalia751 joined the community
  4. k1se23 joined the community
  5. Oranarpy joined the community
  6. Same issue without this mod?
  7. michaeldiehl12 joined the community
  8. ppap joined the community
  9. Japez joined the community
  10. this has occurred even when i have an empty inventory, and no equipment i have effects my death. i don't know what text2speech is doing or how it is being affected.
  11. Yesterday

  12. anthony moreno joined the community
  13. steezy joined the community
  14. theran joined the community
  15. This looks like a bug with trinketsandbaubles or an item you are wearing with it If you die, a client-side-only function will be fired (text2speech) which is causing the crash
  16. Did anyone figure out a solution to this? I have a friend having this same issue. Running this on Apex hosting. Only person that is getting these errors is one player. everyone else is perfectly fine.
  17. Last week

  18. So I'm new to mod development, and I'm following this tutorial, and I cant seem to figure out why the item isn't being initialized. I followed the code exactly as the video says, but the game just isnt initializing the item as far as i can tell. This is the contents of my ModItems.java file: package notrainbowsteve.mcap.init; import net.minecraft.item.Item; import net.minecraftforge.fml.common.registry.GameRegistry; public class ModItems { public static Item copper_ingot; public static void init() { copper_ingot = new Item().setUnlocalizedName("copper_ingot"); } public static void register() { registerItem(copper_ingot); } public static void registerItem(Item item) { GameRegistry.registerItem(item, item.getUnlocalizedName().substring(5)); System.out.println("Registered Item: " + item.getUnlocalizedName().substring(5)); } } it might be worth noting that I'm not entirely sure what the .substring(5) part under registerItem actually means, specifically the number being used. I think I understand what the substring part means, but I'm not entirely sure on what the 5 means. this is the contents of my main .java file (called MCAP.java): package notrainbowsteve.mcap; import net.minecraftforge.fml.common.Mod; import net.minecraftforge.fml.common.SidedProxy; import net.minecraftforge.fml.common.Mod.EventHandler; import net.minecraftforge.fml.common.event.FMLInitializationEvent; import net.minecraftforge.fml.common.event.FMLPostInitializationEvent; import net.minecraftforge.fml.common.event.FMLPreInitializationEvent; @Mod(modid = Reference.MODID, name = Reference.NAME, version = Reference.VERSION) public class MCAP { @SidedProxy(serverSide = Reference.SERVER_PROXY_CLASS, clientSide = Reference.CLIENT_PROXY_CLASS) public static CommonProxy proxy; @Mod.Instance("mcap") public static MCAP instance; @EventHandler() public static void preInit(FMLPreInitializationEvent event) { ModItems.init(); ModItems.register(); } @EventHandler public static void init(FMLInitializationEvent event) { proxy.registerRenders(); } @EventHandler public static void postInit(FMLPostInitializationEvent event) { } } if I need to give more info, im more than glad to do so if it means i can get this working.
  19. Modded minecraft server crashes when I die, the server does not seem to crash when others die. This has occurred both with myself as the only player online and with others online. Crash log linked below Server Crash report
  20. Thanks, I was able to do it with this public PumpkinManEntity(EntityType<? extends PumpkinManEntity> type, World world) { super(type, world); this.setItemSlot(EquipmentSlotType.HEAD, new ItemStack(Items.CARVED_PUMPKIN)); }
  21. I don't have a 1.16.5 workspace, but in the workspace I'm looking at the Mob class has a method called populateDefaultEquipmentSlots that you could try to override and add your pumpkin head there.
  22. How do I make my biped mob always spawn with a pumpkin head? I'm on 1.16.5
  23. The 253rd episode of Hunger Games on the road to 1000 episodes! Lets see if we can hit that goal! https://www.youtube.com/watch?v=hqcu0mIhzlo
  24. The 252nd episode of Hunger Games on the road to 1000 episodes! Lets see if we can hit that goal! https://www.youtube.com/watch?v=JhfNItZNKJI
  25. The 251st episode of Hunger Games on the road to 1000 episodes! Lets see if we can hit that goal! https://www.youtube.com/watch?v=pQeTJU3wvRc
  26. Earlier

  27. The problem with tutorials and documentation, is that the minecraft code changes constantly, so documentation, outside of the very basics, becomes outdated. Using your example of a list of forge's events, you would use your IDE to browse the minecraftforge classes, specifically net.minecraftforge.event where you will find event classes, as well as other packages further refining the events available, such as events for entities, enchanting, brewing, etc. A lot of things can be accomplished by "seeing how vanilla does it" as well. And of course, when new versions come out, there's a chances anything and everything will break, and have to be recoded with whatever new way things are being done.
  28. Been using Sparked Host for a while. Started with their game hosting, which was pretty good, then switched to a dedicated server with their game panel installed. Been running heavier packs like ATM10 on it and it’s been solid so far, minimal issues. Support is also pretty responsive whenever something comes up. Definitely worth a look I guess
  29. Genuine question: How am I supposed to learn Forge? Right now, I'm trying to make a rather small mod for a custom server me and my friends are making, but I'm struggling quite a lot to learn Forge. I find the documentation quite lacking and it feels weird that I can't even find a list of Forge's event. Yeah sure, there are tutorials to do things in Forge, but if I want to do something that isn't specifically what the tutorial does, I'm screwed. I've been able to progress the mod, but I find myself forced to use quite a lot of AI to ask how should I do things, which I don't like. I must also mention that I have experience with coding, so even though I might not be a very experienced programmer, I don't believe my coding skills are the thing that it's holding me back, but rather the lack of Forge knowledge. So, experienced Forge modders, how did you learn to use Forge and modding?
  30. Hunger Games 250... can't believe we have made it to 250 episodes it's insane! I hope you all enjoy this very special episode of Hunger Games we had SO much fun making it! https://www.youtube.com/watch?v=QP4kKeXEefE
  31. Please post logs from your specific issue (as directed in the FAQ https://forums.minecraftforge.net/topic/125488-rules-and-frequently-asked-questions-faq/) instead of posting on someone elses thread, it will likely get you help faster, as well as identify your specific issue.
  32. Minecraft crashed without a crash report. The logs have been uploaded to paste.kostromdan.dev: ### [latest.log](<https://p.kdan.dev/ZM7QUnW>) | [debug.log head](<https://p.kdan.dev/1SIbax1>) / [tail](<https://p.kdan.dev/KWSKnWZ>) (~10MB & ~48k lines) | [launcher_log.txt](<https://p.kdan.dev/Hr5rwD9>) | [session_20260815_172133.log](<https://p.kdan.dev/JXCy7Ad>) | [crash_assistant_app.log](<https://p.kdan.dev/2PJvQjc>) | [modlist.txt](<https://p.kdan.dev/9Klt332>) | [win_event1786835350015.txt](<https://p.kdan.dev/CRNO8vh>) ### [Mod list changes](<https://p.kdan.dev/cMHBazU>) since the latest successful world join: ```ansi [2;32m0[0m added, [2;31m2[0m removed, [2;34m0[0m updated. ``` help me please im begging you
  33. Did that fix it for you? I'm trying to connect to a friends server but it wont let me play but only for a few min sometimes
  34. The 249th episode of Hunger Games on the road to 1000 episodes! Lets see if we can hit that goal! https://www.youtube.com/watch?v=CMspr0Fsftc
  35. alright, thank you so much for the help!!
  36. Do the same for the curios-server.toml file If it is crashing again, check the first lines for other mentioned config files and delete these
  37. i deleted it and it was in my serverconfig folder, but it crashed again, thank you so much for the help. here's the report Forge 1.20.1 Crash Report [#aqI6Bab]
  38. Add crash-reports with sites like https://mclo.gs/ Delete the fastleafdecay-server.toml in your config folder If there is no such file, check the worldsave, serverconfig folder

Account

Navigation

Search

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.