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 duneons mod (and probably some another unmentioned mod) has caused a conflict in the biome blending. See this link for more information on the problem you are having and the cyanide mod that can help you get more information: https://misode.github.io/guides/feature-order-cycle/ You should check you have the latest version of the duneons mod and then contact the mod author.
  2. https://www.curseforge.com/minecraft/mc-mods/create/files/4011414 The version of create you are using does not say it is compatible with 1.19.3
  3. Then you need to talk to those mod authors instead then. This is the forge support forum. We can help you identify a mod that is causing a problem, but only the mod author can help you fix it.
  4. That's a pretty cryptic error message. ๐Ÿ™‚ It basically says there is something wrong with one of the arguments in the minecraft closure starting on line 15. But doesn't give any other useful information. Maybe it is the hyphen in the mod name? Otherwise, you are going to have to go through it and check you have the brackets,etc. in the right places and check the spellings of the parameter names.
  5. Issue with the flywheel mod. Check you have the latest version then contact the mod author.
  6. This is not the mixin support forum. I believe there is a channel on forge's discord where you can ask about 3rd party modding tools.
  7. You have 2 different versions of jei installed see the mod ids I have underlined above.
  8. You can try subscribing to the LivingHurt event and set the damage to zero when the entity has your active effect. NOTE: This only stops the entity taking damage. Other things like sound and visual effects will stay happen.
  9. Crash in your graphics driver. Here's a link to a possible fix, otherwise contact AMD. https://forums.minecraftforge.net/topic/117925-forge-1192-43147-crashing-on-startup-with-exit-code-1/#comment-519007
  10. Recent topic on the subject: https://forums.minecraftforge.net/topic/118060-1192-rendering-ghost-blocks
  11. That error doesn't identify the mod causing the problem. Post a link to your logs/debug.log so we can see the full error and also try without optifine.
  12. That code is for minecraft 1.8 and hacking away minecraft's authentication is not something we support in this forum anyway. If you want to login in a dev environment, you can use a mod like reauth. https://www.curseforge.com/minecraft/mc-mods/reauth Or if you don't trust that mod with your password, you can copy its code into a mod of your own.
  13. You are trying to use parchment for 1.19.2 with 1.19.3?
  14. Have you tried using your debugger to see why your model is not rendering anything? Personally, I know little to nothing about entity models, and even if I did, I am not going to try to parse what your model is actually doing to find the error. You using your debugger will be much faster and you will learn how it works while doing it. I can also tell this is one of those "I will write my entity from scratch" things. The minecraft Entity has like a million policy methods which if you don't use them properly your entity will be broken. Another reason why I am not going to try parse your code to see what you are missing. Copy a vanilla entity and when you have confirmed it works, change it to your needs. That way you will know which part is broken, it is the part you just changed.
  15. Remove the mods that are forks of each other, and hence have the same name, e.g. rei and jei (both are jei) or jade and wthit (both are waila forks).
  16. Neither mixins or your version of minecraft is supported in these forums. But there is another way (the following shows adding a button to the inventory screen in modern supported versions of minecraft) https://forums.minecraftforge.net/topic/117992-tooltip-depth/#comment-519260
  17. If that really is the correct log? You are missing geckolib.
  18. Issue with the silentcompat mod, check you have the latest version then contact the mod author.
  19. There's no error in that log either. It doesn't show it trying to start minecraft. If you restart the launcher after the crash it will clear that log, so we won't see the error. But if that really is all there is, it looks like a problem with curseforge not installing forge properly. You can ask them how to diagnose/fix what is wrong here: https://support.curseforge.com/en/support/home Or you can try a clean reinstall of curseforge.
  20. There's no error in that log. Post a link to your launcher_log.txt It should be in C:\Users\********\curseforge\minecraft\Install
  21. Because the less boilerplate and wiring code I have to write, the less errors I can make. ๐Ÿ™‚
  22. https://forge.gemwire.uk/wiki/Networking_with_Entities
  23. Works for me, I'm not going to try and debug your random code snippets out of context. @EventBusSubscriber(modid = MODID, bus = Bus.MOD, value = Dist.CLIENT) public class ClientForgeModLoadingTest { @SubscribeEvent public static void reloadListeners(RegisterClientReloadListenersEvent event) { LOGGER.info("------------------> HERE"); event.registerReloadListener(new SimplePreparableReloadListener<Unit>() { @Override protected Unit prepare(ResourceManager resourceManager, ProfilerFiller profiller) { LOGGER.info("------------------> PREPARE"); return Unit.INSTANCE; } @Override protected void apply(Unit ignored, ResourceManager resourceManager, ProfilerFiller profiller) { LOGGER.info("------------------> APPLY"); } }); } }

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.