Everything posted by warjort
-
Change isFireResistant item property
In that case it is the ItemEntity/ItemStack that needs to be fire proof not the Item. To do that you would need to put some additional data in the ItemStack NBT to say it is fireproof. Then when the ItemEntity is spawned into the world you replace it with your own custom ItemEntity that has something like: @Override public boolean isInvulnerableTo(DamageSource pSource) { return super.isInvulnerableTo(pSource) || pSource.isFire(); // Add check to ignore fire damage } You can see an example of replacing an ItemEntity spawn here: https://github.com/MinecraftForge/MinecraftForge/blob/73c1934e7ef931bafbafd0ceb6dce4cdd5dc02a2/src/main/java/net/minecraftforge/common/ForgeInternalHandler.java#L36 Instead of checking for hasCustomEntity() you see if the ItemStack has your "fireproof" NBT.
-
Forge 1.18.2 M1 Mac (Couldn't select a valid version of the Java runtime to download)
Probably this issue? https://bugs.mojang.com/browse/MC-252565?focusedCommentId=1170527&page=com.atlassian.jira.plugin.system.issuetabpanels%3Acomment-tabpanel#comment-1170527 Forge never attempts to select or download java, it is Mojang's launcher that does this.
-
Change isFireResistant item property
You can do that if you use an access transformer. https://forge.gemwire.uk/wiki/Access_Transformers But that will change all ItemStacks for that item, not just the ItemStack being held by the player.
-
org.spongepowered.asm.mixin.transformer.throwables.MixinTransformerError: An unexpected critical error was encountered
As quoted above, you are using the wrong version of journey map.
-
[1.18.2] ItemRenderer#renderGuiItem save result to png file
Correction: I can see you wanting to use the ItemRenderer for items that have non-trivial models. You won't be able to use the raw pngs for them and some items like grass need colors applied to them. I am not familiar with the processing to turn buffers into images. But if I was going to do it, I would look at how Minecraft.grabPanoramixScreenShot() creates a NativeImage? Obviously, you will be rendering just the item not the full Level. ๐
-
[1.18.2] ItemRenderer#renderGuiItem save result to png file
That sounds like the completely wrong way to do this. You already have a .png file in the mod jar(s). A quick look at the MCEF source code shows it has a mechanism to have custom urls (schemes) that you can use to reference minecraft assets. There's even some code in their example mod https://github.com/Mysticpasta1/mcef-forge/blob/51e69d97e4241501ec33f96d066176eb4c723fd1/src/main/java/net/montoyo/mcef/example/ExampleMod.java#L41 If you have problems adapting that example to your use case, talk to the mod author. NOTE: The actual implementation of that example looks kind of horrible. It should at least be using Minecraft.getInstance().getResourceManager().getResource() instead of Class.getResourceAsStream().
-
org.spongepowered.asm.mixin.transformer.throwables.MixinTransformerError: An unexpected critical error was encountered
That warning is not necessarily an error, it can just mean the developer is sloppy.
-
org.spongepowered.asm.mixin.transformer.throwables.MixinTransformerError: An unexpected critical error was encountered
- Help With Registering Configured WorldCarver 1.18.2
If you are using TerraBlender then you need to ask them.- Help With Registering Configured WorldCarver 1.18.2
You don't post the full context again, but I would guess this is configuring your custom Biome? Your biome is not present in the normal worldgen. If you want to modify other people's biomes (including vanilla) you need to use the BiomeLoadingEvent, it is called for every registered biome. In particular, event.getGeneration() gives you access each biome's BiomeGenerationSettingsBuilder- Entity crash
[05Sep2022 15:45:19.825] [modloading-worker-0/ERROR] [net.minecraft.Util/]: Entity examplemod:digger_entity has no attributes You need to subscribe to EntityAttributeCreationEvent and register the attributes for your entity. e.g. untested pseudo code @Mod.EventBusSubscriber(modid = MODID, bus = Bus.MOD) public class ModEvents { @SubscribeEvent public static void registerEntityAttributes(EntityAttributeCreationEvent event) { event.put(EntityInit.EXAMPLE.get(), Mob.createMobAttributes().build()); } } Replace Mob.createMobAttributes() with your own code if these are not the attributes you want.- Forge Client crashes with no mods
That is a question for ATI/AMD. It is their software that is crashing. Just the other day, somebody else found a different way to fix this problem: https://forums.minecraftforge.net/topic/115371-forge-1192-exit-code-1/#comment-514404- Help With Registering Configured WorldCarver 1.18.2
You should donate to LexManos who pays for these forums. See his footer: https://forums.minecraftforge.net/topic/115670-forge-431-minecraft-1192/#comment-511620- Help With Registering Configured WorldCarver 1.18.2
This is a compiler error. If the compiler tells you something is wrong, you need to be able to understand how to fix it. It's caused by public class ModCaveCarver extends CaveWorldCarver { CaveWorldCarver needs the vanilla configuration codec in its constructor. But you don't need to extend that class, you should have public class ModCaveCarver extends WorldCarver<ModCarverConfiguration> {- Vivecraft crashing due to inherent optifine incompatibility
Issue with valhelsia core.- Help With Registering Configured WorldCarver 1.18.2
That is just a copied and renamed version of the vanilla class. It would be pretty hard to get that wrong. ๐ But you don't show where you use it or the error you are getting.- Help With Registering Configured WorldCarver 1.18.2
Don't paraphrase errors, show them with the full stacktrace. Also show the code you tried. We have no psychic powers.- Help With Registering Configured WorldCarver 1.18.2
https://forge.gemwire.uk/wiki/Access_Transformers/1.18 There is supposed to be a bot on the forge discord that help you find the field name. But you could also just make your own CaveCarverConfiguration class.- I'm trying to animate the legs and torso of my entity separately how can I do this?
geckolib questions are answered on the geckolib discord. These are the forge support forums. And "please teach me" is not a support question.- i get stuck with safe mode when i load or create a world pls help
The first error in the log is a problem with a balm/gravel miner. [06Sep2022 16:43:35.564] [Thread-0/ERROR] [net.minecraftforge.fml.javafmlmod.FMLModContainer/]: Exception caught during firing event: Cannot invoke "net.minecraft.client.multiplayer.ClientPacketListener.m_6198_()" because the return value of "net.minecraft.client.Minecra ft.m_91403_()" is null Index: 1 Listeners: 0: NORMAL 1: net.minecraftforge.eventbus.EventBus$$Lambda$4509/0x0000000800f990f0@3766fe8e java.lang.NullPointerException: Cannot invoke "net.minecraft.client.multiplayer.ClientPacketListener.m_6198_()" because the return value of "net.minecraft.client.Minecraft.m_91403_()" is null at TRANSFORMER/[email protected]/net.minecraftforge.network.simple.SimpleChannel.sendToServer(SimpleChannel.java:96) at TRANSFORMER/[email protected]+0/net.blay09.mods.balm.forge.network.ForgeBalmNetworking.sendToServer(ForgeBalmNetworking.java:122) at TRANSFORMER/[email protected]/net.blay09.mods.gravelminer.client.GravelMinerClient.lambda$initialize$1(GravelMinerClient.java:22) at TRANSFORMER/[email protected]+0/net.blay09.mods.balm.forge.event.ForgeBalmEvents.fireEventHandler(ForgeBalmEvents.java:50) at TRANSFORMER/[email protected]+0/net.blay09.mods.balm.forge.event.ForgeBalmEvents.lambda$fireEventHandlers$0(ForgeBalmEvents.java:44) at java.base/java.util.ArrayList.forEach(ArrayList.java:1511) at TRANSFORMER/[email protected]+0/net.blay09.mods.balm.forge.event.ForgeBalmEvents.fireEventHandlers(ForgeBalmEvents.java:44) at TRANSFORMER/[email protected]+0/net.blay09.mods.balm.forge.event.ForgeBalmEvents.fireEvent(ForgeBalmEvents.java:76) at TRANSFORMER/[email protected]+0/net.blay09.mods.balm.forge.config.ForgeBalmConfig.lambda$initializeBackingConfig$7(ForgeBalmConfig.java:180) at MC-BOOTSTRAP/[email protected]/net.minecraftforge.eventbus.EventBus.doCastFilter(EventBus.java:247) at MC-BOOTSTRAP/[email protected]/net.minecraftforge.eventbus.EventBus.lambda$addListener$11(EventBus.java:239) at MC-BOOTSTRAP/[email protected]/net.minecraftforge.eventbus.EventBus.post(EventBus.java:302) at MC-BOOTSTRAP/[email protected]/net.minecraftforge.eventbus.EventBus.post(EventBus.java:283) at LAYER PLUGIN/[email protected]/net.minecraftforge.fml.javafmlmod.FMLModContainer.lambda$new$0(FMLModContainer.java:41) The thing that is causing the problem is [06Sep2022 16:54:18.136] [Render thread/WARN] [net.minecraft.client.Minecraft/]: Failed to load datapacks, can't proceed with server load java.util.concurrent.ExecutionException: net.minecraftforge.fml.loading.toposort.CyclePresentException which usually means 2 mods are trying to modify vanilla world gen in conflicting ways. Unfortunately, the error message does not say which mods are conflicting. Finally you have a lot (and I mean a lot) of warnings about missing mods, that were present before in your world? One of these is agape_space which is part of your world gen. Which is probably why there is an error about missing world gen for agape:mercury mentioned above. [06Sep2022 16:54:38.199] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod alternacraft which appears to be missing, things may not work well [06Sep2022 16:54:38.199] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod slimyboyos which appears to be missing, things may not work well [06Sep2022 16:54:38.199] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod spiderman_mod which appears to be missing, things may not work well [06Sep2022 16:54:38.199] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod reevesfurniture which appears to be missing, things may not work well [06Sep2022 16:54:38.199] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod infernalexp which appears to be missing, things may not work well [06Sep2022 16:54:38.199] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod ulterlands which appears to be missing, things may not work well [06Sep2022 16:54:38.199] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod cftlc which appears to be missing, things may not work well [06Sep2022 16:54:38.199] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod nethers_exoticism which appears to be missing, things may not work well [06Sep2022 16:54:38.199] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod brixpansion which appears to be missing, things may not work well [06Sep2022 16:54:38.199] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod strawgolem which appears to be missing, things may not work well [06Sep2022 16:54:38.199] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod modnametooltip which appears to be missing, things may not work well [06Sep2022 16:54:38.199] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod duckling which appears to be missing, things may not work well [06Sep2022 16:54:38.199] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod ravageandcabbage which appears to be missing, things may not work well [06Sep2022 16:54:38.199] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod blocky_siege which appears to be missing, things may not work well [06Sep2022 16:54:38.199] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod impactfulweather which appears to be missing, things may not work well [06Sep2022 16:54:38.199] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod pickupnotifier which appears to be missing, things may not work well [06Sep2022 16:54:38.200] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod minetraps which appears to be missing, things may not work well [06Sep2022 16:54:38.200] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod easterisland which appears to be missing, things may not work well [06Sep2022 16:54:38.200] [Render thread/WARN] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod cloth_config version 6.2.62 and it is now at version 6.3.81, things may not work well [06Sep2022 16:54:38.200] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod revampedwolf which appears to be missing, things may not work well [06Sep2022 16:54:38.200] [Render thread/WARN] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod industrialforegoing version 3.3.1.4 and it is now at version 3.3.1.5, things may not work well [06Sep2022 16:54:38.200] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod braincell which appears to be missing, things may not work well [06Sep2022 16:54:38.200] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod improvedmounthud which appears to be missing, things may not work well [06Sep2022 16:54:38.200] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod highlighter which appears to be missing, things may not work well [06Sep2022 16:54:38.200] [Render thread/WARN] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod corail_woodcutter version 2.3.5 and it is now at version 2.3.7, things may not work well [06Sep2022 16:54:38.200] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod oculus which appears to be missing, things may not work well [06Sep2022 16:54:38.200] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod simplebbq which appears to be missing, things may not work well [06Sep2022 16:54:38.200] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod atlaslib which appears to be missing, things may not work well [06Sep2022 16:54:38.200] [Render thread/WARN] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod wandering_trapper version 1.2.0 and it is now at version 1.2.2, things may not work well [06Sep2022 16:54:38.200] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod biomeinfo which appears to be missing, things may not work well [06Sep2022 16:54:38.200] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod illageandspillage which appears to be missing, things may not work well [06Sep2022 16:54:38.200] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod sdrp which appears to be missing, things may not work well [06Sep2022 16:54:38.200] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod bettermodsbutton which appears to be missing, things may not work well [06Sep2022 16:54:38.200] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod nebs which appears to be missing, things may not work well [06Sep2022 16:54:38.200] [Render thread/WARN] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod mcwlights version 1.0.3 and it is now at version 1.0.4, things may not work well [06Sep2022 16:54:38.200] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod cleardespawn which appears to be missing, things may not work well [06Sep2022 16:54:38.200] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod radium which appears to be missing, things may not work well [06Sep2022 16:54:38.200] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod clienttweaks which appears to be missing, things may not work well [06Sep2022 16:54:38.200] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod aoa3 which appears to be missing, things may not work well [06Sep2022 16:54:38.200] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod blue_skies_tcon which appears to be missing, things may not work well [06Sep2022 16:54:38.200] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod monkemadness which appears to be missing, things may not work well [06Sep2022 16:54:38.201] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod horsestonks which appears to be missing, things may not work well [06Sep2022 16:54:38.201] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod furnish which appears to be missing, things may not work well [06Sep2022 16:54:38.201] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod visualworkbench which appears to be missing, things may not work well [06Sep2022 16:54:38.201] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod splash_milk which appears to be missing, things may not work well [06Sep2022 16:54:38.201] [Render thread/WARN] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod libraryferret version 2.5.1 and it is now at version 1.0.3, things may not work well [06Sep2022 16:54:38.201] [Render thread/WARN] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod kobolds version 2.0.5 and it is now at version 2.0.8, things may not work well [06Sep2022 16:54:38.201] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod immersive_weathering which appears to be missing, things may not work well [06Sep2022 16:54:38.201] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod extendedclouds which appears to be missing, things may not work well [06Sep2022 16:54:38.201] [Render thread/WARN] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod awesomedungeon version 1 and it is now at version 2.0.10, things may not work well [06Sep2022 16:54:38.201] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod end_additions which appears to be missing, things may not work well [06Sep2022 16:54:38.201] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod snowundertrees which appears to be missing, things may not work well [06Sep2022 16:54:38.201] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod rare_ice which appears to be missing, things may not work well [06Sep2022 16:54:38.201] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod additional_lights which appears to be missing, things may not work well [06Sep2022 16:54:38.201] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod jeitweaker which appears to be missing, things may not work well [06Sep2022 16:54:38.202] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod display_case which appears to be missing, things may not work well [06Sep2022 16:54:38.202] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod crafttweaker which appears to be missing, things may not work well [06Sep2022 16:54:38.202] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod rubidium_extras which appears to be missing, things may not work well [06Sep2022 16:54:38.202] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod missingwilds which appears to be missing, things may not work well [06Sep2022 16:54:38.202] [Render thread/WARN] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod awesomedungeonocean version 1 and it is now at version 2.0.6, things may not work well [06Sep2022 16:54:38.202] [Render thread/WARN] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod duneons version 1.11.3 and it is now at version 1.12, things may not work well [06Sep2022 16:54:38.202] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod antimobgriefing which appears to be missing, things may not work well [06Sep2022 16:54:38.202] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod yourantfriend which appears to be missing, things may not work well [06Sep2022 16:54:38.202] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod createtweaker which appears to be missing, things may not work well [06Sep2022 16:54:38.202] [Render thread/WARN] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod domum_ornamentum version 1.18.2-1.0.50-ALPHA and it is now at version 1.18.2-1.0.55-ALPHA, things may not work well [06Sep2022 16:54:38.202] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod viescraftmachines which appears to be missing, things may not work well [06Sep2022 16:54:38.202] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod notenoughanimations which appears to be missing, things may not work well [06Sep2022 16:54:38.202] [Render thread/WARN] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod flywheel version 1.18-0.6.4.87 and it is now at version 0.6.5, things may not work well [06Sep2022 16:54:38.202] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod justenoughprofessions which appears to be missing, things may not work well [06Sep2022 16:54:38.202] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod securitycraft which appears to be missing, things may not work well [06Sep2022 16:54:38.202] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod sit which appears to be missing, things may not work well [06Sep2022 16:54:38.202] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod goblins which appears to be missing, things may not work well [06Sep2022 16:54:38.202] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod ambientenvironment which appears to be missing, things may not work well [06Sep2022 16:54:38.202] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod structures_compass which appears to be missing, things may not work well [06Sep2022 16:54:38.202] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod upgradednetherite_ultimate which appears to be missing, things may not work well [06Sep2022 16:54:38.202] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod plus_the_end which appears to be missing, things may not work well [06Sep2022 16:54:38.202] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod slimy_stuff which appears to be missing, things may not work well [06Sep2022 16:54:38.202] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod simplesweep which appears to be missing, things may not work well [06Sep2022 16:54:38.202] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod functional_fletching_table which appears to be missing, things may not work well [06Sep2022 16:54:38.203] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod endtweaks which appears to be missing, things may not work well [06Sep2022 16:54:38.203] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod grapplemod which appears to be missing, things may not work well [06Sep2022 16:54:38.203] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod alien_tech which appears to be missing, things may not work well [06Sep2022 16:54:38.203] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod additionalbanners which appears to be missing, things may not work well [06Sep2022 16:54:38.203] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod tipsmod which appears to be missing, things may not work well [06Sep2022 16:54:38.203] [Render thread/WARN] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod sophisticatedcore version 1.18.2-0.3.7.59 and it is now at version 1.18.2-0.5.9.115, things may not work well [06Sep2022 16:54:38.203] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod villagernames which appears to be missing, things may not work well [06Sep2022 16:54:38.203] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod enhancedvisuals which appears to be missing, things may not work well [06Sep2022 16:54:38.203] [Render thread/WARN] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod placebo version 6.4.2 and it is now at version 6.6.4, things may not work well [06Sep2022 16:54:38.203] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod cursesandmagic which appears to be missing, things may not work well [06Sep2022 16:54:38.203] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod moreminecarts which appears to be missing, things may not work well [06Sep2022 16:54:38.203] [Render thread/WARN] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod bookshelf version 13.2.47 and it is now at version 13.2.50, things may not work well [06Sep2022 16:54:38.203] [Render thread/WARN] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod sophisticatedbackpacks version 1.18.2-3.17.10.621 and it is now at version 1.18.2-3.18.24.704, things may not work well [06Sep2022 16:54:38.203] [Render thread/WARN] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod mcwdoors version 1.0.6 and it is now at version 1.0.7, things may not work well [06Sep2022 16:54:38.203] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod sworddisplay which appears to be missing, things may not work well [06Sep2022 16:54:38.203] [Render thread/WARN] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod bygonenether version 1.1.2 and it is now at version 1.2.1, things may not work well [06Sep2022 16:54:38.203] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod carryon which appears to be missing, things may not work well [06Sep2022 16:54:38.203] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod runesword which appears to be missing, things may not work well [06Sep2022 16:54:38.203] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod konkrete which appears to be missing, things may not work well [06Sep2022 16:54:38.203] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod createcafe which appears to be missing, things may not work well [06Sep2022 16:54:38.203] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod equipmentcompare which appears to be missing, things may not work well [06Sep2022 16:54:38.203] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod undead_expansion which appears to be missing, things may not work well [06Sep2022 16:54:38.203] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod simpleshops which appears to be missing, things may not work well [06Sep2022 16:54:38.203] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod customgamerules which appears to be missing, things may not work well [06Sep2022 16:54:38.203] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod xercamod which appears to be missing, things may not work well [06Sep2022 16:54:38.204] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod trofers which appears to be missing, things may not work well [06Sep2022 16:54:38.204] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod illager_plushies which appears to be missing, things may not work well [06Sep2022 16:54:38.204] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod ironchests which appears to be missing, things may not work well [06Sep2022 16:54:38.204] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod arsomega which appears to be missing, things may not work well [06Sep2022 16:54:38.204] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod diamethysts which appears to be missing, things may not work well [06Sep2022 16:54:38.204] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod seadwellers which appears to be missing, things may not work well [06Sep2022 16:54:38.204] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod villagertools which appears to be missing, things may not work well [06Sep2022 16:54:38.204] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod lostcities which appears to be missing, things may not work well [06Sep2022 16:54:38.204] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod spells_and_shields which appears to be missing, things may not work well [06Sep2022 16:54:38.204] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod stacked_dimensions_warden which appears to be missing, things may not work well [06Sep2022 16:54:38.204] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod cherishedworlds which appears to be missing, things may not work well [06Sep2022 16:54:38.204] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod nether_dragon which appears to be missing, things may not work well [06Sep2022 16:54:38.204] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod enchantwithmob which appears to be missing, things may not work well [06Sep2022 16:54:38.204] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod mushlings which appears to be missing, things may not work well [06Sep2022 16:54:38.204] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod cursery which appears to be missing, things may not work well [06Sep2022 16:54:38.204] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod shulkerboxtooltip which appears to be missing, things may not work well [06Sep2022 16:54:38.204] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod justenoughgolems which appears to be missing, things may not work well [06Sep2022 16:54:38.204] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod ogres which appears to be missing, things may not work well [06Sep2022 16:54:38.204] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod xtraarrows which appears to be missing, things may not work well [06Sep2022 16:54:38.204] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod rabbit_tamer which appears to be missing, things may not work well [06Sep2022 16:54:38.204] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod spook which appears to be missing, things may not work well [06Sep2022 16:54:38.204] [Render thread/WARN] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod tinkers_reforged version 1.1.0 and it is now at version 1.1.1, things may not work well [06Sep2022 16:54:38.204] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod shrines which appears to be missing, things may not work well [06Sep2022 16:54:38.204] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod nourished_nether which appears to be missing, things may not work well [06Sep2022 16:54:38.204] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod nourished_end which appears to be missing, things may not work well [06Sep2022 16:54:38.204] [Render thread/WARN] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod amethysttoolsmod version 1.18.2-1.6.1 and it is now at version 1.18.2-1.6.3, things may not work well [06Sep2022 16:54:38.205] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod merchantmarkers which appears to be missing, things may not work well [06Sep2022 16:54:38.205] [Render thread/WARN] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod mcwpaintings version 1.0.3 and it is now at version 1.0.4, things may not work well [06Sep2022 16:54:38.205] [Render thread/WARN] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod clumps version 8.0.0+10 and it is now at version 8.0.0+15, things may not work well [06Sep2022 16:54:38.205] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod tumbleweed which appears to be missing, things may not work well [06Sep2022 16:54:38.205] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod diamethyst_arrows which appears to be missing, things may not work well [06Sep2022 16:54:38.205] [Render thread/WARN] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod artifacts version 1.18.2-4.0.7 and it is now at version 1.18.2-4.1.0, things may not work well [06Sep2022 16:54:38.205] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod storagenetwork which appears to be missing, things may not work well [06Sep2022 16:54:38.205] [Render thread/WARN] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod decorative_blocks version 2.1.0 and it is now at version 2.1.2, things may not work well [06Sep2022 16:54:38.205] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod badmobs which appears to be missing, things may not work well [06Sep2022 16:54:38.205] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod more_babies which appears to be missing, things may not work well [06Sep2022 16:54:38.205] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod fluidsystem which appears to be missing, things may not work well [06Sep2022 16:54:38.205] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod skinlayers3d which appears to be missing, things may not work well [06Sep2022 16:54:38.205] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod intothevoid which appears to be missing, things may not work well [06Sep2022 16:54:38.205] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod scuba_gear which appears to be missing, things may not work well [06Sep2022 16:54:38.205] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod curiouslights which appears to be missing, things may not work well [06Sep2022 16:54:38.205] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod silverbirch which appears to be missing, things may not work well [06Sep2022 16:54:38.205] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod vanilla_claws which appears to be missing, things may not work well [06Sep2022 16:54:38.206] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod colored_water which appears to be missing, things may not work well [06Sep2022 16:54:38.206] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod additionaladditions which appears to be missing, things may not work well [06Sep2022 16:54:38.206] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod creativecore which appears to be missing, things may not work well [06Sep2022 16:54:38.206] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod mobcompack which appears to be missing, things may not work well [06Sep2022 16:54:38.206] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod fuze_relics which appears to be missing, things may not work well [06Sep2022 16:54:38.206] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod ngv which appears to be missing, things may not work well [06Sep2022 16:54:38.206] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod morestoragedrawers which appears to be missing, things may not work well [06Sep2022 16:54:38.206] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod supermod which appears to be missing, things may not work well [06Sep2022 16:54:38.206] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod cookery which appears to be missing, things may not work well [06Sep2022 16:54:38.206] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod fancymenu which appears to be missing, things may not work well [06Sep2022 16:54:38.206] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod blocksplus which appears to be missing, things may not work well [06Sep2022 16:54:38.206] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod dannys_expansion which appears to be missing, things may not work well [06Sep2022 16:54:38.206] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod effecttooltips which appears to be missing, things may not work well [06Sep2022 16:54:38.206] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod betterlily which appears to be missing, things may not work well [06Sep2022 16:54:38.206] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod betterf3 which appears to be missing, things may not work well [06Sep2022 16:54:38.206] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod player_companions which appears to be missing, things may not work well [06Sep2022 16:54:38.206] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod grindstonesharpertools which appears to be missing, things may not work well [06Sep2022 16:54:38.206] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod astral_dimension which appears to be missing, things may not work well [06Sep2022 16:54:38.206] [Render thread/WARN] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod createaddition version 1.18.2-20220715a and it is now at version 1.18.2-20220817a, things may not work well [06Sep2022 16:54:38.206] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod dynamiclightsreforged which appears to be missing, things may not work well [06Sep2022 16:54:38.206] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod create_stuff_additions which appears to be missing, things may not work well [06Sep2022 16:54:38.206] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod villager_inc_geology which appears to be missing, things may not work well [06Sep2022 16:54:38.206] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod extratrades which appears to be missing, things may not work well [06Sep2022 16:54:38.206] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod infinidrill which appears to be missing, things may not work well [06Sep2022 16:54:38.207] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod stalwart_dungeons which appears to be missing, things may not work well [06Sep2022 16:54:38.207] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod rubidium which appears to be missing, things may not work well [06Sep2022 16:54:38.207] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod create_jetpack which appears to be missing, things may not work well [06Sep2022 16:54:38.207] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod powers_of_the_wild which appears to be missing, things may not work well [06Sep2022 16:54:38.207] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod wildbackport which appears to be missing, things may not work well [06Sep2022 16:54:38.207] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod upgradednetherite_items which appears to be missing, things may not work well [06Sep2022 16:54:38.207] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod forcecraft which appears to be missing, things may not work well [06Sep2022 16:54:38.207] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod immersive_armors which appears to be missing, things may not work well [06Sep2022 16:54:38.207] [Render thread/WARN] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod unseen_world version 2.0.3 and it is now at version 2.1, things may not work well [06Sep2022 16:54:38.207] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod clearview which appears to be missing, things may not work well [06Sep2022 16:54:38.207] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod endlessocean which appears to be missing, things may not work well [06Sep2022 16:54:38.207] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod thepursuer which appears to be missing, things may not work well [06Sep2022 16:54:38.207] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod fairyend which appears to be missing, things may not work well [06Sep2022 16:54:38.207] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod trajanstanks which appears to be missing, things may not work well [06Sep2022 16:54:38.207] [Render thread/WARN] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod mcwtrpdoors version 1.0.6 and it is now at version 1.0.7, things may not work well [06Sep2022 16:54:38.207] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod yungsbridges which appears to be missing, things may not work well [06Sep2022 16:54:38.207] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod volcanic_caverns which appears to be missing, things may not work well [06Sep2022 16:54:38.207] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod darkerdepths which appears to be missing, things may not work well [06Sep2022 16:54:38.207] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod rotten_piglins which appears to be missing, things may not work well [06Sep2022 16:54:38.207] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod overweight_farming which appears to be missing, things may not work well [06Sep2022 16:54:38.207] [Render thread/WARN] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod mcwfurnitures version 3.0.0 and it is now at version 3.0.1, things may not work well [06Sep2022 16:54:38.208] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod the_gold_rush which appears to be missing, things may not work well [06Sep2022 16:54:38.208] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod bettershields which appears to be missing, things may not work well [06Sep2022 16:54:38.208] [Render thread/WARN] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod jadeaddons version 2.3.0 and it is now at version 2.4.0, things may not work well [06Sep2022 16:54:38.208] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod runecraft which appears to be missing, things may not work well [06Sep2022 16:54:38.208] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod easyshulkerboxes which appears to be missing, things may not work well [06Sep2022 16:54:38.208] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod darkrealm which appears to be missing, things may not work well [06Sep2022 16:54:38.208] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod configmenusforge which appears to be missing, things may not work well [06Sep2022 16:54:38.208] [Render thread/WARN] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod jei version 9.7.0.224 and it is now at version 9.7.2.264, things may not work well [06Sep2022 16:54:38.208] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod jeienchantmentinfo which appears to be missing, things may not work well [06Sep2022 16:54:38.208] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod universalbonemeal which appears to be missing, things may not work well [06Sep2022 16:54:38.208] [Render thread/WARN] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod graveyard version 1.9.1 and it is now at version 1.9.2, things may not work well [06Sep2022 16:54:38.208] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod runic which appears to be missing, things may not work well [06Sep2022 16:54:38.208] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod sereneseasons which appears to be missing, things may not work well [06Sep2022 16:54:38.208] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod simple_spikes which appears to be missing, things may not work well [06Sep2022 16:54:38.208] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod seeds which appears to be missing, things may not work well [06Sep2022 16:54:38.208] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod snuffles which appears to be missing, things may not work well [06Sep2022 16:54:38.208] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod deleteworldstotrash which appears to be missing, things may not work well [06Sep2022 16:54:38.208] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod dismountentity which appears to be missing, things may not work well [06Sep2022 16:54:38.208] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod vm which appears to be missing, things may not work well [06Sep2022 16:54:38.208] [Render thread/WARN] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod chalk version 1.3.1 and it is now at version 1.3.2, things may not work well [06Sep2022 16:54:38.208] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod enchantable_staffs which appears to be missing, things may not work well [06Sep2022 16:54:38.208] [Render thread/WARN] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod idas version 1.2.3+1.18.2 and it is now at version 1.4.2+1.18.2, things may not work well [06Sep2022 16:54:38.208] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod createbb which appears to be missing, things may not work well [06Sep2022 16:54:38.208] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod drippyloadingscreen which appears to be missing, things may not work well [06Sep2022 16:54:38.208] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod inversia which appears to be missing, things may not work well [06Sep2022 16:54:38.209] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod mousetweaks which appears to be missing, things may not work well [06Sep2022 16:54:38.209] [Render thread/WARN] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod awesomedungeonnether version 1.0.2 and it is now at version 1.0.1, things may not work well [06Sep2022 16:54:38.209] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod inventorio which appears to be missing, things may not work well [06Sep2022 16:54:38.209] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod whisperwoods which appears to be missing, things may not work well [06Sep2022 16:54:38.209] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod xaerominimap which appears to be missing, things may not work well [06Sep2022 16:54:38.209] [Render thread/WARN] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod croptopia version 2.0.5 and it is now at version 2.1.0, things may not work well [06Sep2022 16:54:38.209] [Render thread/WARN] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod polymorph version 1.18.2-0.44 and it is now at version 1.18.1-0.43, things may not work well [06Sep2022 16:54:38.209] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod philips_ruins which appears to be missing, things may not work well [06Sep2022 16:54:38.209] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod entityculling which appears to be missing, things may not work well [06Sep2022 16:54:38.209] [Render thread/WARN] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod aquaculture version 1.18.2-2.3.7 and it is now at version 1.18.2-2.3.8, things may not work well [06Sep2022 16:54:38.209] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod gobber_gem_crabs which appears to be missing, things may not work well [06Sep2022 16:54:38.209] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod ocarina which appears to be missing, things may not work well [06Sep2022 16:54:38.209] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod tropicraft which appears to be missing, things may not work well [06Sep2022 16:54:38.209] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod hem which appears to be missing, things may not work well [06Sep2022 16:54:38.209] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod advancements_tracker which appears to be missing, things may not work well [06Sep2022 16:54:38.209] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod piglinproliferation which appears to be missing, things may not work well [06Sep2022 16:54:38.209] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod xaeroworldmap which appears to be missing, things may not work well [06Sep2022 16:54:38.209] [Render thread/WARN] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod controlling version 9.0+21 and it is now at version 9.0+22, things may not work well [06Sep2022 16:54:38.209] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod ortus which appears to be missing, things may not work well [06Sep2022 16:54:38.210] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod superiorstructures which appears to be missing, things may not work well [06Sep2022 16:54:38.210] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod twigs which appears to be missing, things may not work well [06Sep2022 16:54:38.210] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod limitmobspawn which appears to be missing, things may not work well [06Sep2022 16:54:38.210] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod balanced_crates which appears to be missing, things may not work well [06Sep2022 16:54:38.210] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod dragonmounts which appears to be missing, things may not work well [06Sep2022 16:54:38.210] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod depth_striders which appears to be missing, things may not work well [06Sep2022 16:54:38.210] [Render thread/WARN] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod twilightforest version 4.1.1220 and it is now at version 4.1.1397, things may not work well [06Sep2022 16:54:38.210] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod curious_armor_stands which appears to be missing, things may not work well [06Sep2022 16:54:38.210] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod endrem which appears to be missing, things may not work well [06Sep2022 16:54:38.210] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod natures_aid which appears to be missing, things may not work well [06Sep2022 16:54:38.210] [Render thread/WARN] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod mcwfences version 1.0.5 and it is now at version 1.0.6, things may not work well [06Sep2022 16:54:38.210] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod jerintegration which appears to be missing, things may not work well [06Sep2022 16:54:38.210] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod wilds which appears to be missing, things may not work well [06Sep2022 16:54:38.210] [Render thread/WARN] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod collective version 4.28 and it is now at version 4.50, things may not work well [06Sep2022 16:54:38.210] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod simplehats which appears to be missing, things may not work well [06Sep2022 16:54:38.210] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod drawerstooltip which appears to be missing, things may not work well [06Sep2022 16:54:38.210] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod betterthirdperson which appears to be missing, things may not work well [06Sep2022 16:54:38.210] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod gobber2 which appears to be missing, things may not work well [06Sep2022 16:54:38.210] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod agape_space which appears to be missing, things may not work well [06Sep2022 16:54:38.210] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod animal_feeding_trough which appears to be missing, things may not work well [06Sep2022 16:54:38.210] [Render thread/WARN] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod biomemakeover version 1.18.2-1.4.30 and it is now at version 1.18.2-1.4.31, things may not work well [06Sep2022 16:54:38.213] [Render thread/WARN] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod ftbchunks version 1802.3.6-build.147 and it is now at version 1802.3.6-build.160, things may not work well [06Sep2022 16:54:38.213] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod redstone_sand which appears to be missing, things may not work well [06Sep2022 16:54:38.213] [Render thread/WARN] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod geckolib3 version 3.0.34 and it is now at version 3.0.36, things may not work well [06Sep2022 16:54:38.213] [Render thread/WARN] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod ars_nouveau version 2.7.4 and it is now at version 2.7.7, things may not work well [06Sep2022 16:54:38.213] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod ars_scalaes which appears to be missing, things may not work well [06Sep2022 16:54:38.213] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod winteroverhaul which appears to be missing, things may not work well [06Sep2022 16:54:38.213] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod t_and_t which appears to be missing, things may not work well [06Sep2022 16:54:38.213] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod mavm which appears to be missing, things may not work well [06Sep2022 16:54:38.213] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod infectum which appears to be missing, things may not work well [06Sep2022 16:54:38.213] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod solarforge which appears to be missing, things may not work well [06Sep2022 16:54:38.213] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod trajanscore which appears to be missing, things may not work well [06Sep2022 16:54:38.214] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod awesomedungeonend which appears to be missing, things may not work well [06Sep2022 16:54:38.214] [Render thread/WARN] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod eco version 0.9.0 and it is now at version 0.9.2, things may not work well [06Sep2022 16:54:38.214] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod steves_vanilla which appears to be missing, things may not work well [06Sep2022 16:54:38.214] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod netherited which appears to be missing, things may not work well [06Sep2022 16:54:38.214] [Render thread/WARN] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod create version 0.5.0c and it is now at version 0.5.0.d, things may not work well [06Sep2022 16:54:38.214] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod createplus which appears to be missing, things may not work well [06Sep2022 16:54:38.214] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod molten_geodes which appears to be missing, things may not work well [06Sep2022 16:54:38.214] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod weaponthrow which appears to be missing, things may not work well [06Sep2022 16:54:38.214] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod village_employment which appears to be missing, things may not work well [06Sep2022 16:54:38.214] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod faction_craft which appears to be missing, things may not work well [06Sep2022 16:54:38.214] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod itemborders which appears to be missing, things may not work well [06Sep2022 16:54:38.214] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod create_confectionery which appears to be missing, things may not work well [06Sep2022 16:54:38.214] [Render thread/WARN] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod betterdeserttemples version 1.18.2-Forge-1.2 and it is now at version 1.18.2-Forge-1.3.1, things may not work well [06Sep2022 16:54:38.214] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod mahoutsukai which appears to be missing, things may not work well [06Sep2022 16:54:38.214] [Render thread/WARN] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod blueprint version 5.4.0 and it is now at version 5.4.7, things may not work well [06Sep2022 16:54:38.214] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod savage_and_ravage which appears to be missing, things may not work well [06Sep2022 16:54:38.214] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod compatoplenty which appears to be missing, things may not work well [06Sep2022 16:54:38.214] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod compat_makeover which appears to be missing, things may not work well [06Sep2022 16:54:38.214] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod neapolitan which appears to be missing, things may not work well [06Sep2022 16:54:38.214] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod buzzier_bees which appears to be missing, things may not work well [06Sep2022 16:54:38.214] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod wandering_bag which appears to be missing, things may not work well [06Sep2022 16:54:38.214] [Render thread/WARN] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod bloodmagic version 1.18.2-3.2.4-39 and it is now at version 1.18.2-3.2.6-41, things may not work well [06Sep2022 16:54:38.214] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod better_fishing_rods which appears to be missing, things may not work well [06Sep2022 16:54:38.214] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod forgottenrecipes which appears to be missing, things may not work well [06Sep2022 16:54:38.215] [Render thread/WARN] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod supplementaries version 1.18.2-1.4.8 and it is now at version 1.18.2-1.4.12, things may not work well [06Sep2022 16:54:38.215] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod dimensionteleport which appears to be missing, things may not work well [06Sep2022 16:54:38.215] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod zillagersweararmor which appears to be missing, things may not work well [06Sep2022 16:54:38.215] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod thermal_integration which appears to be missing, things may not work well [06Sep2022 16:54:38.215] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod thermal_cultivation which appears to be missing, things may not work well [06Sep2022 16:54:38.215] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod tools_complement which appears to be missing, things may not work well [06Sep2022 16:54:38.215] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod pigsteel which appears to be missing, things may not work well [06Sep2022 16:54:38.215] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod enchdesc which appears to be missing, things may not work well [06Sep2022 16:54:38.215] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod dynamic_asset_generator which appears to be missing, things may not work well [06Sep2022 16:54:38.215] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod excavated_variants which appears to be missing, things may not work well [06Sep2022 16:54:38.215] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod magnumtorch which appears to be missing, things may not work well [06Sep2022 16:54:38.215] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod snowyspirit which appears to be missing, things may not work well [06Sep2022 16:54:38.216] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod trolls which appears to be missing, things may not work well [06Sep2022 16:54:38.216] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod weaponmaster which appears to be missing, things may not work well [06Sep2022 16:54:38.216] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod cooking_with_mindthemoods which appears to be missing, things may not work well [06Sep2022 16:54:38.216] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod rocks which appears to be missing, things may not work well [06Sep2022 16:54:38.216] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod tinkersurvival which appears to be missing, things may not work well [06Sep2022 16:54:38.216] [Render thread/WARN] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod tetrapak version 1.18.2-0.5.2 and it is now at version 1.18.2-0.5.3, things may not work well [06Sep2022 16:54:38.216] [Render thread/WARN] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod art_of_forging version 1.4.8-1.18.2 and it is now at version 1.5-1.18.2, things may not work well [06Sep2022 16:54:38.216] [Render thread/WARN] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod malum version 1.18.2-1.3.7 and it is now at version 1.18.2-1.4, things may not work well [06Sep2022 16:54:38.216] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod parcool which appears to be missing, things may not work well [06Sep2022 16:54:38.216] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod immersive_paintings which appears to be missing, things may not work well [06Sep2022 16:54:38.216] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod inventoryhud which appears to be missing, things may not work well [06Sep2022 16:54:38.216] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod sprout which appears to be missing, things may not work well [06Sep2022 16:54:38.216] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod medkits_bandages_etc which appears to be missing, things may not work well [06Sep2022 16:54:38.216] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod untamedwilds which appears to be missing, things may not work well [06Sep2022 16:54:38.216] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod domesticationinnovation which appears to be missing, things may not work well [06Sep2022 16:54:38.217] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod snowpig which appears to be missing, things may not work well [06Sep2022 16:54:38.217] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod culturaldelights which appears to be missing, things may not work well [06Sep2022 16:54:38.217] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod delightful which appears to be missing, things may not work well [06Sep2022 16:54:38.217] [Render thread/ERROR] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod harrypotter which appears to be missing, things may not work well [06Sep2022 16:54:38.217] [Render thread/WARN] [net.minecraftforge.common.ForgeHooks/WP]: This world was saved with mod chiselsandbits version 1.2.113 and it is now at version 1.2.114, things may not work well- Help With Registering Configured WorldCarver 1.18.2
RegistryObject.getHolder()- org.spongepowered.asm.mixin.transformer.throwables.MixinTransformerError: An unexpected critical error was encountered
Download the latest version of rubidium which is currently: https://www.curseforge.com/minecraft/mc-mods/rubidium/files/3929559 If that doesn't work, you know which mod is causing the problem, so contact the mod author. Looks like you also have an older version of oculus as well.- Help With Registering Configured WorldCarver 1.18.2
You use DeferredRegister, https://forge.gemwire.uk/wiki/Registration/1.18 something like (untested code): public class ModCarvers { private static final DeferredRegister<WorldCarver<?>> CARVERS = DeferredRegister.create(Registry.CARVER_REGISTRY, MODID); private static final DeferredRegister<ConfiguredWorldCarver<?>> CONFGIURED_CARVERS = DeferredRegister.create(Registry.CONFIGURED_CARVER_REGISTRY, MODID); public static final RegistryObject<WorldCarver<CaveCarverConfiguration>> MY_CARVER = CARVERS.register("mod_cave", () -> new MyCaveWorldCarver(CaveCarverConfiguration.CODEC)); public static final RegistryObject<ConfiguredWorldCarver<CaveCarverConfiguration>> MY_CONFIGURED_CARVER = CONFGIURED_CARVERS.register("mod_cave", () -> MY_CARVER.get().configured(new CaveCarverConfiguration(0.15F, UniformHeight.of(VerticalAnchor.aboveBottom(8), VerticalAnchor.absolute(180)), UniformFloat.of(0.1F, 0.9F), VerticalAnchor.aboveBottom(8), CarverDebugSettings.of(false, Blocks.CRIMSON_BUTTON.defaultBlockState()), UniformFloat.of(0.7F, 1.4F), UniformFloat.of(0.8F, 1.3F), UniformFloat.of(-1.0F, -0.4F)))); public static void register(IEventBus bus) { CARVERS.register(bus); CONFGIURED_CARVERS.register(bus); } } Then as usual, call ModCarvers.register() from your Mod's constructor.- Minecraft error "..Error: java.lang.OutOfMemoryError: Java heap space" after Minecraft (Not Responding)
-Xms is the initial (minimum) heap allocation Your crash report shows you allocating 4G (4096m) maximum heap It's not clear to me from the description above what you are actually doing. But whatever you are configuring is not what is getting used. If you want help with curseforge, you need to ask here: https://support.curseforge.com/en/support/home- [1.19] Problem with my third capability
https://github.com/Zanckor/Dragon-Ball-Z/blob/da13aa7613a293e76b370138ac22cf560784ab3d/src/main/java/com/zanckor/EventHandlerRegister.java#L19 Wrong EventBus: You can't mix event handlers for different buses in the same class. - Help With Registering Configured WorldCarver 1.18.2
IPS spam blocked by CleanTalk.
Important Information
By using this site, you agree to our Terms of Use.