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/20/19 in all areas

  1. 1 point
    It will almost certainly be faster than the 1.13 update, but will not be instant.
  2. Well I'm new to forge, but if I were you, the first thing I'd do is look into the generation for the main End island, since it's a single structure surrounded by void.
  3. I

    1 point
    Remove the mods diesieben07 mentioned one by one until the crash no longer occurs.
  4. https://stackoverflow.com/questions/23931546/java-getter-and-setter-faster-than-direct-access Basically if you look at the resulting code after a few iterations of it's execution it should be identical in most cases.
  5. You're probably going to want to use a GuiHandler. Here's a base to start off with. public class GuiHandler implements IGuiHandler{ @Override public Object getServerGuiElement(int ID, EntityPlayer player, World world, int x, int y, int z) { /** * Check IDs here, return container **/ return null; } @Override public Object getClientGuiElement(int ID, EntityPlayer player, World world, int x, int y, int { /** * Check IDs here, return GUI **/ return null; } } When you use player.openGui(...), the one of the parameters is an integer ID. In the GuiHandler, you're going to want to check the ID passed in through parameters against a reference GUI ID. This is how the game knows which GUI to open. As a reference, you can check out the source of my mod here. It's for 1.8, but it should still be applicable for 1.7.10 if memory serves correctly.

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.