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.

Saphirian

Members
  • Joined

  • Last visited

  1. A lot of this is because of the recent changes regarding textures. (Which I am definitely not a fan of. I hate having hundreds of files for what could've fit in two.) "The method setItemName(String)/setBlockName(String) is undefinded for the type Item/Block": Whereever you are using setItemName(String) or setBlockName(String), replace that with setUnlocalizedName(String). This should fix it. Same goes for getItem/BlockName(String), just use getUnlocalizedName(String). "The constructor Block(int, int, Material) is undefined": In your BlockWhatever classes, your constructors are probably looking like this right now: public BlockWhatever(int par1, int par2, Material par3Material) { super(par1, par2, par3Material); } You need to change it to look like this: public BlockWhatever(int par1, Material par2Material) { super(par1, par2Material); } Of course you will have to get rid of the second parameter when declaring your blocks as well then. With the other stuff, I can't help you since I haven't figured that new texture stuff my self yet.

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.