Jump 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.

Leaderboard

Popular Content

Showing content with the highest reputation on 04/29/19 in Posts

  1. That is what you want. Now you should change the translation line in your .lang file into something like: item.imagespawner:imagespawner.name=Image Spawner Also, it seems like you are following a rather bad tutorial that writes unnecessary and pointless code. I would suggest ditching it.
  2. Have you tried looking at the BlockDiamondOre class?
  3. Every mod is for a specific Minecraft version. Download mods for the version you want.
  4. Oh, and for reference, Forge doesn't even have to instantiate the class in order to get a ClassNotFoundException the way you have. Simply by telling the JVM that your client sided packet handler exists is sufficient. Because the JVM goes "I have to load this class, I don't know when--or indeed if at all--any given part of it will be executed, so I'm going to check that all of it is valid. To do that I need to make sure any additional classes it references are ones I can find, just in case I need to load them in the future. Oh what's this? I see a reference to EntityPlayerSP, I don't know what that is or where it find it. Crap."
  5. Hi outflows, I remember running into a similar problem a while ago. The native Mouse cursor did not appear whenever I called mc.displayGuiScreen() at unfortunate times in the game loop. What fixed it for me was to delay the actual call to open the gui to a ClientTickEvent subscriber - something like this: private static GuiScreen openedGuiNextTick; @SubscribeEvent public static void onClientTick(ClientTickEvent event) { if (openedGuiNextTick != null) { Minecraft.getMinecraft().displayGuiScreen(openedGuiNextTick); openedGuiNextTick = null; } } Please correct me if this is bad design, I'm suggesting this because it helped fix my issue back when I ran into it. (This was done in 1.12.2) Thanks and good luck! ?

Important Information

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

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.