Jump to content

[1.7.10] Custom Dimension Crashing the Game [SOLVED]


HalestormXV

Recommended Posts

Okay, so I have a custom dimension in my mod and it is really bugging me. When I test it in Eclipse it works just fine. I can enter it and exit it without any issue. However, people are reporting that they are crashing when entering the dimension in the released version of the mod. Here is what one crash report says:

 

http://pastebin.com/VxqFEYJN

 

This is incredibly hard to debug because like I said, on my test environment in eclipse the dimension works just fine. Here is the dimension code:

 

ChunkProvider

http://pastebin.com/SS0Zxya2

 

Dimension Class

 

package com.halestormxv.worldALT;

import net.minecraftforge.common.DimensionManager;

public class Dimension {
/**
 * Regster dimension world providers with the dimension manager.
 */
public static void registerWorldProvider(){
	DimensionManager.registerProviderType(DimensionIDs.LIGHTFORESTDIMENSION, WorldProviderForest.class, true);
}

/**
 * Register dimensions.
 * @param register
 */
public static void registerDimensions(){
	DimensionManager.registerDimension(DimensionIDs.LIGHTFORESTDIMENSION, DimensionIDs.LIGHTFORESTDIMENSION);
}

}

 

 

DimensionID Class

 

package com.halestormxv.worldALT;

import com.halestormxv.Main.celConfiguration;

public class DimensionIDs {

public static int LIGHTFORESTDIMENSION = celConfiguration.celDim_ID;
}

 

 

WorldChunkManager for dimension

http://pastebin.com/nenHN90C

 

WorldProvider for dimension

http://pastebin.com/JkJLgYYr

 

Sky Rendere - Here is the SkyRenderer where it seems like the issue might be originating:

http://pastebin.com/mU2mkQ5Y

 

 

And here is a beautiful picture of my dimension so I can look at it on my screen and say "I know you are working for me"

http://i.imgur.com/VfUXatv.png

Link to comment
Share on other sites

You're trying to access the

RenderGlobal#starGLCallList

field via reflection, but there's no field with that name in the obfuscated client; the field has an SRG name instead.

 

You need to try both the MCP and SRG names of a field/method when using reflection.

ReflectionHelper

accounts for this by accepting multiple names for a field/method and trying each one until it finds one that works.

 

You can find the SRG name of a field/method using the MCP mapping CSV files. The default 1.7.10 mappings can be found in ~/.gradle/caches/minecraft/net/minecraftforge/forge/<forge_version>/unpacked/conf, the default 1.8 mappings and any manually-specified mappings can be found in ~/.gradle/caches/minecraft/de/oceanlabs/mcp/<mappings_channel>/<mappings_version> (replace ~ with %USERPROFILE% on Windows). You can also download mappings from the MCPBot website.

Please don't PM me to ask for help. Asking your question in a public thread preserves it for people who are having the same problem in the future.

Link to comment
Share on other sites

Well thank you for that. I had absolutely no idea about that.

 

Am I able to add

 

minecraft {

    mappings = 'stable_12'

}

 

to my build.gradle and will that resolve the issue for all future builds? Or will I still need to manually switch around the names? Pardon my ignorance but I found no documentation on this when I first started modding and this is only my first mod.

 

EDIT: Apparently I can't do that as adding that to my gradle.build causes my project to fail to compile with a stupid amount of errors that don't even appear in eclipse. So i image that means I have to d it manually?

 

EDIT 2: And just to make sure I am understanding you correctly I would need to change: RenderGlobal#starGLCallList to RenderGlobal#field_72772_v because that is obfuscated ID of it according to the csv file correct? As well as change any references to starGLCallList (which only appears in the SkyRender class to field_72772_v)

Link to comment
Share on other sites

You can update your mappings like that, but a couple of names of widely-used methods/fields have changed since 1.7.10's default mappings versions; so you need to fix your code to use the new names. Most deobfuscated builds of 1.7.10 mods are built for the older mappings, so they won't work properly with the new mappings unless you recompile them yourself. One way around this is to use manually recompiled deobfuscated builds of CodeChickenLib and CodeChickenCore and obfuscated builds of all other mods, which CodeChickenCore will deobfuscate at runtime.

 

If you reference a field/method directly in your code, ForgeGradle will automatically reobfuscate it for you when you build your mod. It's only when dealing with reflection that you need to use both names, since ForgeGradle can't reobfuscate reflection calls.

 

Instead of using this:

ReflectionHelper.getPrivateValue(RenderGlobal.class, renderGlobal, "starGLCallList") // Only MCP name

Use this:

ReflectionHelper.getPrivateValue(RenderGlobal.class, renderGlobal, "starGLCallList", "field_72772_v") // MCP and SRG names

Please don't PM me to ask for help. Asking your question in a public thread preserves it for people who are having the same problem in the future.

Link to comment
Share on other sites

Okay that makes sense. Although I am probably too far into my mod to re-update all of my methods that have been rewritten. So I will probably have to just keep that in mind when doing future mods. Furthermore I am only using the ReflectionHelper.getPrivateValue in one spot in my entire mod so it is probably more efficient and timely to just change that piece of the code.

 

Now that that has been resolved I seem to be running into another issue. When trying to enter my dimension on the server I get a crash report: http://pastebin.com/T8gsRgHN

 

Now do note this crash report is from my mod, compiled, while installed in my modpack, which is why all those other mods are listed. However the issue seems to be with my dimension provider as it is clearly saying it is non-existent. I have once again utilized this in my test environment and it works fine as we can see by my screenshot. So I know the dimension seems to be working in the test environment.

 

However the big difference is that my server runs on kCauldron/Cauldron/MCPC+ (whatever you want to refer to it as).

 

Now I know my provider is being created as indicated in the worldProviderForest class specifically here:

http://pastebin.com/JkJLgYYr (WorldProvider ClassS)

	/** Get Provider for Dimension **/
public static WorldProvider getProviderForDimension(int id)
{
	return DimensionManager.createProviderFor(DimensionIDs.LIGHTFORESTDIMENSION);
}

 

This makes me wonder if this is an issue utilizing kCauldron? Or perhaps I am creating my provider wrong? I know it is something I have done because mods like Twilight Forest, Abyssal Craft, or any other mod that adds dimensions works fine on the server, so it clearly is something on my end.

Link to comment
Share on other sites

Where are you calling

Dimension.registerWorldProvider

and

Dimension.registerDimensions

from?

 

Even if you used the stable_12 mappings, you'd still need to provide both the SRG and MCP names of any method/field you access via reflection. The only time you can use a single name is when the method/field has no MCP name (so it appears as

func_2234_b

/

field_1212_a

even in the development environment).

Please don't PM me to ask for help. Asking your question in a public thread preserves it for people who are having the same problem in the future.

Link to comment
Share on other sites

Ahh thank you, I didn't realize that. The more you know the better lol.

 

As for where I am calling them I am calling them here: http://pastebin.com/XCTP31ej (in my main class)

 

However in going back over my code perhaps it is because I did this:

public WorldProviderForest()
{
	setDimension(DimensionIDs.LIGHTFORESTDIMENSION);
	this.getSaveFolder();
}

 

And I should be doing this:

  public WorldProviderForest()
  {
    setDimension(DimensionIDs.LIGHTFORESTDIMENSION);
    this.saveFolder = ("DIM" + DimensionIDs.LIGHTFORESTDIMENSION);
  }

  public String getSaveFolder()
  {
    return this.saveFolder;
  }

 

that is just a guess and would semi-explain what is going on, maybe?

 

EDIT: Even with the above updates the client still crashes, yet the server doesn't. Matter of fact the achv for entering that dimension still gets complete according to the server console.

 

EDIT 2: Wow total noob move - my server dimID was different from the client dimID. Now my question becomes, is there a way to force sync between the server ID and the client ID and if so how? Forgive my ignorance.

 

EDIT 3: Lastly when the mod has been compiled the custom texture for the sun and the moon in that dimension do not show, yet in the uncompiled testing state they show just fine. Specifically these are set in the SkyRenderer class: http://pastebin.com/mU2mkQ5Y  at lines 116 (sun) and 129 (moon) once the issue in Edit 2 and Edit 3 are resolved that will basically conclude my custom dimension problems. And thank you for the help you have given me thus far.

 

Link to comment
Share on other sites

EDIT 2: Wow total noob move - my server dimID was different from the client dimID. Now my question becomes, is there a way to force sync between the server ID and the client ID and if so how? Forgive my ignorance.

 

There's no built-in config syncing mechanism, but you can send a packet from the server with its configuration options when a client joins and then apply these on the client. You'll need to unregister the previous provider/dimension IDs and register the new ones.

 

EDIT 3: Lastly when the mod has been compiled the custom texture for the sun and the moon in that dimension do not show, yet in the uncompiled testing state they show just fine. Specifically these are set in the SkyRenderer class: http://pastebin.com/mU2mkQ5Y  at lines 116 (sun) and 129 (moon) once the issue in Edit 2 and Edit 3 are resolved that will basically conclude my custom dimension problems. And thank you for the help you have given me thus far.

 

I'm not entirely sure what the problem is there. Do the

ResourceLocation

paths exactly match the paths on disk (including capitalisation)? Try removing the leading slash from the paths.

Please don't PM me to ask for help. Asking your question in a public thread preserves it for people who are having the same problem in the future.

Link to comment
Share on other sites

Just another tidbit: ReflectionHelper#getPrivateValue can take the field index instead of names, e.g.:

// field index is zero-indexed, so n-1
Object o = ReflectionHelper.getPrivateValue(RenderGlobal.class, renderGlobal, 13);
// you'll need to check type and cast to get the actual value

Granted, it's less readable, but sometimes you just want something quick and dirty, e.g. for initial testing (especially if there are only a handful of fields - RenderGlobal is not a good use case).

Link to comment
Share on other sites

I am unfortunately not familiar enough with packets yet to figure out how to get that to work. But I will have to do some research. Perhaps you have some guidance I can look to? However thankfully my pack is distributed via FTB and Technic so my client and server files will always be in sync. But this is good practice to get into regardless.

 

And with respect to the moon and sun. You are correct. Looks like removing the trailing / was all it took lol. Had to recompile the whole mod because of it lol but now it seems to work just fine both on the server and on the client with no issue. Custom sun and moon are showing wonderfully. THANK YOU!

 

And thank you as well coolAlias. I will be happy to keep that in mind. Much appreciated.

Link to comment
Share on other sites

I am unfortunately not familiar enough with packets yet to figure out how to get that to work. But I will have to do some research. Perhaps you have some guidance I can look to?

 

diesieben07 has a tutorial on the Simple Network Implementation here.

Please don't PM me to ask for help. Asking your question in a public thread preserves it for people who are having the same problem in the future.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • https://gist.github.com/it-is-allie/29645c4fb5c7131ad30181769a37d12f There is my latest crash report. I've spent probably 5 hours messing with modpacks and have gotten it almost complete but it then randomly crashes before loading all the mods? I'm not even sure. if anyone  could help it would be greatly appreciated.   
    • Ive been trying to use a new modpack that I made for curse forge and the game keeps crashing. I cant seem to find the issue if anyone could help it would be greatly appreciated. Crash report:  ---- Minecraft Crash Report ---- // My bad. Time: 2024-06-29 23:45:33 Description: Unexpected error java.lang.ArrayIndexOutOfBoundsException: Index 15 out of bounds for length 7     at net.minecraft.client.renderer.LevelRenderer.m_109703_(LevelRenderer.java:372) ~[client-1.20.1-20230612.114412-srg.jar%23224!/:?] {re:mixin,pl:accesstransformer:B,xf:OptiFine:default,re:classloading,pl:accesstransformer:B,xf:OptiFine:default,pl:mixin:A}     at net.minecraft.client.renderer.LevelRenderer.m_109599_(LevelRenderer.java:2275) ~[client-1.20.1-20230612.114412-srg.jar%23224!/:?] {re:mixin,pl:accesstransformer:B,xf:OptiFine:default,re:classloading,pl:accesstransformer:B,xf:OptiFine:default,pl:mixin:A}     at net.minecraft.client.renderer.GameRenderer.m_109089_(GameRenderer.java:1651) ~[client-1.20.1-20230612.114412-srg.jar%23224!/:?] {re:mixin,pl:accesstransformer:B,xf:OptiFine:default,re:classloading,pl:accesstransformer:B,xf:OptiFine:default,pl:mixin:APP:mixins.satin.client.json:event.GameRendererMixin,pl:mixin:APP:tacz.mixins.json:client.GameRendererMixin,pl:mixin:APP:cameraoverhaul.mixins.json:modern.GameRendererMixin,pl:mixin:APP:securitycraft.mixins.json:camera.GameRendererMixin,pl:mixin:A}     at net.minecraft.client.renderer.GameRenderer.m_109093_(GameRenderer.java:1279) ~[client-1.20.1-20230612.114412-srg.jar%23224!/:?] {re:mixin,pl:accesstransformer:B,xf:OptiFine:default,re:classloading,pl:accesstransformer:B,xf:OptiFine:default,pl:mixin:APP:mixins.satin.client.json:event.GameRendererMixin,pl:mixin:APP:tacz.mixins.json:client.GameRendererMixin,pl:mixin:APP:cameraoverhaul.mixins.json:modern.GameRendererMixin,pl:mixin:APP:securitycraft.mixins.json:camera.GameRendererMixin,pl:mixin:A}     at net.minecraft.client.Minecraft.m_91383_(Minecraft.java:1146) ~[client-1.20.1-20230612.114412-srg.jar%23224!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:A,pl:runtimedistcleaner:A}     at net.minecraft.client.Minecraft.m_91374_(Minecraft.java:718) ~[client-1.20.1-20230612.114412-srg.jar%23224!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:A,pl:runtimedistcleaner:A}     at net.minecraft.client.main.Main.main(Main.java:218) ~[forge-47.3.0.jar:?] {re:classloading,pl:runtimedistcleaner:A}     at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:?] {}     at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) ~[?:?] {}     at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?] {}     at java.lang.reflect.Method.invoke(Method.java:568) ~[?:?] {}     at net.minecraftforge.fml.loading.targets.CommonLaunchHandler.runTarget(CommonLaunchHandler.java:111) ~[fmlloader-1.20.1-47.3.0.jar:?] {}     at net.minecraftforge.fml.loading.targets.CommonLaunchHandler.clientService(CommonLaunchHandler.java:99) ~[fmlloader-1.20.1-47.3.0.jar:?] {}     at net.minecraftforge.fml.loading.targets.CommonClientLaunchHandler.lambda$makeService$0(CommonClientLaunchHandler.java:25) ~[fmlloader-1.20.1-47.3.0.jar:?] {}     at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:30) ~[modlauncher-10.0.9.jar:?] {}     at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:53) ~[modlauncher-10.0.9.jar:?] {}     at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:71) ~[modlauncher-10.0.9.jar:?] {}     at cpw.mods.modlauncher.Launcher.run(Launcher.java:108) ~[modlauncher-10.0.9.jar:?] {}     at cpw.mods.modlauncher.Launcher.main(Launcher.java:78) ~[modlauncher-10.0.9.jar:?] {}     at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:26) ~[modlauncher-10.0.9.jar:?] {}     at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:23) ~[modlauncher-10.0.9.jar:?] {}     at cpw.mods.bootstraplauncher.BootstrapLauncher.main(BootstrapLauncher.java:141) ~[bootstraplauncher-1.1.2.jar:?] {} A detailed walkthrough of the error, its code path and all known details is as follows: --------------------------------------------------------------------------------------- -- Head -- Thread: Render thread Suspected Mods: NONE Stacktrace:     at net.minecraft.client.renderer.LevelRenderer.m_109703_(LevelRenderer.java:372) ~[client-1.20.1-20230612.114412-srg.jar%23224!/:?] {re:mixin,pl:accesstransformer:B,xf:OptiFine:default,re:classloading,pl:accesstransformer:B,xf:OptiFine:default,pl:mixin:A}     at net.minecraft.client.renderer.LevelRenderer.m_109599_(LevelRenderer.java:2275) ~[client-1.20.1-20230612.114412-srg.jar%23224!/:?] {re:mixin,pl:accesstransformer:B,xf:OptiFine:default,re:classloading,pl:accesstransformer:B,xf:OptiFine:default,pl:mixin:A}     at net.minecraft.client.renderer.GameRenderer.m_109089_(GameRenderer.java:1651) ~[client-1.20.1-20230612.114412-srg.jar%23224!/:?] {re:mixin,pl:accesstransformer:B,xf:OptiFine:default,re:classloading,pl:accesstransformer:B,xf:OptiFine:default,pl:mixin:APP:mixins.satin.client.json:event.GameRendererMixin,pl:mixin:APP:tacz.mixins.json:client.GameRendererMixin,pl:mixin:APP:cameraoverhaul.mixins.json:modern.GameRendererMixin,pl:mixin:APP:securitycraft.mixins.json:camera.GameRendererMixin,pl:mixin:A} -- Affected level -- Details:     All players: 1 total; [LocalPlayer['cheezbergr'/61, l='ClientLevel', x=-2.50, y=103.00, z=0.50]]     Chunk stats: 961, 552     Level dimension: minecraft:overworld     Level spawn location: World: (0,103,0), Section: (at 0,7,0 in 0,6,0; chunk contains blocks 0,-64,0 to 15,319,15), Region: (0,0; contains chunks 0,0 to 31,31, blocks 0,-64,0 to 511,319,511)     Level time: 40 game time, 40 day time     Server brand: forge     Server type: Integrated singleplayer server Stacktrace:     at net.minecraft.client.multiplayer.ClientLevel.m_6026_(ClientLevel.java:590) ~[client-1.20.1-20230612.114412-srg.jar%23224!/:?] {re:mixin,xf:OptiFine:default,re:classloading,xf:OptiFine:default,pl:mixin:APP:sound_physics_remastered.mixins.json:ClientLevelMixin,pl:mixin:A}     at net.minecraft.client.Minecraft.m_91354_(Minecraft.java:2319) ~[client-1.20.1-20230612.114412-srg.jar%23224!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:A,pl:runtimedistcleaner:A}     at net.minecraft.client.Minecraft.m_91374_(Minecraft.java:740) ~[client-1.20.1-20230612.114412-srg.jar%23224!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:A,pl:runtimedistcleaner:A}     at net.minecraft.client.main.Main.main(Main.java:218) ~[forge-47.3.0.jar:?] {re:classloading,pl:runtimedistcleaner:A}     at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:?] {}     at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) ~[?:?] {}     at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?] {}     at java.lang.reflect.Method.invoke(Method.java:568) ~[?:?] {}     at net.minecraftforge.fml.loading.targets.CommonLaunchHandler.runTarget(CommonLaunchHandler.java:111) ~[fmlloader-1.20.1-47.3.0.jar:?] {}     at net.minecraftforge.fml.loading.targets.CommonLaunchHandler.clientService(CommonLaunchHandler.java:99) ~[fmlloader-1.20.1-47.3.0.jar:?] {}     at net.minecraftforge.fml.loading.targets.CommonClientLaunchHandler.lambda$makeService$0(CommonClientLaunchHandler.java:25) ~[fmlloader-1.20.1-47.3.0.jar:?] {}     at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:30) ~[modlauncher-10.0.9.jar:?] {}     at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:53) ~[modlauncher-10.0.9.jar:?] {}     at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:71) ~[modlauncher-10.0.9.jar:?] {}     at cpw.mods.modlauncher.Launcher.run(Launcher.java:108) ~[modlauncher-10.0.9.jar:?] {}     at cpw.mods.modlauncher.Launcher.main(Launcher.java:78) ~[modlauncher-10.0.9.jar:?] {}     at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:26) ~[modlauncher-10.0.9.jar:?] {}     at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:23) ~[modlauncher-10.0.9.jar:?] {}     at cpw.mods.bootstraplauncher.BootstrapLauncher.main(BootstrapLauncher.java:141) ~[bootstraplauncher-1.1.2.jar:?] {} -- Last reload -- Details:     Reload number: 1     Reload reason: initial     Finished: Yes     Packs: vanilla, mod_resources, file/FreshAnimations_v1.9.1.zip, file/MandalasGUI+Dakmode_1.20.5.zip, file/TZP_1.20.1_2.7.zip -- System Details -- Details:     Minecraft Version: 1.20.1     Minecraft Version ID: 1.20.1     Operating System: Windows 11 (amd64) version 10.0     Java Version: 17.0.8, Microsoft     Java VM Version: OpenJDK 64-Bit Server VM (mixed mode), Microsoft     Memory: 542663936 bytes (517 MiB) / 2705326080 bytes (2580 MiB) up to 4294967296 bytes (4096 MiB)     CPUs: 16     Processor Vendor: AuthenticAMD     Processor Name: AMD Ryzen 7 5800X 8-Core Processor                  Identifier: AuthenticAMD Family 25 Model 33 Stepping 0     Microarchitecture: Zen 3     Frequency (GHz): 3.79     Number of physical packages: 1     Number of physical CPUs: 8     Number of logical CPUs: 16     Graphics card #0 name: Virtual Desktop Monitor     Graphics card #0 vendor: Virtual Desktop, Inc.     Graphics card #0 VRAM (MB): 0.00     Graphics card #0 deviceId: unknown     Graphics card #0 versionInfo: DriverVersion=10.54.50.446     Graphics card #1 name: NVIDIA GeForce RTX 3060 Ti     Graphics card #1 vendor: NVIDIA (0x10de)     Graphics card #1 VRAM (MB): 4095.00     Graphics card #1 deviceId: 0x2489     Graphics card #1 versionInfo: DriverVersion=32.0.15.5612     Memory slot #0 capacity (MB): 8192.00     Memory slot #0 clockSpeed (GHz): 2.13     Memory slot #0 type: DDR4     Memory slot #1 capacity (MB): 8192.00     Memory slot #1 clockSpeed (GHz): 2.13     Memory slot #1 type: DDR4     Virtual memory max (MB): 32572.56     Virtual memory used (MB): 12874.98     Swap memory total (MB): 16286.28     Swap memory used (MB): 0.00     JVM Flags: 4 total; -XX:HeapDumpPath=MojangTricksIntelDriversForPerformance_javaw.exe_minecraft.exe.heapdump -Xss1M -Xmx4096m -Xms256m     Launched Version: forge-47.3.0     Backend library: LWJGL version 3.3.1 build 7     Backend API: NVIDIA GeForce RTX 3060 Ti/PCIe/SSE2 GL version 4.6.0 NVIDIA 556.12, NVIDIA Corporation     Window size: 2560x1080     GL Caps: Using framebuffer using OpenGL 3.2     GL debug messages: id=1282, source=API, type=ERROR, severity=HIGH, message='GL_INVALID_OPERATION error generated. Texture name does not refer to a texture object generated by OpenGL.' x 1     Using VBOs: Yes     Is Modded: Definitely; Client brand changed to 'forge'; Server brand changed to 'forge'     Type: Integrated Server (map_client.txt)     Graphics mode: fancy     Resource Packs: vanilla, mod_resources, file/FreshAnimations_v1.9.1.zip, file/MandalasGUI+Dakmode_1.20.5.zip (incompatible), file/TZP_1.20.1_2.7.zip     Current Language: en_us     CPU: 16x AMD Ryzen 7 5800X 8-Core Processor      Server Running: true     Player Count: 1 / 8; [ServerPlayer['cheezbergr'/61, l='ServerLevel[an endless winter]', x=-2.50, y=103.00, z=0.50]]     Data Packs: vanilla, mod:farmersdelight, mod:weaponmaster_ydm (incompatible), mod:radiantgear (incompatible), mod:cozy_home, mod:ambientsounds, mod:primalwinter, mod:blur (incompatible), mod:satin (incompatible), mod:geckolib, mod:creativecore, mod:supermartijn642corelib, mod:tacz, mod:libraryferret, mod:curios (incompatible), mod:sound_physics_remastered (incompatible), mod:realmrpg_skeletons, mod:forgeendertech, mod:wardrobe, mod:man, mod:betterfog (incompatible), mod:toughasnails (incompatible), mod:bettervillage, mod:mixinextras (incompatible), mod:connectedglass, mod:simply_houses (incompatible), mod:terralith, mod:fusion, mod:adchimneys, mod:the_knocker, mod:forge, mod:dynamictrees (incompatible), mod:tectonic (incompatible), mod:presencefootsteps (incompatible), mod:dtterralith (incompatible), builtin/replace_tree_features_fix (incompatible), builtin/skylands_winter_fix (incompatible), tectonic/terratonic, mod:securitycraft, mod:cameraoverhaul (incompatible)     Enabled Feature Flags: minecraft:vanilla     World Generation: Experimental     OptiFine Version: OptiFine_1.20.1_HD_U_I6     OptiFine Build: 20231221-120401     Render Distance Chunks: 12     Mipmaps: 4     Anisotropic Filtering: 1     Antialiasing: 0     Multitexture: false     Shaders: BSL_v8.2.09.zip     OpenGlVersion: 4.6.0 NVIDIA 556.12     OpenGlRenderer: NVIDIA GeForce RTX 3060 Ti/PCIe/SSE2     OpenGlVendor: NVIDIA Corporation     CpuCount: 16     ModLauncher: 10.0.9+10.0.9+main.dcd20f30     ModLauncher launch target: forgeclient     ModLauncher naming: srg     ModLauncher services:          mixin-0.8.5.jar mixin PLUGINSERVICE          eventbus-6.0.5.jar eventbus PLUGINSERVICE          fmlloader-1.20.1-47.3.0.jar slf4jfixer PLUGINSERVICE          fmlloader-1.20.1-47.3.0.jar object_holder_definalize PLUGINSERVICE          fmlloader-1.20.1-47.3.0.jar runtime_enum_extender PLUGINSERVICE          fmlloader-1.20.1-47.3.0.jar capability_token_subclass PLUGINSERVICE          accesstransformers-8.0.4.jar accesstransformer PLUGINSERVICE          fmlloader-1.20.1-47.3.0.jar runtimedistcleaner PLUGINSERVICE          modlauncher-10.0.9.jar mixin TRANSFORMATIONSERVICE          modlauncher-10.0.9.jar OptiFine TRANSFORMATIONSERVICE          modlauncher-10.0.9.jar fml TRANSFORMATIONSERVICE      FML Language Providers:          [email protected]         lowcodefml@null         javafml@null     Mod List:          client-1.20.1-20230612.114412-srg.jar             |Minecraft                     |minecraft                     |1.20.1              |DONE      |Manifest: a1:d4:5e:04:4f:d3:d6:e0:7b:37:97:cf:77:b0:de:ad:4a:47:ce:8c:96:49:5f:0a:cf:8c:ae:b2:6d:4b:8a:3f         FarmersDelight-1.20.1-1.2.4.jar                   |Farmer's Delight              |farmersdelight                |1.20.1-1.2.4        |DONE      |Manifest: NOSIGNATURE         weaponmaster_ydm-forge-1.20.1-4.2.3.jar           |YDM's Weapon Master           |weaponmaster_ydm              |4.2.3               |DONE      |Manifest: NOSIGNATURE         radiantgear-forge-2.1.5+1.20.1.jar                |Radiant Gear                  |radiantgear                   |2.1.5+1.20.1        |DONE      |Manifest: NOSIGNATURE         cozy_home-3.0.3.2-forge-1.20.1.jar                |Cozy Home                     |cozy_home                     |3.0.3.2             |DONE      |Manifest: NOSIGNATURE         AmbientSounds_FORGE_v6.0.2_mc1.20.1.jar           |AmbientSounds                 |ambientsounds                 |6.0.2               |DONE      |Manifest: NOSIGNATURE         primalwinter-forge-1.20-5.0.0.jar                 |Primal Winter                 |primalwinter                  |5.0.0               |DONE      |Manifest: NOSIGNATURE         blur-forge-3.1.1.jar                              |Blur (Forge)                  |blur                          |3.1.1               |DONE      |Manifest: NOSIGNATURE         satin-forge-1.20.1+1.15.0-SNAPSHOT.jar            |Satin Forge                   |satin                         |1.20.1+1.15.0-SNAPSH|DONE      |Manifest: NOSIGNATURE         geckolib-forge-1.20.1-4.4.7.jar                   |GeckoLib 4                    |geckolib                      |4.4.7               |DONE      |Manifest: NOSIGNATURE         CreativeCore_FORGE_v2.11.30_mc1.20.1.jar          |CreativeCore                  |creativecore                  |2.11.30             |DONE      |Manifest: NOSIGNATURE         supermartijn642corelib-1.1.17-forge-mc1.20.1.jar  |SuperMartijn642's Core Lib    |supermartijn642corelib        |1.1.17              |DONE      |Manifest: NOSIGNATURE         tacz-1.20.1-1.0.1-hotfix-release.jar              |Timeless & Classics Guns: Zero|tacz                          |1.0.1-hotfix        |DONE      |Manifest: NOSIGNATURE         libraryferret-forge-1.20.1-4.0.0.jar              |Library ferret                |libraryferret                 |4.0.0               |DONE      |Manifest: NOSIGNATURE         curios-forge-5.9.1+1.20.1.jar                     |Curios API                    |curios                        |5.9.1+1.20.1        |DONE      |Manifest: NOSIGNATURE         sound-physics-remastered-forge-1.20.1-1.4.2.jar   |Sound Physics Remastered      |sound_physics_remastered      |1.20.1-1.4.2        |DONE      |Manifest: NOSIGNATURE         realmrpg_fallen_adventurers_1.0.3_forge_1.20.1.jar|Realm RPG: Fallen Adventurers |realmrpg_skeletons            |1.0.3               |DONE      |Manifest: NOSIGNATURE         ForgeEndertech-1.20.1-11.1.4.0-build.0572.jar     |ForgeEndertech                |forgeendertech                |11.1.4.0            |DONE      |Manifest: NOSIGNATURE         wardrobe-1.0.3.1-forge-1.20.1.jar                 |Wardrobe                      |wardrobe                      |1.0.3.1             |DONE      |Manifest: NOSIGNATURE         the man 1.20.1 - 1.0.0.jar                        |The Man From The Fog          |man                           |1.0.0               |DONE      |Manifest: NOSIGNATURE         BetterFog-1.20.1-1.2.2.jar                        |Better Fog                    |betterfog                     |1.0.0               |DONE      |Manifest: NOSIGNATURE         [1.20.1] SecurityCraft v1.9.10.jar                |SecurityCraft                 |securitycraft                 |1.9.10              |DONE      |Manifest: NOSIGNATURE         ToughAsNails-1.20.1-9.0.0.96.jar                  |Tough As Nails                |toughasnails                  |0.0NONE             |DONE      |Manifest: NOSIGNATURE         bettervillage-forge-1.20.1-3.2.0.jar              |Better village                |bettervillage                 |3.1.0               |DONE      |Manifest: NOSIGNATURE         mixinextras-forge-0.2.1.jar                       |MixinExtras                   |mixinextras                   |0.2.1               |DONE      |Manifest: NOSIGNATURE         connectedglass-1.1.11-forge-mc1.20.1.jar          |Connected Glass               |connectedglass                |1.1.11              |DONE      |Manifest: NOSIGNATURE         SimplyHouses-1.1.4-1.20.1-forge.jar               |Simply Houses                 |simply_houses                 |1.1.4-1.20.1        |DONE      |Manifest: NOSIGNATURE         Terralith_1.20_v2.5.1.jar                         |Terralith                     |terralith                     |2.5.1               |DONE      |Manifest: NOSIGNATURE         fusion-1.1.1-forge-mc1.20.1.jar                   |Fusion                        |fusion                        |1.1.1               |DONE      |Manifest: NOSIGNATURE         AdChimneys-1.20.1-10.1.11.0-build.0620.jar        |Advanced Chimneys             |adchimneys                    |10.1.11.0           |DONE      |Manifest: NOSIGNATURE         the_knocker-1.3.0a-forge-1.20.1.jar               |The Knocker                   |the_knocker                   |1.3.0               |DONE      |Manifest: NOSIGNATURE         cameraoverhaul-1.1-1.20.4.jar                     |Camera Overhaul               |cameraoverhaul                |1.0.0               |DONE      |Manifest: NOSIGNATURE         forge-1.20.1-47.3.0-universal.jar                 |Forge                         |forge                         |47.3.0              |DONE      |Manifest: 84:ce:76:e8:45:35:e4:0e:63:86:df:47:59:80:0f:67:6c:c1:5f:6e:5f:4d:b3:54:47:1a:9f:7f:ed:5e:f2:90         DynamicTrees-1.20.1-1.3.0-BETA7.jar               |Dynamic Trees                 |dynamictrees                  |1.20.1-1.3.0-BETA7  |DONE      |Manifest: NOSIGNATURE         tectonic-forge-1.19.3-2.3.5a.jar                  |Tectonic                      |tectonic                      |2.3.5a              |DONE      |Manifest: NOSIGNATURE         PresenceFootsteps-1.20.1-1.9.1-beta.1.jar         |Presence Footsteps (Forge)    |presencefootsteps             |1.20.1-1.9.1-beta.1 |DONE      |Manifest: NOSIGNATURE         DynamicTreesTerralith-1.20.1-1.2.1.jar            |Dynamic Trees for Terralith   |dtterralith                   |1.20.1-1.2.1        |DONE      |Manifest: NOSIGNATURE     Crash Report UUID: 8419d3de-1e69-45e4-9683-09da6d42688b     FML: 47.3     Forge: net.minecraftforge:47.3.0  
    • Hi, Forge refuses to recognize the mods "moonlight" and "enhancedcelestial" in my friend's modpack for essential, we have double checked that the modpack we're using has both those mods, and it still won't recognize, saying I don't have them. If I try to manually add these mods into my game, it gives me the "Unexpected custom data from client" error. I am stuck in a loop here. -- Unexpected custom data from client Missing required datapack registries: moonlight:soft_fluids, enchancedcelestials:lunar/event, enhancedcelestials:lunar/dimension_settings, moonlight:map_markers -- Logs https://pastebin.com/rvFnk4n3
    • Good afternoon, I have a problem with the minecraft launcher, when trying to open a version with forge it does not open the minecraft and the launcher gives me an error code 1, this passes me from version 1.17 onwards and without having any mod installed.   [29jun.2024 18:08:14.073] [main/INFO] [cpw.mods.modlauncher.Launcher/MODLAUNCHER]: ModLauncher running: args [--username, MarkitoPlex, --version, 1.20.1-forge-47.3.1, --gameDir, C:\Users\Marco Antonio RL\AppData\Roaming\.minecraft, --assetsDir, C:\Users\Marco Antonio RL\AppData\Roaming\.minecraft\assets, --assetIndex, 5, --uuid, 4768b6d7e7fa48f58946cbe18989d2e3, --accessToken, ????????, --clientId, ZmEwYTkyM2YtZTU2YS00NTVlLWE4NTgtYjY0MWI5YzFhODc1, --xuid, 2535453534635465, --userType, msa, --versionType, release, --quickPlayPath, C:\Users\Marco Antonio RL\AppData\Roaming\.minecraft\quickPlay\java\1719706091955.json, --launchTarget, forgeclient, --fml.forgeVersion, 47.3.1, --fml.mcVersion, 1.20.1, --fml.forgeGroup, net.minecraftforge, --fml.mcpVersion, 20230612.114412] [29jun.2024 18:08:14.077] [main/INFO] [cpw.mods.modlauncher.Launcher/MODLAUNCHER]: ModLauncher 10.0.9+10.0.9+main.dcd20f30 starting: java version 17.0.8 by Microsoft; OS Windows 11 arch amd64 version 10.0 [29jun.2024 18:08:14.178] [main/WARN] [net.minecraftforge.fml.loading.FMLConfig/CORE]: Configuration file C:\Users\Marco Antonio RL\AppData\Roaming\.minecraft\config\fml.toml is not correct. Correcting [29jun.2024 18:08:14.179] [main/INFO] [net.minecraftforge.fml.loading.FMLConfig/CORE]: Incorrect key [earlyWindowShowCPU] was corrected from null to false [29jun.2024 18:08:14.196] [main/INFO] [net.minecraftforge.fml.loading.ImmediateWindowHandler/]: Loading ImmediateWindowProvider fmlearlywindow [29jun.2024 18:08:14.341] [main/INFO] [EARLYDISPLAY/]: Trying GL version 4.6    
  • Topics

×
×
  • Create New...

Important Information

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