Everything posted by warjort
-
My Minecraft keep crashing when i enter a single player world/server world
There is no crash in that log. If it is the full log, post the launcher_log.txt from directly after the crash.
-
CTD Once entering the world
The crash is with immersive engineering, but it could also be with any of the other mods I have underlined. Check you have the latest versions of these mods then contact the mod authors.
-
Caused by: java.lang.IllegalStateException: Cannot register new entries to DeferredRegister after RegisterEvent has been fired.
https://forge.gemwire.uk/wiki/Registration https://github.com/MinecraftForge/MinecraftForge/blob/8255d7aed3c44129bb08b7b5961f0e9fe3a5a121/src/main/java/net/minecraftforge/registries/DeferredRegister.java#L47
-
[ne.mi.co.ForgeMod/]: Preparing crash report with UUID 25d65cf6-af00-4c13-8d63-6c948c855275
What does the version have to do with it? The proposed solution is at the bottom. https://github.com/Creators-of-Create/Create/issues/4153#issuecomment-1356476914 Although the other solution is likely just to uninstall optifine or whatever other mod is causing the confict.
-
Why is the capability not present on playerclone event if it is present before the player dies?
https://github.com/MinecraftForge/MinecraftForge/blob/d448ffd5398151c14d4668e6798fac8e8b63e02d/src/main/java/net/minecraftforge/common/capabilities/CapabilityProvider.java#L173 e.g. https://github.com/mekanism/Mekanism/blob/c0c34e9bff3d2fd9088cc03f175adf4df291011c/src/main/java/mekanism/common/CommonPlayerTracker.java#L80
-
EXCEPTION_ACCESS_VIOLATION (0xc0000005)
Yes, so you can find all the different solutions that people have found to this long running driver bug.
-
EXCEPTION_ACCESS_VIOLATION (0xc0000005)
Why do you want me to wait? I can't fix AMD's graphics driver.
-
[ne.mi.co.ForgeMod/]: Preparing crash report with UUID 25d65cf6-af00-4c13-8d63-6c948c855275
https://github.com/Creators-of-Create/Create/issues/4153
-
Dawncraft server crash on startup using Apex MC Hosting
Something is taking too long on the server thread. The only clue in what you post is something trying to force load chunks using a command: Which might not be cause, it is just what is running when the 60 second timeout happened. I suggest you speak to the dawncraft modpack authors.
-
EXCEPTION_ACCESS_VIOLATION (0xc0000005)
Issue with your graphics driver. Try this: https://forums.minecraftforge.net/topic/119038-1192-failed-to-run-example-mod-on-fresh-setup/#comment-522788 Otherwise contact AMD
-
anyone help me read this crash report, server crashing
Issue with giacomos_foundry, check you have the latest version then contact the mod author.
-
Gaming crashing while Initializing game
Issue with the puzzleslib mod. Check you have the latest version then contact the mod author.
-
Minecolonies server attempt
You need to post a link to your logs/debug.log
-
Tried Starting a Server, Didn't Work
Broken client side mod you don't need on the server. And please don't post logs directly in the forums. Use a file upload site.
-
weird issue/bug with invisible blocks (?)
You need to take the changes you made to the top post of this thread and copy them onto that bug report. We can't fix "Steam n Rails", only the mod author can do that. They will only be able to do that if you provide all the relevant information. You kind of misunderstood the 5Ws (taking it too literally). It should be more like: Who -> Versions you are using for minecraft, forge, create, steam n rails and any others relevant What -> The actual name of the block(s) not the vague "Minecraft block" etc.
-
org.spongepowered.asm.mixin.transformer.throwables.MixinTransformerError: An unexpected critical error was encountered
Issue with immersive portals, probably a conflict with another mod? Check you have the latest version then contact the mod author.
-
1.19.2 game crashing
That doesn't show the error either. It doesn't show you starting forge. You need to post the launcher_log.txt from directly after the crash. If you restart the launcher, it will clear that log and we won't see the error.
-
[SOLVED][1.19.4] How to remove Items from Vanilla creative tabs?
Yep, this totally broken. I changed my code to print out in more detail what is happening at each step (warning inefficient code) @EventBusSubscriber(modid = MODID, bus = Bus.MOD) public class Test { @SubscribeEvent public static void removePaintings(BuildContents event) { if (event.getTab() == CreativeModeTabs.FUNCTIONAL_BLOCKS) { var entries = event.getEntries(); var paintings = paintings(entries); for (var painting : paintings) { LOG.info(show(painting) + " >> " + show(paintings(entries))); entries.remove(painting); LOG.info(show(painting) + " << " + show(paintings(entries))); } } } public static String show(List<ItemStack> stacks) { return stacks.stream().map(Test::show).collect(Collectors.joining(",", "(", ")")); } public static String show(ItemStack stack) { return stack + " " + stack.getTag(); } public static List<ItemStack> paintings(MutableHashedLinkedMap<ItemStack, ?> entries) { var paintings = new ArrayList<ItemStack>(); for (var entry : entries) { var stack = entry.getKey(); if (stack.is(Items.PAINTING)) { paintings.add(stack); } } return paintings; } } What actually happens when you remove the "kebab" painting is it removes everything else? Something is broken with the remove() of that LinkedList implementation. You can report it here: https://github.com/MinecraftForge/MinecraftForge/issues
-
weird issue/bug with invisible blocks (?)
A video has little useful information. Consider if you have a video of an explosion in real life, all it shows is "something exploded". You have no idea from the video what exploded or why. To be able to diagnose a problem you need to be able answer the 5Ws. https://en.wikipedia.org/wiki/Five_Ws Videos contain little of that type of information.
-
EXCEPTION_ACCESS_VIOLATION (0xc0000005)
This is a crash in native code not forge. Post your launcher_log.txt so we can see the full error.
-
[SOLVED][1.19.4] How to remove Items from Vanilla creative tabs?
This code kind of works for me: @EventBusSubscriber(modid = MODID, bus = Bus.MOD) public class Test { @SubscribeEvent public static void removePaintings(BuildContents event) { if (event.getTab() == CreativeModeTabs.FUNCTIONAL_BLOCKS) { var entries = event.getEntries(); var paintings = new ArrayList<ItemStack>(); for (var entry : entries) { var stack = entry.getKey(); if (stack.is(Items.PAINTING)) { paintings.add(stack); } } paintings.forEach(entries::remove); // DEBUG CODE FROM HERE LOG.info("=======> " + paintings); for (var entry : entries) { var stack = entry.getKey(); if (stack.is(Items.PAINTING)) { LOG.info(stack + " " + stack.getOrCreateTag()); } } } } } But what I am seeing is the "kebab" painting is still in the list. All the other paintings are removed. So the above code should work for you? I suspect the issue is something to do with "kebab" being the default painting variant which is somehow confusing the special key comparison mojang use. ItemStackLinkedList.TYPE_AND_TAG I would need to dig into how PaintingVariants get stored in the NBT and implement the equals/hashCode to understand what is happening. But that doesn't seem relevant to your problem?
-
[1.19.2] How do I make my custom recipe type a shaped recipe?
On that same wiki: https://forge.gemwire.uk/wiki/Custom_Recipes Here are all the references to RecipeSerializer on github. Not all will be forge (since it is a minecraft class) or up-to-date. https://github.com/search?l=Java&q=RecipeSerializer&type=Code Maybe you can find something similar to what you are trying to do.
-
[1.19.2] How do I make my custom recipe type a shaped recipe?
https://forge.gemwire.uk/wiki/Recipes Here's a copy of the current vanilla recipes: https://github.com/misode/mcmeta/tree/data/data/minecraft/recipes
-
weird issue/bug with invisible blocks (?)
Looks like whatever mod is responsible for those blocks is creating "ghost blocks". Blocks that exist on the server but have not been sent to the client. The same thing can happen if the mod only removes the block from the client and not the server. From the little information you provide: you should contact the worldedit mod author. Your post on the railways issue page is likely ignored for lack of information. Rather than using videos (which are useless), post a step by step description on the steps you took to reproduce the problem. e.g. 1) I started with this 2) Then I did this 3) Finally -- describe what happened and why you didn't expect it --
-
[SOLVED][1.19.4] How to remove Items from Vanilla creative tabs?
You cannot usually iterate over a collection and remove elements from it at the same time unless you use the Iterator.remove() method (assuming it supports that method). Your code likely corrupts the iterator's internal cursor. I'm suprised you are not getting ConcurrentModificationExceptions? https://docs.oracle.com/javase/8/docs/api/java/util/Iterator.html#remove-- If an iterator does not support concurrent modification (most don't), the usual workaround is to make a copy of the keys collection and iterate over that.
IPS spam blocked by CleanTalk.