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.

lexy

Members
  • Joined

  • Last visited

Everything posted by lexy

  1. *obsolete* can't seem to be able to delete this though
  2. Minecraft.getMinecraft().player is an EntityPlayerSP which is a AbstractClientPlayer (see inheritance hierarchy below). Why do you say it isn't the right one?
  3. Hi ajago359! It's likely this is some version problem. Could you please post the links you've used to download forge and SkyFactory 3 mod?
  4. @Draco18s I do want it to display differently since I currently have no reason to believe the json is being taken into consideration. That's why i first ask for any logged errors.
  5. Cool. Could you also tell me a bit where you copied the original code from? As Draco pointed out your "a" variable gets slightly out of hand. This is most likely because of your 3 loops: for(int j = 0; j < 5; j++) { for(int k = 0; k < 5; k++) { ... for (int n = 0; n < 33; n++) { This can actually get you up to 5 x 5 x 33 = 825 pretty quickly. It's likely you want int j = 0; j < 4 , int k = 0; k < 4, int n = 0; n < 32 which should index the heightmap up to 512 = 4 x 4 x 32 . Exception helps you out by pointing: java.lang.ArrayIndexOutOfBoundsException: 513 at harry.harrysmod.world.dimension.NormalTerrainGen.generateHeightmap(NormalTerrainGen.java:160) So it's likely value 513 for the indexing variable "a" is the ofender while previous values (e.g. 512) were not, hence my idea of limiting it to 512.
  6. Hi! Could you please post the full exception message? Thanks!
  7. Do you get any errors in console while the game world loads? Can you share the full code on some github? I'll try to boot it up as well, don't see any particular thing out of the ordinary. The first thing i'd do is set some display property for first / third person on your imbuedstick.json, see if that changes anything. For you it should look like: { "parent": "item/generated", "textures": { "layer0": "mirenergy:items/imbuedstick" }, "display": { "thirdperson": { "rotation": [-90,0,0], "translation": [0,1,-3], "scale": [0.55,0.55,0.55] }, "firstperson": { "rotation": [0,-135,25], "translation": [0,4,2], "scale": [1.7,1.7,1.7] } } }

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.