Jump to content

Recommended Posts

Posted

I tried to boot up Forge 40.1.51 for 1.18.2, and it crashed with the error, "The game crashed while rendering overlay: java.lang.IllegalStateException: Render layers can only be set during client loading! This might ideally be done from `FMLClientSetupEvent`." Can anyone tell me what's going on?

Crash report: https://ufile.io/ew2g7trp

Posted
9 hours ago, Luis_ST said:

Problem with Chisel. Make sure you are using the latest version.
If the Mod is already up to date, report this bug to the Mod author.

Tried taking out the mod entirely since it was the latest version, still getting the same error

Posted (edited)
5 minutes ago, TheMCAngryBird said:

Tried taking out the mod entirely since it was the latest version, still getting the same error

post new debug log without Chisel

3 minutes ago, AmogusManS0S said:

Does it say anything about fluid? Or like strings or something like that?

no, otherwise I would told him that "One of your mods needs to update to the new Fluid implementation" which is not the case in the first log

Edited by Luis_ST
Posted

 

1 minute ago, Luis_ST said:

post new debug log without Chisel

no, otherwise I would told him that "One of your mods needs to update to the new Fluid implementation" which is not the case in the first log

Oh okay...

Posted

This is an issue with forge I believe. I've had it for every forge update > 40.1.41
Try using this version of forge; it fixes it for me.
Annoying because you can't update mods because they require versions of forge that seem to be breaking for a lot of poeple...
(you might also have to downgrade some mods because of this ^^^)

Posted
4 minutes ago, Arkaeic said:

This is an issue with forge I believe. I've had it for every forge update > 40.1.41
Try using this version of forge; it fixes it for me.
Annoying because you can't update mods because they require versions of forge that seem to be breaking for a lot of poeple...
(you might also have to downgrade some mods because of this ^^^)

Good to know

Also, it's not letting me post a screenshot fsr

Posted (edited)

The confusion here I believe is due to the log mentioning team.chisel, which unless I'm mistaken is a texture team at forge? the chisel mod doesn't even have a 1.18 version (in the CurseForge app at least) and team.chisel seems to get mentioned still. Given that I can't even install chisel rn, and have never installed chisel & bits, i believe the mention of team.chisel is not in relation to the chisel mod

EDIT: Never mind I googled it. team.chisel.ctm is the team behind ConnectedTexturesMod. I'd rather not play without this tbh so I'm going to stay on 40.1.41

Edited by Arkaeic
Posted
Just now, Arkaeic said:

The confusion here I believe is due to the log mentioning team.chisel, which unless I'm mistaken is a texture team at forge? the chisel mod doesn't even have a 1.18 version (in the CurseForge app at least) and team.chisel seems to get mentioned still. Given that I can't even install chisel rn, and have never installed chisel & bits, i believe the mention of team.chisel is not in relation to the chisel mod

I was using Chisels and Bits, that might have something to do with it

Posted
3 minutes ago, Arkaeic said:

EDIT: Never mind I googled it. team.chisel.ctm is the team behind ConnectedTexturesMod. I'd rather not play without this tbh so I'm going to stay on 40.1.41

Ah, I see. I'm using CTM, so that explains it

Posted (edited)

Hope this helps :)
Fingers crossed for either a connected textures mod patch or for a forge update that works with this or something (like i said, forge 40.1.41 still works with ctm installed)

Edited by Arkaeic

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.

Announcements



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • I have no idea what the flip is going on, I can load the modpack just fine at forge 42.2.0 but any forge version above it insta-crashes with exit code 1. Can somebody tell me what's going on, this is minecraft 1.20.1 Latest.log: https://pastebin.com/pBUL1ZFa
    • does anyone know how to incorporate custom noise settings into a custom dimension through the use of datagen, I have created a custon json file for the noise settings that I want but I just don't know how to get it to register with the generated json file of the custom dimension.   here is the code for the dimension class package net.hurst.lustria.worldgen.dimension; import com.mojang.datafixers.util.Pair; import net.hurst.lustria.Lustria; import net.hurst.lustria.worldgen.biome.ModBiomes; import net.hurst.lustria.worldgen.registries.LustriaNoiseSettings; import net.minecraft.core.HolderGetter; import net.minecraft.core.registries.Registries; import net.minecraft.data.worldgen.BootstapContext; import net.minecraft.resources.ResourceKey; import net.minecraft.resources.ResourceLocation; import net.minecraft.tags.BlockTags; import net.minecraft.util.valueproviders.ConstantInt; import net.minecraft.world.level.Level; import net.minecraft.world.level.biome.*; import net.minecraft.world.level.dimension.BuiltinDimensionTypes; import net.minecraft.world.level.dimension.DimensionType; import net.minecraft.world.level.dimension.LevelStem; import net.minecraft.world.level.levelgen.NoiseBasedChunkGenerator; import net.minecraft.world.level.levelgen.NoiseGeneratorSettings; import java.util.List; import java.util.OptionalLong; public class ModDimensions { public static final ResourceKey<LevelStem> LUSTRIA_KEY = ResourceKey.create(Registries.LEVEL_STEM, ResourceLocation.fromNamespaceAndPath(Lustria.MOD_ID, "lustriadim")); public static final ResourceKey<Level> LUSTRIA_LEVEL_KEY = ResourceKey.create(Registries.DIMENSION, ResourceLocation.fromNamespaceAndPath(Lustria.MOD_ID, "lustriadim")); public static final ResourceKey<DimensionType> LUSTRIA_DIM_TYPE = ResourceKey.create(Registries.DIMENSION_TYPE, ResourceLocation.fromNamespaceAndPath(Lustria.MOD_ID, "lustriadim_type")); public static void bootstrapType(BootstapContext<DimensionType> context) { context.register(LUSTRIA_DIM_TYPE, new DimensionType( OptionalLong.of(12000), // fixedTime false, // hasSkylight true, // hasCeiling false, // ultraWarm false, // natural 1.0, // coordinateScale true, // bedWorks false, // respawnAnchorWorks -64, // minY 256, // height 256, // logicalHeight BlockTags.INFINIBURN_OVERWORLD, // infiniburn BuiltinDimensionTypes.OVERWORLD_EFFECTS, // effectsLocation 0.0f, // ambientLight new DimensionType.MonsterSettings(false, false, ConstantInt.of(0), 0))); } public static void bootstrapStem(BootstapContext<LevelStem> context) { HolderGetter<Biome> biomeRegistry = context.lookup(Registries.BIOME); HolderGetter<DimensionType> dimTypes = context.lookup(Registries.DIMENSION_TYPE); HolderGetter<NoiseGeneratorSettings> noiseGenSettings = context.lookup(Registries.NOISE_SETTINGS); NoiseBasedChunkGenerator wrappedChunkGenerator = new NoiseBasedChunkGenerator( new FixedBiomeSource(biomeRegistry.getOrThrow(Biomes.BEACH)), noiseGenSettings.getOrThrow(NoiseGeneratorSettings.CAVES)); NoiseBasedChunkGenerator noiseBasedChunkGenerator = new NoiseBasedChunkGenerator( MultiNoiseBiomeSource.createFromList( new Climate.ParameterList<>(List.of(Pair.of( Climate.parameters(0.0F, 0.0F, 0.0F, 0.0F, 0.0F, 0.0F, 0.0F), biomeRegistry.getOrThrow(Biomes.BEACH)), Pair.of( Climate.parameters(0.1F, 0.2F, 0.0F, 0.2F, 0.0F, 0.0F, 0.0F), biomeRegistry.getOrThrow(Biomes.BIRCH_FOREST)), Pair.of( Climate.parameters(0.3F, 0.6F, 0.1F, 0.1F, 0.0F, 0.0F, 0.0F), biomeRegistry.getOrThrow(Biomes.OCEAN)), Pair.of( Climate.parameters(0.4F, 0.3F, 0.2F, 0.1F, 0.0F, 0.0F, 0.0F), biomeRegistry.getOrThrow(Biomes.DARK_FOREST)) ))), noiseGenSettings.getOrThrow(NoiseGeneratorSettings.CAVES)); LevelStem stem = new LevelStem(dimTypes.getOrThrow(ModDimensions.LUSTRIA_DIM_TYPE), noiseBasedChunkGenerator); context.register(LUSTRIA_KEY, stem); } } minecraft version is 1.20.1
    • Please read the FAQ (https://forums.minecraftforge.net/topic/125488-rules-and-frequently-asked-questions-faq/) and post logs as described there using a site like https://mclo.gs and post the link to it here. It may have the information required to solve your problem.  
    • the error code comes up when i trry to run it and ive tried to fix it but i cant  
  • Topics

×
×
  • Create New...

Important Information

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