Skip 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. Your issue is not something I know a lot about, but I would guess your problem is related to how minecraft sends entity data to the client. If you look at ServerEntity.sendPairingData() it sends multiple network packets for each entity. Relevant to your use case are the first 2 packets: ClientboundAddEntityPacket ClientboundSetEntityDataPacket The first packet will lead to that event being called, but the itemstack inside an ItemEntity is sent in the 2nd packet. Until the 2nd packet arrives, the entity will have default values, in your case that is ItemStack.EMPTY (air) There is no guarantee when the 2nd packet will arrive. Interestingly, Mojang added a new feature to client bound network packets in the latest snapshot https://www.minecraft.net/en-us/article/minecraft-snapshot-23w03a I don't know whether they applied this new feature to entity spawns?
  2. https://github.com/MinecraftForge/MinecraftForge/blob/1.19.x/src/main/java/net/minecraftforge/common/IExtensibleEnum.java RecipeBookType is an IExtensibleEnum
  3. Issue with immersive portals, probably a conflict with another mod. Check you have the latest version then contact the mod author.
  4. Issue with create, others have said it is a conflict with optifine. Something to do with drawing map items. Contact the mod authors.
  5. Conflict between apotheosis and uniquebase (unique enchantments). Check you have the latest versions then contact the mod authors.
  6. There is a forge tag for netherite tools: https://forge.gemwire.uk/wiki/Tags#Blocks
  7. Issue with the drinkbeer mod. Check you have the latest version then contact the mod author.
  8. The error you posted suggests there is an issue with the byg config file. Specifically for the "byg:mangrove_sapling" in "C:\Users\among\AppData\Roaming\.minecraft\config\byg\trades.json5" It's likely you have some configuration for a different version of minecraft or byg if you have been switching versions. You should ask the byg mod author how to fix it. Alternatively, you can try backing up the file and then deleting it. Usually if the file is missing, the mod will recreate it with default values.
  9. You can try to capture a thread dump when it freezes to see if it identifies where the server is getting "stuck". You will need a copy of the java development kit to do it. https://www.baeldung.com/java-thread-dump#:~:text=jstack is a command-line,its output to a file.
  10. By the way, it wouldn't suprise if doing things like that causes memory leaks and other issues in modern minecraft versions due to the way "intrinsic holders" work. You shouldn't be creating objects that are mean to go in registries unless you actually intend to register them.
  11. The crafting table doesn't have an internal inventory. Instead the server keeps track of whether the block is still valid and returns the crafting inventory to the player when it is not. Unlike for example the furnace where the items are assigned to its internal inventory. That is why it is closing your screen,.The block does not exist at the position you specified. See for example: https://forums.minecraftforge.net/topic/114789-best-way-to-create-a-custom-crafting-table-in-119/?do=findComment&comment=508881
  12. You need to post a link to the logs so we can see the error(s).
  13. https://forge.gemwire.uk/wiki/Sides#Writing_One-Sided_Mods Client mods can really only do "cosmetic" things. You can't create items on the client. Or more accurately you can, but they will be useless "ghost" items only known to that player.
  14. Maybe this? https://forums.minecraftforge.net/topic/119038-1192-failed-to-run-example-mod-on-fresh-setup/#comment-522788 Otherwise contact AMD.
  15. You will need to experiment with removing mods until the problem goes away. If you are building your own modpack, choosing a lot of mods of varying quality and expecting it work out of the box is not the way to do it. You should add mods in small related groups and test it. That way you will have a good idea which mod is causing problems.
  16. java has a system property (jvm argument) -Djava.net.preferIPv4Stack=true But the real issue is likely in your operating system or router configuration? So you need to talk to whoever provides support for them.
  17. Can you please stop posting logs in the forum. Use a file upload site. It is impossible to use search when there are multiple logs in a thread. You have another mod with invalid data. Again it does not say which mod. Where are you getting these mods from? You should use a proper mod download site.
  18. "[1.19, 1.19.3)" means it wants a version matching 1.19 <= version < 1.19.3 Which 1.19.3 does not. i.e. the mod is not compatible with 1.19.3
  19. I am no expert on reading the spark reports. You should use the spark discord. For what it's worth. I don't see anything related to what you describe. i.e. players logging in, or the server thread getting stuck for a long period time (freeze). If that profile is really representative of what is happening the problem must be elsewhere, e.g. at the networking or system level. According to the metrics, you ran that profile for 1 minute and 1 seconds. During that time it recorded a full system garbage collection taking 1600ms (1.6 seconds) and says your memory (swap) is 93% full. Both are highlighted in red. Like I said above, the spark developers would be the people to ask on how to interpret their data.
  20. Issue with immersive portals - probably a conflict with another mod? Check you have the latest version then contact the mod author.
  21. One of your mods has an invalid version format. The error message does not say which one. The same version id "1.0-1.19+" is probably included in the jar name?
  22. Maybe this: https://forums.minecraftforge.net/topic/119518-exit-code-1073740940/#comment-524102 Otherwise you need to post a link to the logs/debug.log, crash report or launcher_log.txt so we can see the real cause.
  23. The methods in Block(Behaviour) are deprecated because you are not supposed to call them directly. Instead you should use the method on the BlockState. If you are implementing/overridding the method there is no issue. There may sometimes be a better method to implement on the IForgeBlock interface.
  24. Use java 17, mixin does not support java 19
  25. Check you have the latest version then contact the mod author.

Important Information

By using this site, you agree to our Terms of Use.

Account

Navigation

Search

Search

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.