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.

warjort

Members
  • Joined

  • Last visited

Everything posted by warjort

  1. The error does not identify a problem mod. Probably the only way you will find it is to experiment with removing mods until the problem goes away. (Backup your world before removing mods). Start with optifine and any other "optimisation" mods you have.
  2. Looks like an issue with the tombstone mod trying and failing to modify oculus? Check you have the latest version then contact the mod author.
  3. One of your mods is using the random number generator incorrectly. The error message does not identify which one. This is what I found when searching github for similar issues: https://github.com/search?q=Accessing+LegacyRandomSource+from+multiple+threads&type=issues Maybe one of them matches a mod you are using?
  4. https://github.com/Asek3/Oculus/issues/257
  5. Issue with resourcefulconfig, check you have the latest version then contact the mod author.
  6. Your ABYSSAL_TREE configured feature has the name minecraft:abyssal_tree ?
  7. Looks like the MonstersGirls mod wants a different version of geckolib? Contact the mod author.
  8. This is not the Geckolib support forum. Questions about geckolib should be asked wherever they provide support. But you can display anything you like on any entity by writing your own layer and registering it using EntityRenderersEvent (see the subclasses). There is no vanilla implementation of the behaviour you want, but you can find code to do it EntityRenderer.renderNameTag() Layer is to EntityRenderer as Widget is to Screen.
  9. You can see how to apply attribute modifiers in for example Horse.setArmourEquipment() it's not complicated at all. It's also the correct way to do it. The swing method still exists: https://github.com/MinecraftForge/MinecraftForge/blob/d176bab28e265263908b0bb509a23734d0d53516/src/main/java/net/minecraftforge/common/extensions/IForgeItem.java#L394 That's a policy hook to control animations, not for ad hoc processing.
  10. Use the 1.19.2 version of journeymap https://www.curseforge.com/minecraft/mc-mods/journeymap/files/all?filter-game-version=1738749986%3A73407
  11. One of your config files is invalid/corrupted. You can find it in the config folder. If you don't have a backup of the file, you can delete it and it should be recreated with default values.
  12. I'm no expert on this stuff. But this simple test based on your code works for me (render a box 10 blocks below the player) @EventBusSubscriber(modid = MODID, value = Dist.CLIENT) public class RenderTest { public static void drawLineBox(PoseStack matrixStack, AABB aabb, float r, float g, float b, float a) { RenderSystem.disableDepthTest(); VertexConsumer vertexConsumer = Minecraft.getInstance().renderBuffers().bufferSource().getBuffer(RenderType.lines()); LevelRenderer.renderLineBox(matrixStack, vertexConsumer, aabb, r, g, b, a); RenderSystem.enableDepthTest(); } @SubscribeEvent public static void renderTest(RenderLevelStageEvent event) { if (event.getStage() == RenderLevelStageEvent.Stage.AFTER_TRIPWIRE_BLOCKS) { AABB shape = Shapes.block().bounds().move(0, -10, 0); drawLineBox(event.getPoseStack(), shape, 1.0f, 1.0f, 1.0f, 1.0f); } } } The box is offset in F5/third person mode towards the camera so there's obviously some additional calculation needed for that? Like I said, no expert.
  13. Looks like a conflict between apotheosis and uniquebase. Check you have the latest versions then contact the mod authors.
  14. Issue with the illuminations mod. Check you have the latest version then contact the mod author.
  15. ObjectSelectionList. e.g. CreateBuffetWorldScreen.BiomeList
  16. Install the latest preview release of optifine.
  17. The only NullPointerException in that log is this: Which suggests there is a problem with your options.txt Or maybe a mod is breaking this processing? But I don't think this is the cause of your crash. Since this is network related, Mojang log those errors at DEBUG level which isn't enabled for minecraft code by default. To see the error you need to add the following to your "java properties/arguments" -Dforge.logging.mojang.level=debug For the Mojang launcher it is in the installation configuration where you configure the -Xmx memory parameter Installations -> edit -> more options -> jvm arguments But as I said above. Mojang's network logging generally doesn't identify the problem mod. The only way to find the mod is to experiment with removing mods.
  18. Maybe this? https://github.com/MinecraftForge/MinecraftForge/blob/d176bab28e265263908b0bb509a23734d0d53516/src/main/java/net/minecraftforge/common/ForgeMod.java#L158 i.e. use LivingEquipmentChangeEvent to add/remove AttributeModifiers to the player when it is your lance.
  19. Looks like you need to give it more heap memory.
  20. Looks like an issue with betterendforge. Probably a conflict with another mod? Check you have the latest version then contact the mod author
  21. Maybe this? https://docs.wispforest.io/owo/system-properties/#-dowohandshakedisable-truefalse Otherwise contact the owo mod author
  22. I suggest you put the code on github so we can see everything in context and try it for ourselves. Posting snippets is pretty useless unless there is an obvious error. One thing I can see is you have an ingredient "S" in your lance recipe but never use it in the recipe. I don't know what happens in that case. You should probably check your log for errors/warnings Finally, you are using the wrong tags if your aim is interoperability with other mods. e.g. minecraft:ingots/steel should be forge:ingots/steel. https://forge.gemwire.uk/wiki/Tags#Items https://github.com/BluSunrize/ImmersiveEngineering/blob/1.18.2/src/generated/resources/data/forge/tags/items/ingots/steel.json

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.