Jump to content

All Activity

This stream auto-updates

  1. Past hour
  2. Here is a tutorial; this is what I used. 1.20 Minecraft Forge Modding Tutorial - Packets
  3. Corrected item registration code: (for the ModItems class) public static final RegistryObject<Item> LEMON_JUICE_BOTTLE = ITEMS.register("lemon_juice_bottle", () -> new HoneyBottleItem(new Item.Properties().stacksTo(1) .food((new FoodProperties.Builder()).nutrition(3).saturationMod(0.25F) .effect(() -> new MobEffectInstance(MobEffects.DAMAGE_RESISTANCE, 1500), 0.5f).build())));
  4. Today
  5. Apologies for the late reply. You'll need to register the item in ModItems; if you're following those tutorials, that's the only place you should ever register items. Otherwise, the mod will fail to register them properly and you'll get all sorts of interesting errors. Looking back at the code snipped I posted, I think that actually has some errors. I'm adding a lemon juice bottle to my mod just to ensure that it works correctly, and I will reply when I have solved the problems.
  6. I might have an idea why your original method was causing so much trouble. See this while loop? You're only incrementing the number of blocks you've corrupted if you find one that you can corrupt. What happens if you can't find any? The while loop will run forever (a long time). This could happen if, for instance, the feature generates inside a vein of blocks that aren't marked as STONE_ABERRANTABLE. There are two alternate strategies I'd recommend to fix this. First, you could simply increment numBlockCorrupted regardless of whether you've actually corrupted the block. This is the simplest and quickest way, and it should ensure that the loop runs no more than numBlocksToCorrupt times. Alternatively, you could add a "kill switch" that keeps track of how many times the loop runs, and then ends it after a certain limit of your choosing. That could look something like this: // Keeps track of how many blocks have been checked so far. int numBlocksChecked = 0; // Check up to twice as many blocks as you actually want to corrupt. // This is a good compromise between speed and actually getting the number of blocks // that you want to corrupt. int numBlocksToCheck = numBlocksToCorrupt * 2; // Modified the while loop condition to end after a certain number of blocks are checked. while (numBlocksCorrupted < numBlocksToCorrupt && numBlocksChecked < numBlocksToCheck) { // Generate a random position within the area, using the offset origin BlockPos randomPos = offsetOrigin.offset( ctx.random().nextInt(2 * areaSizeX + 1) - areaSizeX, // between -areaSize and areaSize ctx.random().nextInt(2 * areaSizeY + 1) - areaSizeY, ctx.random().nextInt(2 * areaSizeZ + 1) - areaSizeZ ); // If the block at the random position is in the IS_ORE_ABERRANTABLE tag, replace it if (world.getBlockState(randomPos).is(ModBlockTags.STONE_ABERRANTABLE)) { world.setBlock(randomPos, surroundingBlockState, 2); numBlocksCorrupted++; } // Increment the number of blocks that you've checked. numBlocksChecked++; } Let me know if you're still running into lag problems or are confused by my explanation.
  7. So I have been trying to open modded 1.12.2 minecraft but it crashes when it opens and it says Exit Code-1 Can somebody please help me. Here is the crash report: --- Minecraft Crash Report ---- WARNING: coremods are present: IELoadingPlugin (ImmersiveEngineering-core-0.12-98.jar) LibrarianLib Plugin (librarianlib-1.12.2-4.22.jar) MixinLoader (viaforge-mc1122-3.6.0.jar) McLib core mod (mclib-2.4.2-1.12.2.jar) EFFLL (LiteLoader ObjectHolder fix) (ExtraFoamForLiteLoader-1.0.0.jar) MekanismCoremod (Mekanism-1.12.2-9.8.3.390.jar) LogisticsPipesCoreLoader (logisticspipes-0.10.3.114.jar) AppleCore (AppleCore-mc1.12.2-3.4.0.jar) BiomeTweakerCore (BiomeTweakerCore-1.12.2-1.0.39.jar) ObfuscatePlugin (obfuscate-0.4.2-1.12.2.jar) Regeneration (Regeneration-3.0.3.jar) UniDictCoreMod (UniDict-1.12.2-3.0.10.jar) ReflectorsPlugin (EnderStorage-1.12.2-2.5.0.jar) EntityCullingEarlyLoader (entityculling-1.12.2-1.6.3.jar) Controllable (controllable-0.11.2-1.12.2.jar) craftfallessentials (CraftfallEssentials-1.12.2-1.2.6.jar) SecurityCraftLoadingPlugin ([1.12.2] SecurityCraft v1.9.9.jar) LoadingPlugin (ResourceLoader-MC1.12.1-1.5.3.jar) MalisisCorePlugin (malisiscore-1.12.2-6.5.1.jar) pymtech (PymTech-1.12.2-1.0.2.jar) IvToolkit (IvToolkit-1.3.3-1.12.jar) JeiUtilitiesLoadingPlugin (JEI-Utilities-1.12.2-0.2.12.jar) LoadingPlugin (RandomThings-MC1.12.2-4.2.7.4.jar) SSLoadingPlugin (SereneSeasons-1.12.2-1.2.18-universal.jar) Do not report to Forge! (If you haven't disabled the FoamFix coremod, try disabling it in the config! Note that this bit of text will still appear.) (foamfix-0.10.15-1.12.2.jar) FTBUltimineASM (ftb-ultimine-1202.3.5.jar) ForgelinPlugin (Forgelin-1.8.4.jar) Backpacked (backpacked-1.4.3-1.12.2.jar) ForgelinPlugin (Forgelin-Continuous-1.9.23.0.jar) HCASM (HammerLib-1.12.2-12.2.50.jar) LucraftCoreExtendedID (LucraftCoreIDExtender.jar) NWRTweak (redstonepaste-mc1.12-1.7.5.jar) CTMCorePlugin (CTM-MC1.12.2-1.0.2.31.jar) LucraftCoreCoreMod (LucraftCore-1.12.2-2.4.17.jar) EnderCorePlugin (EnderCore-1.12.2-0.5.78-core.jar) TransformerLoader (OpenComputers-MC1.12.2-1.8.5+179e1c3.jar) llibrary (llibrary-core-1.0.11-1.12.2.jar) ShetiPhian-ASM (ShetiPhian-ASM-1.12.0.jar) PhosphorFMLLoadingPlugin (phosphor-1.12.2-0.2.6+build50.jar) MekanismTweaks (mekanismtweaks-1.1.jar) ShutdownPatcher (mcef-1.12.2-1.11-coremod.jar) TNTUtilities Core (tnt_utilities-mc1.12-1.2.3.jar) Contact their authors BEFORE contacting forge // Shall we play a game? Time: 5/9/24 7:21 PM Description: Initializing game java.lang.NullPointerException: Initializing game at net.minecraft.client.gui.GuiMainMenu.handler$zca000$hookViaForgeButton(GuiMainMenu.java:686) at net.minecraft.client.gui.GuiMainMenu.func_73866_w_(GuiMainMenu.java:218) at net.minecraft.client.gui.GuiScreen.func_146280_a(GuiScreen.java:478) at net.minecraft.client.Minecraft.func_147108_a(Minecraft.java:1018) at net.minecraft.client.Minecraft.func_71384_a(Minecraft.java:545) at net.minecraft.client.Minecraft.func_99999_d(Minecraft.java:378) at net.minecraft.client.main.Main.main(SourceFile:123) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:497) at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) at net.minecraft.launchwrapper.Launch.main(Launch.java:28) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:497) at gg.essential.loader.stage2.relaunch.Relaunch.relaunch(Relaunch.java:124) at gg.essential.loader.stage2.EssentialLoader.preloadEssential(EssentialLoader.java:328) at gg.essential.loader.stage2.EssentialLoader.loadPlatform(EssentialLoader.java:116) at gg.essential.loader.stage2.EssentialLoaderBase.load(EssentialLoaderBase.java:148) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:497) at gg.essential.loader.stage1.EssentialLoaderBase.load(EssentialLoaderBase.java:293) at gg.essential.loader.stage1.EssentialSetupTweaker.<init>(EssentialSetupTweaker.java:44) at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62) at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) at java.lang.reflect.Constructor.newInstance(Constructor.java:422) at gg.essential.loader.stage0.EssentialSetupTweaker.loadStage1(EssentialSetupTweaker.java:53) at gg.essential.loader.stage0.EssentialSetupTweaker.<init>(EssentialSetupTweaker.java:26) at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62) at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) at java.lang.reflect.Constructor.newInstance(Constructor.java:422) at java.lang.Class.newInstance(Class.java:442) at net.minecraft.launchwrapper.Launch.launch(Launch.java:98) at net.minecraft.launchwrapper.Launch.main(Launch.java:28) A detailed walkthrough of the error, its code path and all known details is as follows: --------------------------------------------------------------------------------------- -- Head -- Thread: Client thread Stacktrace: at net.minecraft.client.gui.GuiMainMenu.handler$zca000$hookViaForgeButton(GuiMainMenu.java:686) at net.minecraft.client.gui.GuiMainMenu.func_73866_w_(GuiMainMenu.java:218) at net.minecraft.client.gui.GuiScreen.func_146280_a(GuiScreen.java:478) at net.minecraft.client.Minecraft.func_147108_a(Minecraft.java:1018) at net.minecraft.client.Minecraft.func_71384_a(Minecraft.java:545) -- Initialization -- Details: Stacktrace: at net.minecraft.client.Minecraft.func_99999_d(Minecraft.java:378) at net.minecraft.client.main.Main.main(SourceFile:123) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:497) at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) at net.minecraft.launchwrapper.Launch.main(Launch.java:28) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:497) at gg.essential.loader.stage2.relaunch.Relaunch.relaunch(Relaunch.java:124) at gg.essential.loader.stage2.EssentialLoader.preloadEssential(EssentialLoader.java:328) at gg.essential.loader.stage2.EssentialLoader.loadPlatform(EssentialLoader.java:116) at gg.essential.loader.stage2.EssentialLoaderBase.load(EssentialLoaderBase.java:148) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:497) at gg.essential.loader.stage1.EssentialLoaderBase.load(EssentialLoaderBase.java:293) at gg.essential.loader.stage1.EssentialSetupTweaker.<init>(EssentialSetupTweaker.java:44) at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62) at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) at java.lang.reflect.Constructor.newInstance(Constructor.java:422) at gg.essential.loader.stage0.EssentialSetupTweaker.loadStage1(EssentialSetupTweaker.java:53) at gg.essential.loader.stage0.EssentialSetupTweaker.<init>(EssentialSetupTweaker.java:26) at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62) at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) at java.lang.reflect.Constructor.newInstance(Constructor.java:422) at java.lang.Class.newInstance(Class.java:442) at net.minecraft.launchwrapper.Launch.launch(Launch.java:98) at net.minecraft.launchwrapper.Launch.main(Launch.java:28) -- System Details -- Details: Minecraft Version: 1.12.2 Operating System: Windows 10 (amd64) version 10.0 Java Version: 1.8.0_51, Oracle Corporation Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation Memory: 912338720 bytes (870 MB) / 3868721152 bytes (3689 MB) up to 11542724608 bytes (11008 MB) JVM Flags: 3 total; -XX:HeapDumpPath=MojangTricksIntelDriversForPerformance_javaw.exe_minecraft.exe.heapdump -Xmx12384m -Xms256m IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0 FML: MCP 9.42 Powered by Forge 14.23.5.2860 380 mods loaded, 0 mods active States: 'U' = Unloaded 'L' = Loaded 'C' = Constructed 'H' = Pre-initialized 'I' = Initialized 'J' = Post-initialized 'A' = Available 'D' = Disabled 'E' = Errored | State | ID | Version | Source | Signature | |:----- |:--------------------------------- |:------------------------------- |:-------------------------------------------------- |:---------------------------------------- | | | minecraft | 1.12.2 | minecraft.jar | None | | | mcp | 9.42 | minecraft.jar | None | | | FML | 8.0.99.99 | forge-1.12.2-14.23.5.2860.jar | e3c3d50c7c986df74c645c0ac54639741c90a557 | | | forge | 14.23.5.2860 | forge-1.12.2-14.23.5.2860.jar | e3c3d50c7c986df74c645c0ac54639741c90a557 | | | ivtoolkit | 1.3.3-1.12 | minecraft.jar | None | | | controllable | 0.11.2 | controllable-0.11.2-1.12.2.jar | None | | | mclib_core | 2.4.2 | minecraft.jar | None | | | backpacked | 1.4.2 | backpacked-1.4.3-1.12.2.jar | None | | | biometweakercore | 1.0.39 | minecraft.jar | None | | | foamfixcore | 7.7.4 | minecraft.jar | None | | | obfuscate | 0.4.2 | minecraft.jar | None | | | opencomputers|core | 1.8.5 | minecraft.jar | None | | | tnt_utilities_core | 1.2.3 | minecraft.jar | None | | | essential | 1.0.0 | Essential (forge_1.12.2).processed.jar | None | | | skinlayers3d | 1.2.0 | 3dSkinLayers-forge-mc1.12.2-1.2.0.jar | None | | | servercountryflags | 1.8.1 | servercountryflags-1.8.1-1.12.2-FORGE.jar | None | | | securitycraft | v1.9.9 | [1.12.2] SecurityCraft v1.9.9.jar | None | | | acheads | 2.1.1 | AbyssalCraft Heads-1.12.2-2.1.1.jar | None | | | acintegration | 1.11.3 | AbyssalCraft Integration-1.12.2-1.11.3.jar | None | | | abyssalcraft | 1.10.5 | AbyssalCraft-1.12.2-1.10.5.jar | None | | | actuallyadditions | 1.12.2-r152 | ActuallyAdditions-1.12.2-r152.jar | None | | | actuallycomputers | @Version@ | actuallycomputers-2.2.0.jar | None | | | additionalpipes | 6.0.0.8 | additionalpipes-6.0.0.8.jar | None | | | advancementbook | 1.0.3 | Advancement_Book-1.12-1.0.3.jar | None | | | aether_legacy_addon | 1.12.2-v1.3.0 | Aether Continuation v1.3.0.jar | None | | | aether_legacy | 1.5.3.2 | aether-1.12.2-v1.5.4.0.jar | None | | | aether | 0.3.0 | aether_ii-1.12.2-0.3.0+build411-universal.jar | None | | | flyringbaublemod | 0.3.1_1.12-d4e654e | angelRingToBauble-1.12-0.3.1.50+d4e654e.jar | None | | | applecore | 3.4.0 | AppleCore-mc1.12.2-3.4.0.jar | None | | | appleskin | 1.0.14 | AppleSkin-mc1.12-1.0.14.jar | None | | | appliedenergistics2 | rv6-stable-7 | appliedenergistics2-rv6-stable-7.jar | None | | | ate | 1.0.0 | ATE-1.5.jar | None | | | autopackager | 1.12 | autopackager-1.12.jar | None | | | autoreglib | 1.3-32 | AutoRegLib-1.3-32.jar | None | | | avaritia | 3.3.0 | Avaritia-1.12.2-3.3.0.37-universal.jar | None | | | avaritiaddons | 1.12.2-1.9 | Avaritiaddons-1.12.2-1.9.jar | None | | | avaritiaio | @VERSION@ | avaritiaio-1.4.jar | None | | | avaritiarecipemaker | 1.0.0 | avaritiarecipemaker-1.0.0.jar | None | | | avaritiatweaks | 1.12.2-1.3.1 | AvaritiaTweaks-1.12.2-1.3.1.jar | None | | | avatarmod | 1.6.2 | avatarmod-1.6.2.jar | None | | | gorecore | 1.12.2-0.4.5 | avatarmod-1.6.2.jar | None | | | base | 3.14.0 | base-1.12.2-3.14.0.jar | None | | | baubles | 1.5.2 | Baubles-1.12-1.5.2.jar | None | | | bdlib | 1.14.4.1 | bdlib-1.14.4.1-mc1.12.2.jar | None | | | bedbugs | @VERSION@ | BedBugs-1.12-1.0.1.jar | None | | | betterbuilderswands | 0.11.1 | BetterBuildersWands-1.12-0.11.1.245+69d0d70.jar | None | | | betterquesting | 3.5.329 | BetterQuesting-3.5.329.jar | None | | | betterthanbunnies | 1.12.1-1.1.0 | BetterThanBunnies-1.12.1-1.1.0.jar | None | | | bibliocraft | 2.4.6 | BiblioCraft[v2.4.6][MC1.12.2].jar | None | | | bibliotheca | 1.3.6-1.12.2 | bibliotheca-1.3.6-1.12.2.jar | None | | | balancedorespawnores | 1.0.0 | Bifröst(V9).jar | None | | | biolib | 1.1.3 | biolib-1.1.3.jar | None | | | biometweaker | 3.2.369 | BiomeTweaker-1.12.2-3.2.369.jar | None | | | blockdrops | 1.4.0 | blockdrops-1.12.2-1.4.0.jar | None | | | bloodmagic | 1.12.2-2.4.3-105 | BloodMagic-1.12.2-2.4.3-105.jar | None | | | bookshelf | 2.3.590 | Bookshelf-1.12.2-2.3.590.jar | None | | | bookworm | 1.12.2-2.5.2.1 | bookworm-1.12.2-2.5.2.1.jar | None | | | botania | r1.10-364 | Botania r1.10-364.4.jar | None | | | brandonscore | 2.4.20 | BrandonsCore-1.12.2-2.4.20.162-universal.jar | None | | | buildcraftcompat | 7.99.24.8 | buildcraft-all-7.99.24.8.jar | None | | | buildcraftbuilders | 7.99.24.8 | buildcraft-all-7.99.24.8.jar | None | | | buildcraftcore | 7.99.24.8 | buildcraft-all-7.99.24.8.jar | None | | | buildcraftenergy | 7.99.24.8 | buildcraft-all-7.99.24.8.jar | None | | | buildcraftfactory | 7.99.24.8 | buildcraft-all-7.99.24.8.jar | None | | | buildcraftlib | 7.99.24.8 | buildcraft-all-7.99.24.8.jar | None | | | buildcraftrobotics | 7.99.24.8 | buildcraft-all-7.99.24.8.jar | None | | | buildcraftsilicon | 7.99.24.8 | buildcraft-all-7.99.24.8.jar | None | | | buildcrafttransport | 7.99.24.8 | buildcraft-all-7.99.24.8.jar | None | | | btg | 1.1.1 | By The Gods-1.12.2-1.1.1.jar | None | | | camera | 1.0.10 | camera-1.0.10.jar | None | | | cctweaked | 1.89.2 | cc-tweaked-1.12.2-1.89.2.jar | None | | | computercraft | 1.89.2 | cc-tweaked-1.12.2-1.89.2.jar | None | | | ceramics | 1.12-1.3.7b | Ceramics-1.12-1.3.7b.jar | None | | | chameleon | 1.12-4.1.3 | Chameleon-1.12-4.1.3.jar | None | | | chameleon_morph | 1.2.2 | chameleon-1.2.2.jar | None | | | chancecubes | 1.12.2-5.0.2.385 | ChanceCubes-1.12.2-5.0.2.385.jar | None | | | charset | 0.5.6.6 | Charset-Lib-0.5.6.6.jar | None | | | chesttransporter | 2.8.8 | ChestTransporter-1.12.2-2.8.8.jar | None | | | chickenchunks | 2.4.2.74 | ChickenChunks-1.12.2-2.4.2.74-universal.jar | None | | | chickens | 6.0.4 | chickens-6.0.4.jar | None | | | chisel | MC1.12.2-1.0.2.45 | Chisel-MC1.12.2-1.0.2.45.jar | None | | | chiseled_me | 1.12-3.0.0.0-git-e5ce416 | chiseled-me-1.12-3.0.0.0-git-e5ce416.jar | None | | | chiseledadditions | @Version@ | ChiseledAdditions-1.0.0.jar | None | | | chiselsandbits | 14.33 | chiselsandbits-14.33.jar | None | | | cjcm | 1.0 | cjcm-1.0.jar | None | | | clienttweaks | 3.1.11 | ClientTweaks_1.12.2-3.1.11.jar | None | | | clipboard | @VERSION@ | Clipboard-1.12-1.3.0.jar | None | | | clumps | 3.1.2 | Clumps-3.1.2.jar | None | | | codechickenlib | 3.2.3.358 | CodeChickenLib-1.12.2-3.2.3.358-universal.jar | None | | | colossalchests | 1.7.3 | ColossalChests-1.12.2-1.7.3.jar | None | | | comforts | 1.4.1.3 | comforts-1.12.2-1.4.1.3.jar | None | | | commoncapabilities | 2.4.8 | CommonCapabilities-1.12.2-2.4.8.jar | None | | | controlling | 3.0.10 | Controlling-3.0.12.3.jar | None | | | cookingforblockheads | 6.5.0 | CookingForBlockheads_1.12.2-6.5.0.jar | None | | | craftfallessentials | 1.2.6 | CraftfallEssentials-1.12.2-1.2.6.jar | None | | | ctgui | 1.0.0 | CraftTweaker2-1.12-4.1.20.698.jar | None | | | crafttweaker | 4.1.20 | CraftTweaker2-1.12-4.1.20.698.jar | None | | | crafttweakerjei | 2.0.3 | CraftTweaker2-1.12-4.1.20.698.jar | None | | | ctm | MC1.12.2-1.0.2.31 | CTM-MC1.12.2-1.0.2.31.jar | None | | | cucumber | 1.1.3 | Cucumber-1.12.2-1.1.3.jar | None | | | custommainmenu | 2.0.9.1 | CustomMainMenu-MC1.12.2-2.0.9.1.jar | None | | | cyclopscore | 1.6.7 | CyclopsCore-1.12.2-1.6.7.jar | None | | | darknesslib | 1.1.2 | DarknessLib-1.12.2-1.1.2.jar | None | | | darkutils | 1.8.230 | DarkUtils-1.12.2-1.8.230.jar | None | | | props | 2.6.3.7 | Decocraft-2.6.3.7_1.12.2.jar | None | | | deepresonance | 1.8.0 | deepresonance-1.12-1.8.0.jar | None | | | defaultoptions | 9.2.8 | DefaultOptions_1.12.2-9.2.8.jar | None | | | draconicadditions | 1.17.0 | Draconic-Additions-1.12.2-1.17.0.45-universal.jar | None | | | draconicevolution | 2.3.28 | Draconic-Evolution-1.12.2-2.3.28.354-universal.jar | None | | | draconicalchemy | 0.2 | draconicalchemy-0.2.jar | None | | | maia_draconic_edition | 1.0.0 | DraconicEvolution_MAIA_1.0.0.jar | None | | | eleccoreloader | 1.9.453 | ElecCore-1.12.2-1.9.453.jar | None | | | eleccore | 1.9.453 | ElecCore-1.12.2-1.9.453.jar | None | | | ebwizardry | 4.3.13 | ElectroblobsWizardry-4.3.13.jar | None | | | endercore | 1.12.2-0.5.78 | EnderCore-1.12.2-0.5.78.jar | None | | | enderio | 5.3.72 | EnderIO-1.12.2-5.3.72.jar | None | | | enderiobase | 5.3.72 | EnderIO-1.12.2-5.3.72.jar | None | | | enderioconduitsappliedenergistics | 5.3.72 | EnderIO-1.12.2-5.3.72.jar | None | | | enderioconduitsopencomputers | 5.3.72 | EnderIO-1.12.2-5.3.72.jar | None | | | enderioconduitsrefinedstorage | 5.3.72 | EnderIO-1.12.2-5.3.72.jar | None | | | enderioconduits | 5.3.72 | EnderIO-1.12.2-5.3.72.jar | None | | | enderiointegrationforestry | 5.3.72 | EnderIO-1.12.2-5.3.72.jar | None | | | enderiointegrationtic | 5.3.72 | EnderIO-1.12.2-5.3.72.jar | None | | | enderiointegrationticlate | 5.3.72 | EnderIO-1.12.2-5.3.72.jar | None | | | enderioinvpanel | 5.3.72 | EnderIO-1.12.2-5.3.72.jar | None | | | enderiomachines | 5.3.72 | EnderIO-1.12.2-5.3.72.jar | None | | | enderiopowertools | 5.3.72 | EnderIO-1.12.2-5.3.72.jar | None | | | gasconduits | 5.3.72 | EnderIO-conduits-mekanism-1.12.2-5.3.72.jar | None | | | enderioendergy | 5.3.72 | EnderIO-endergy-1.12.2-5.3.72.jar | None | | | enderiozoo | 5.3.72 | EnderIO-zoo-1.12.2-5.3.72.jar | None | | | endermail | 1.1.3 | EnderMail-1.12.2-1.1.3.jar | None | | | enderstorage | 2.4.6.137 | EnderStorage-1.12.2-2.4.6.137-universal.jar | None | | | enderstorage | 2.5.0 | EnderStorage-1.12.2-2.5.0.jar | None | | | endertweaker | 1.2.3 | EnderTweaker-1.12.2-1.2.3.jar | None | | | energyconverters | 1.3.7.30 | energyconverters_1.12.2-1.3.7.30.jar | None | | | engineersworkshop | 1.4.0-1.12.2 | EngineersWorkshop-1.4.0-1.12.2.jar | None | | | entityculling | @VER@ | entityculling-1.12.2-1.6.3.jar | None | | | environmentaltech | 1.12.2-2.0.20.1 | environmentaltech-1.12.2-2.0.20.1.jar | None | | | etlunar | 1.12.2-2.0.20.1 | etlunar-1.12.2-2.0.20.1.jar | None | | | motnt | 1.0.1 | EvenMoreTNT-1.0.1.jar | None | | | excompressum | 3.0.32 | ExCompressum_1.12.2-3.0.32.jar | None | | | exnihilocreatio | 1.12.2-0.4.7.2 | exnihilocreatio-1.12.2-0.4.7.2.jar | None | | | exnihiloomnia | 1.0 | exnihiloomnia_1.12.2-0.0.2.jar | None | | | expandableinventory | 1.4.0 | ExpandableInventory-1.12.2-1.4.0.jar | None | | | extrabitmanipulation | 1.12.2-3.4.1 | ExtraBitManipulation-1.12.2-3.4.1.jar | None | | | extra_spells | 1.2.0 | ExtraSpells-1.12.2-1.2.0.jar | None | | | extrautils2 | 1.0 | extrautils2-1.12-1.9.9.jar | None | | | bigreactors | 1.12.2-0.4.5.68 | ExtremeReactors-1.12.2-0.4.5.68.jar | None | | | fairylights | 2.1.10 | fairylights-2.2.0-1.12.2.jar | None | | | farmingforblockheads | 3.1.28 | FarmingForBlockheads_1.12.2-3.1.28.jar | None | | | fenceoverhaul | 1.3.4 | FenceOverhaul-1.3.4.jar | None | | | examplemod | 1.0 | flatcolorblock-hexfinder.jar | None | | | flatcoloredblocks | mc1.12-6.8 | flatcoloredblocks-mc1.12-6.8.jar | None | | | fluxnetworks | 4.1.0 | FluxNetworks-1.12.2-4.1.1.34.jar | None | | | foamfix | @VERSION@ | foamfix-0.10.15-1.12.2.jar | None | | | forestry | 5.8.2.387 | forestry_1.12.2-5.8.2.387.jar | None | | | forgelin | 1.8.4 | Forgelin-1.8.4.jar | None | | | forgelin_continuous | 1.9.23.0 | Forgelin-Continuous-1.9.23.0.jar | None | | | microblockcbe | 2.6.2.83 | ForgeMultipart-1.12.2-2.6.2.83-universal.jar | None | | | forgemultipartcbe | 2.6.2.83 | ForgeMultipart-1.12.2-2.6.2.83-universal.jar | None | | | minecraftmultipartcbe | 2.6.2.83 | ForgeMultipart-1.12.2-2.6.2.83-universal.jar | None | | | ftbultimine | 1202.3.5 | ftb-ultimine-1202.3.5.jar | None | | | ftbbackups | 1.1.0.1 | FTBBackups-1.1.0.1.jar | None | | | ftblib | 5.4.7.2 | FTBLib-5.4.7.2.jar | None | | | ftbmoney | 1.2.0.47 | FTBMoney-1.2.0.47.jar | None | | | ftbquests | 1202.9.0.15 | FTBQuests-1202.9.0.15.jar | None | | | ftbutilities | 5.4.1.131 | FTBUtilities-5.4.1.131.jar | None | | | fw | 1.6.0 | FullscreenWindowed-1.12-1.6.0.jar | None | | | funtnt | 1.12.2.0 | funtnt-1.12.2.0.jar | None | | | cfm | 6.3.0 | furniture-6.3.2-1.12.2.jar | None | | | gardenofglass | sqrt(-1) | GardenOfGlass.jar | None | | | geckolib3 | 3.0.30 | geckolib-forge-1.12.2-3.0.31.jar | None | | | advgenerators | 0.9.20.12 | generators-0.9.20.12-mc1.12.2.jar | None | | | googlyeyes | 7.1.1 | GooglyEyes-1.12.2-7.1.1.jar | None | | | grapplemod | 1.12.2-v13 | grappling_hook_mod-1.12.2-v13.jar | None | | | gravestone | 1.10.3 | gravestone-1.10.3.jar | None | | | gravitygun | 7.1.0 | GravityGun-1.12.2-7.1.0.jar | None | | | grue | 1.8.1 | Grue-1.12.2-1.8.1.jar | None | | | guideapi | 1.12-2.1.8-63 | Guide-API-1.12-2.1.8-63.jar | None | | | gunpowderlib | 1.12.2-1.1 | GunpowderLib-1.12.2-1.1.jar | None | | | cgm | 0.15.3 | guns-0.15.3-1.12.2.jar | None | | | gyth | 2.1.38 | Gyth-1.12.2-2.1.38.jar | None | | | hammercore | 12.2.50 | HammerLib-1.12.2-12.2.50.jar | None | | | harvest | 1.12-1.2.8-25 | Harvest-1.12-1.2.8-25.jar | None | | | hatchery | 2.2.2 | hatchery-1.12.2-2.2.2.jar | None | | | headcrumbs | 2.0.4 | Headcrumbs-1.12.2-2.0.5.17.jar | None | | | heroesexpansion | 1.12.2-1.3.5 | HeroesExpansion-1.12.2-1.3.5.jar | None | | | hopperducts | 1.5 | hopperducts-mc1.12-1.5.jar | None | | | waila | 1.8.26 | Hwyla-1.8.26-B41_1.12.2.jar | None | | | hydrogel | 1.1.0 | HydroGel-1.12.2-1.1.0.jar | None | | | icbmclassic | 6.0.0 | ICBM-classic-1.12.2-6.0.0-preview.1.jar | None | | | icbmcc | 1.0.2 | ICBM-classic-cc-addon-1.12.2-1.0.2.jar | None | | | ichunutil | 7.2.2 | iChunUtil-1.12.2-7.2.2.jar | None | | | igi|bloodmagicintegration | 1.2 | IGI-BloodMagic-1.2.jar | None | | | igi|deepresonanceintegration | 1.1 | IGI-DeepResonance-1.1.jar | None | | | igi|rftoolsintegration | 1.2 | IGI-RFTools-1.2.jar | None | | | igi|thaumcraft | 1.0a | IGI-Thaumcraft-1.0a.jar | None | | | igisereneseasons | 1.0.0.1 | igisereneseasons-1.0.0.1.jar | None | | | immersivepetroleum | 1.1.10 | immersivepetroleum-1.12.2-1.1.10.jar | None | | | industrialupgrade | 3.1.3 | IndustrialUpgrade-1.12.2-3.1.3.jar | None | | | ingameinfoxml | 2.8.2.94 | InGameInfoXML-1.12.2-2.8.2.94-universal.jar | None | | | initialinventory | 2.0.2 | InitialInventory-3.0.0.jar | None | | | integrateddynamics | 1.1.11 | IntegratedDynamics-1.12.2-1.1.11.jar | None | | | integrateddynamicscompat | 1.0.0 | IntegratedDynamics-1.12.2-1.1.11.jar | None | | | integratedtunnels | 1.6.14 | IntegratedTunnels-1.12.2-1.6.14.jar | None | | | integratedtunnelscompat | 1.0.0 | IntegratedTunnels-1.12.2-1.6.14.jar | None | | | inventorypets | 2.0.15 | inventorypets-1.12-2.0.15.jar | None | | | inventorysorter | 1.13.3+57 | inventorysorter-1.12.2-1.13.3+57.jar | None | | | ironchest | 1.12.2-7.0.67.844 | ironchest-1.12.2-7.0.72.847.jar | None | | | ironjetpacks | 1.1.0 | IronJetpacks-1.12-2-1.1.0.jar | None | | | ironman | Beta-1.12.2-1.2.6 | IronMan-1.12.2-Beta-1.12.2-1.2.6.jar | None | | | itemfilters | 1.0.4.2 | ItemFilters-1.0.4.2.jar | None | | | jeiutilities | 0.2.12 | JEI-Utilities-1.12.2-0.2.12.jar | None | | | jei | 4.16.1.301 | jei_1.12.2-4.16.1.301.jar | None | | | jeiintegration | 1.6.0 | jeiintegration_1.12.2-1.6.0.jar | None | | | journeymap | 1.12.2-5.7.1p2 | journeymap-1.12.2-5.7.1p2.jar | None | | | kleeslabs | 5.4.12 | KleeSlabs_1.12.2-5.4.12.jar | None | | | librarianliblate | 4.22 | librarianlib-1.12.2-4.22.jar | None | | | librarianlib | 4.22 | librarianlib-1.12.2-4.22.jar | None | | | literalascension | 1.12.2-1.0.2.2 | literalascension-1.12.2-2.0.0.0.jar | None | | | logisticspipes | 0.10.3.114 | logisticspipes-0.10.3.114.jar | None | | | longfallboots | 1.2.1a | longfallboots-1.2.1b.jar | None | | | lootbags | 2.5.8.5 | LootBags-1.12.2-2.5.8.5.jar | None | | | lost_aether | 1.0.2 | lost-aether-content-1.12.2-1.0.2.jar | None | | | lostinfinity | 1.15.4 | lostinfinity-1.16.0.jar | None | | | luckynuke | 1.0.0 | Lucky (1).jar | None | | | lucraftcore | 1.12.2-2.4.16 | LucraftCore-1.12.2-2.4.17.jar | None | | | lucraftcoreidextender | 1.0.1 | LucraftCoreIDExtender.jar | None | | | lunatriuscore | 1.2.0.42 | LunatriusCore-1.12.2-1.2.0.42-universal.jar | None | | | magiccraftadventure | v1.10 | MagicCraftAdventure v1.10.jar | None | | | malisiscore | 1.12.2-6.5.1-SNAPSHOT | malisiscore-1.12.2-6.5.1.jar | None | | | malisisdoors | 1.12.2-7.3.0 | malisisdoors-1.12.2-7.3.0.jar | None | | | mantle | 1.12-1.3.3.55 | Mantle-1.12-1.3.3.55.jar | None | | | matc | 1.0.1-hotfix | matc-1.0.1-hotfix.jar | None | | | mcef | 1.11 | mcef-1.12.2-1.11.jar | None | | | mcjtylib_ng | 3.5.4 | mcjtylib-1.12-3.5.4.jar | None | | | mclib | 2.4.2 | mclib-2.4.2-1.12.2.jar | None | | | mcmultipart | 2.5.3 | MCMultiPart-2.5.3.jar | None | | | mekanism | 1.12.2-9.8.3.390 | Mekanism-1.12.2-9.8.3.390.jar | None | | | mekanismgenerators | 1.12.2-9.8.3.390 | MekanismGenerators-1.12.2-9.8.3.390.jar | None | | | mekanismtools | 1.12.2-9.8.3.390 | MekanismTools-1.12.2-9.8.3.390.jar | None | | | mercurius | 1.0.6 | Mercurius-1.12.2.jar | None | | | metamorph | 1.3.1 | metamorph-1.3.1-1.12.2.jar | None | | | metamorphmax | 0.13 - MC 1.12.2 | metamorphmax-0.13.jar | None | | | minemenu | 1.6.11 | MineMenu-1.12.2-1.6.11-universal.jar | None | | | minicoal | 1.0 | minicoal-1.12.2-1.0.jar | None | | | missing_pieces | 4.3.0 | missing_pieces-1.12.2-4.3.0.jar | None | | | moarsigns | 6.0.0.11 | MoarSigns-1.12.2-6.0.0.11.jar | None | | | moartinkers | 0.6.0 | moartinkers-0.6.0.jar | None | | | mob_grinding_utils | 0.3.13 | MobGrindingUtils-0.3.13.jar | None | | | modnametooltip | 1.10.1 | modnametooltip_1.12.2-1.10.1.jar | None | | | modtweaker | 4.0.19 | modtweaker-4.0.20.11.jar | None | | | moreavaritia | 3.5 | moreavaritia-mc1.12.2-v1.5.jar | None | | | morechickens | 3.1.0 | morechickens-1.12.2-3.1.0.jar | None | | | shear | 1.1.2 | MoreShearables1.3.1-1.12.2.jar | None | | | morpheus | 1.12.2-3.5.106 | Morpheus-1.12.2-3.5.106.jar | None | | | mousetweaks | 2.10 | MouseTweaks-2.10-mc1.12.2.jar | None | | | mowziesmobs | 1.5.8 | mowziesmobs-1.5.8.jar | None | | | mpbasic | 1.4.7 | mpbasic-1.12.2-1.4.11.jar | None | | | mputils | 1.5.6 | MPUtils-1.12.2-1.5.7.jar | None | | | mtlib | 3.0.7 | MTLib-3.0.7.jar | None | | | mysticalagradditions | 1.3.2 | MysticalAgradditions-1.12.2-1.3.2.jar | None | | | mysticalagriculture | 1.7.5 | MysticalAgriculture-1.12.2-1.7.5.jar | None | | | mysticallib | 1.12.2-1.13.0 | mysticallib-1.12.2-1.13.0.jar | None | | | natura | 1.12.2-4.3.2.69 | natura-1.12.2-4.3.2.69.jar | None | | | neat | 1.4-17 | Neat 1.4-17.jar | None | | | nice | 0.4.0 | nice-1.12-0.4.0.jar | None | | | nei | 2.4.3 | NotEnoughItems-1.12.2-2.4.3.245-universal.jar | None | | | notenoughwands | 1.8.1 | notenoughwands-1.12-1.8.1.jar | None | | | hbm | NTM-Extended-1.12.2-2.0.2 | NTM-Extended-1.12.2-2.0.2.jar | None | | | openablewindows | 0.0.1 | openablewindows-1.0.jar | None | | | opencomputers | 1.8.5 | OpenComputers-MC1.12.2-1.8.5+179e1c3.jar | None | | | eternalsoap.icbm.opencomputers | 1.0 | OpenComputersICBMAddon-1.3.jar | None | | | oreexcavation | 1.4.150 | OreExcavation-1.4.150.jar | None | | | orespawn | 3.3.1 | OreSpawn-1.12-3.3.1.179.jar | None | | | packingtape | 0.7.6 | PackingTape-1.12.2-0.7.6.jar | None | | | harvestcraft | 1.12.2zb | Pam's HarvestCraft 1.12.2zg.jar | None | | | pamsimpleharvest | 2.0.0 | pamsimpleharvest-2.0.0.jar | None | | | patchouli | 1.0-23.6 | Patchouli-1.0-23.6.jar | None | | | placebo | 1.6.0 | Placebo-1.12.2-1.6.1.jar | None | | | platforms | 1.4.6 | platforms-1.12.0-1.4.6.jar | None | | | portalgun | 7.1.0 | PortalGun-1.12.2-7.1.0.jar | None | | | powerutils | 1.5.3 | Power+Utilities.jar | None | | | projecte | 1.12.2-PE1.4.1 | ProjectE-1.12.2-PE1.4.1.jar | None | | | projectex | 1.2.0.40 | ProjectEX-1.2.0.40.jar | None | | | projectintelligence | 1.0.9 | ProjectIntelligence-1.12.2-1.0.9.28-universal.jar | None | | | psi | r1.1-78 | Psi-r1.1-78.2.jar | None | | | ptrmodellib | 1.0.5 | PTRLib-1.0.5.jar | None | | | pymtech | 1.12.2-1.0.2 | PymTech-1.12.2-1.0.2.jar | None | | | quantum_generators | 1.3.1 | Quantum_Generators.jar | None | | | quantumflux | 2.0.18 | quantumflux-1.12.2-2.0.18.jar | None | | | quantumstorage | 4.7.0 | QuantumStorage-1.12-4.7.0.jar | None | | | questbook | 3.1.1-1.12 | questbook-3.1.1-1.12.jar | None | | | randomthings | 4.2.7.4 | RandomThings-MC1.12.2-4.2.7.4.jar | None | | | rangedpumps | 0.5 | rangedpumps-0.5.jar | None | | | reborncore | 3.19.5 | RebornCore-1.12.2-3.19.5-universal.jar | None | | | rebornstorage | 1.0.0 | RebornStorage-1.12.2-3.3.4.1.jar | None | | | reccomplex | 1.4.8.5 | RecurrentComplex-1.4.8.5.jar | None | | | redstoneflux | 2.1.1 | RedstoneFlux-1.12-2.1.1.1-universal.jar | None | | | redstonepaste | 1.7.5 | redstonepaste-mc1.12-1.7.5.jar | None | | | refined_avaritia | 2.6 | refined_avaritia-1.12.2-2.6.jar | None | | | refinedstorage | 1.6.16 | refinedstorage-1.6.16.jar | None | | | refinedstorageaddons | 0.4.5 | refinedstorageaddons-0.4.5.jar | None | | | refinedstoragerequestify | ${version} | refinedstoragerequestify-1.12.2-1.0.2-3.jar | None | | | regeneration | 3.0.3 | Regeneration-3.0.3.jar | None | | | resourceloader | 1.5.3 | ResourceLoader-MC1.12.1-1.5.3.jar | None | | | rftdimtweak | 1.1 | RFTDimTweak-1.12.2-1.1.jar | None | | | rftools | 7.73 | rftools-1.12-7.73.jar | None | | | rftoolscontrol | 2.0.2 | rftoolsctrl-1.12-2.0.2.jar | None | | | rftoolsdim | 5.71 | rftoolsdim-1.12-5.71.jar | None | | | rftoolspower | 1.2.0 | rftoolspower-1.12-1.2.0.jar | None | | | rftpwroc | 0.1 | rftpwr_oc-0.2.jar | None | | | roots | 1.12.2-3.1.9.2 | Roots-1.12.2-3.1.9.2.jar | None | | | rslargepatterns | 1.12.2-1.0.0.0 | RSLargePatterns-1.12.2-1.0.0.1.jar | None | | | woodenshears | @MAJOR@.@MINOR@.@REVIS@.@BUILD@ | SBM-WoodenShears-1.12-0.0.1b8.jar | None | | | scanner | 1.6.12 | scanner-1.6.12.jar | None | | | secureenderstorage | 1.12.2-1.2.0 | SecureEnderStorage-1.12.2-1.2.0.jar | None | | | sereneseasons | 1.2.18 | SereneSeasons-1.12.2-1.2.18-universal.jar | None | | | shadowmc | 3.8.0 | ShadowMC-1.12-3.8.0.jar | None | | | shearmadness | 1.12.2 | shearmadness-1.12.2-1.7.2.4.jar | None | | | simple-rpc | 1.0 | simple-rpc-1.12.2-3.1.1.jar | None | | | simplecorn | 2.5.12 | SimpleCorn1.12-2.5.12.jar | None | | | simplegenerators | 1.12.2-2.0.20.2 | simplegenerators-1.12.2-2.0.20.2.jar | None | | | simplyquarries | 1.6.2 | Simply+Quarries.jar | None | | | simplyjetpacks | 1.12.2-2.2.20.0 | SimplyJetpacks2-1.12.2-2.2.20.0.jar | None | | | snad | 1.12.1-1.7.09.16a | Snad-1.12.1-1.7.09.16a.jar | None | | | solarflux | 12.4.11 | SolarFluxReborn-1.12.2-12.4.11.jar | None | | | sonarcore | 5.0.19 | sonarcore-1.12.2-5.0.19-20.jar | None | | | speedsterheroes | 1.12.2-2.2.1 | SpeedsterHeroes-1.12.2-2.2.1.jar | None | | | statues | 0.8.10 | statues-1.12.2-0.8.11.jar | None | | | stellarfluidconduits | 1.12.2-1.0.0 | stellarfluidconduit-1.12.2-1.0.3.jar | None | | | stevescarts | 2.4.32.137 | StevesCarts-1.12.2-2.4.32.137.jar | None | | | storagedrawers | 5.5.0 | StorageDrawers-1.12.2-5.5.0.jar | None | | | tabula | 7.1.0 | Tabula-1.12.2-7.1.0.jar | None | | | taiga | 1.12.2-1.3.3 | taiga-1.12.2-1.3.4.jar | None | | | tardis | 0.1.4A | tardis-0.1.4A.jar | None | | | tconstruct | 1.12.2-2.13.0.183 | TConstruct-1.12.2-2.13.0.183.jar | None | | | thaumcraft | 6.1.BETA26 | Thaumcraft-1.12.2-6.1.BETA26.jar | None | | | thaumicjei | 1.6.0 | ThaumicJEI-1.12.2-1.6.0-27.jar | None | | | beneath | 1.7.1 | The Beneath-1.12.2-1.7.1.jar | None | | | the-fifth-world | 0.5 | the-fifth-world-0.5.1.jar | None | | | tabulathreecoreexporter | 1.12.2-1.0.0 | ThreeCoreModelExporter-1.12.2-1.0.0.jar | None | | | tinkersaddons | 1.0.7 | Tinkers' Addons-1.12.1-1.0.7.jar | None | | | tinkers_reforged | 1.5.6 | tinkers_reforged-1.5.6.jar | None | | | tinkers_reforged_preload | 1.5.6 | tinkers_reforged-1.5.6.jar | None | | | tinkersaether | 1.4.1 | tinkersaether-1.4.1.jar | None | | | tcomplement | 1.12.2-0.4.3 | TinkersComplement-1.12.2-0.4.3.jar | None | | | tinkersjei | 1.2 | tinkersjei-1.2.jar | None | | | tinkersoc | 0.6 | tinkersoc-0.6.jar | None | | | tinkertoolleveling | 1.12.2-1.1.0.DEV.b23e769 | TinkerToolLeveling-1.12.2-1.1.0.jar | None | | | tp | 3.2.34 | tinyprogressions-1.12.2-3.3.34-Release.jar | None | | | tnt_craft | 1.0.0 | tnt-craft-1.12.2-V-1.1.0.jar | None | | | tnt_utilities | 1.2.3 | tnt_utilities-mc1.12-1.2.3.jar | None | | | torchmaster | 1.8.5.0 | torchmaster_1.12.2-1.8.5.0.jar | None | | | translocators | 2.5.2.81 | Translocators-1.12.2-2.5.2.81-universal.jar | None | | | ts2k16 | 1.2.10 | TS2K16-1.2.10.jar | None | | | twitchcrumbs | 3.0.4 | Twitchcrumbs_1.12.2-3.0.4.jar | None | | | unidict | 1.12.2-3.0.10 | UniDict-1.12.2-3.0.10.jar | None | | | universalmodifiers | 1.12.2-1.0.16.1 | valkyrielib-1.12.2-2.0.20.1.jar | None | | | valkyrielib | 1.12.2-2.0.20.1 | valkyrielib-1.12.2-2.0.20.1.jar | None | | | vehicle | 0.44.1 | vehicle-mod-0.44.1-1.12.2.jar | None | | | viaforge | 3.6.0 | viaforge-mc1122-3.6.0.jar | None | | | voicechat | 1.12.2-2.5.13 | voicechat-forge-1.12.2-2.5.13.jar | None | | | waddles | 0.6.0 | Waddles-1.12.2-0.6.0.jar | None | | | wanionlib | 1.12.2-2.91 | WanionLib-1.12.2-2.91.jar | None | | | warpbook | 1.12.2-3.3.4 | Warpbook-1.12.2-3.3.4.jar | None | | | wawla | 2.6.275 | Wawla-1.12.2-2.6.275.jar | None | | | waystones | 4.1.0 | Waystones_1.12.2-4.1.0.jar | None | | | webdisplays | 1.1 | webdisplaysremastered-1.12.2-1.2.jar | None | | | wintertagva | 1.12.2-1.0.0 | WinterTAGVA-1.12.2-1.0.0.jar | None | | | withercrumbs | @version@ | witherCrumbs-1.12.2-0.11.jar | None | | | zerocore | 1.12.2-0.1.2.9 | zerocore-1.12.2-0.1.2.9.jar | None | | | orbis-lib | 0.2.0 | orbis-lib-1.12.2-0.2.0+build411.jar | None | | | phosphor-lighting | 1.12.2-0.2.6 | phosphor-1.12.2-0.2.6+build50.jar | None | | | immersiveengineering | 0.12-98 | ImmersiveEngineering-0.12-98.jar | None | | | k9 | 1.12.2-1.3.3.0 | k9-1.12.2-1.3.3.0.jar | None | | | llibrary | 1.7.20 | llibrary-1.7.20-1.12.2.jar | None | | | shetiphiancore | 3.5.9 | shetiphiancore-1.12.0-3.5.9.jar | None | | | structurize | 1.12.2-0.10.277-RELEASE | structurize-1.12.2-0.10.277-RELEASE.jar | None | | | weeping-angels | 1.12.2-46 | weeping-angels-46.jar | None | Loaded coremods (and transformers): IELoadingPlugin (ImmersiveEngineering-core-0.12-98.jar) blusunrize.immersiveengineering.common.asm.IEClassTransformer LibrarianLib Plugin (librarianlib-1.12.2-4.22.jar) com.teamwizardry.librarianlib.asm.LibLibTransformer MixinLoader (viaforge-mc1122-3.6.0.jar) McLib core mod (mclib-2.4.2-1.12.2.jar) mchorse.mclib.core.McLibCMClassTransformer EFFLL (LiteLoader ObjectHolder fix) (ExtraFoamForLiteLoader-1.0.0.jar) pl.asie.extrafoamforliteloader.EFFLLTransformer MekanismCoremod (Mekanism-1.12.2-9.8.3.390.jar) mekanism.coremod.KeybindingMigrationHelper LogisticsPipesCoreLoader (logisticspipes-0.10.3.114.jar) logisticspipes.asm.LogisticsClassTransformer AppleCore (AppleCore-mc1.12.2-3.4.0.jar) squeek.applecore.asm.TransformerModuleHandler BiomeTweakerCore (BiomeTweakerCore-1.12.2-1.0.39.jar) me.superckl.biometweakercore.BiomeTweakerASMTransformer ObfuscatePlugin (obfuscate-0.4.2-1.12.2.jar) com.mrcrayfish.obfuscate.asm.ObfuscateTransformer Regeneration (Regeneration-3.0.3.jar) me.suff.mc.regen.asm.RegenClassTransformer UniDictCoreMod (UniDict-1.12.2-3.0.10.jar) wanion.unidict.core.UniDictCoreModTransformer ReflectorsPlugin (EnderStorage-1.12.2-2.5.0.jar) codechicken.enderstorage.reflection.ReflectorsPlugin EntityCullingEarlyLoader (entityculling-1.12.2-1.6.3.jar) Controllable (controllable-0.11.2-1.12.2.jar) craftfallessentials (CraftfallEssentials-1.12.2-1.2.6.jar) com.hydrosimp.craftfallessentials.core.CEClassTransformer SecurityCraftLoadingPlugin ([1.12.2] SecurityCraft v1.9.9.jar) LoadingPlugin (ResourceLoader-MC1.12.1-1.5.3.jar) lumien.resourceloader.asm.ClassTransformer MalisisCorePlugin (malisiscore-1.12.2-6.5.1.jar) pymtech (PymTech-1.12.2-1.0.2.jar) lucraft.mods.pymtech.core.PymTechClassTransformer IvToolkit (IvToolkit-1.3.3-1.12.jar) JeiUtilitiesLoadingPlugin (JEI-Utilities-1.12.2-0.2.12.jar) com.github.vfyjxf.jeiutilities.asm.JeiUtilitiesClassTransformer LoadingPlugin (RandomThings-MC1.12.2-4.2.7.4.jar) lumien.randomthings.asm.ClassTransformer SSLoadingPlugin (SereneSeasons-1.12.2-1.2.18-universal.jar) sereneseasons.asm.transformer.EntityRendererTransformer sereneseasons.asm.transformer.WorldTransformer Do not report to Forge! (If you haven't disabled the FoamFix coremod, try disabling it in the config! Note that this bit of text will still appear.) (foamfix-0.10.15-1.12.2.jar) pl.asie.foamfix.coremod.FoamFixTransformer FTBUltimineASM (ftb-ultimine-1202.3.5.jar) ForgelinPlugin (Forgelin-1.8.4.jar) Backpacked (backpacked-1.4.3-1.12.2.jar) com.mrcrayfish.backpacked.asm.BackpackedTransformer ForgelinPlugin (Forgelin-Continuous-1.9.23.0.jar) HCASM (HammerLib-1.12.2-12.2.50.jar) com.zeitheron.hammercore.asm.HammerCoreTransformer LucraftCoreExtendedID (LucraftCoreIDExtender.jar) NWRTweak (redstonepaste-mc1.12-1.7.5.jar) net.fybertech.nwr.NWRTransformer CTMCorePlugin (CTM-MC1.12.2-1.0.2.31.jar) team.chisel.ctm.client.asm.CTMTransformer LucraftCoreCoreMod (LucraftCore-1.12.2-2.4.17.jar) lucraft.mods.lucraftcore.core.LCTransformer EnderCorePlugin (EnderCore-1.12.2-0.5.78-core.jar) com.enderio.core.common.transform.EnderCoreTransformer com.enderio.core.common.transform.SimpleMixinPatcher TransformerLoader (OpenComputers-MC1.12.2-1.8.5+179e1c3.jar) li.cil.oc.common.asm.ClassTransformer llibrary (llibrary-core-1.0.11-1.12.2.jar) net.ilexiconn.llibrary.server.core.plugin.LLibraryTransformer net.ilexiconn.llibrary.server.core.patcher.LLibraryRuntimePatcher ShetiPhian-ASM (ShetiPhian-ASM-1.12.0.jar) shetiphian.asm.ClassTransformer PhosphorFMLLoadingPlugin (phosphor-1.12.2-0.2.6+build50.jar) MekanismTweaks (mekanismtweaks-1.1.jar) ShutdownPatcher (mcef-1.12.2-1.11-coremod.jar) net.montoyo.mcef.coremod.ShutdownPatcher TNTUtilities Core (tnt_utilities-mc1.12-1.2.3.jar) ljfa.tntutils.asm.ExplosionTransformer GL info: ' Vendor: 'Intel' Version: '4.6.0 - Build 32.0.101.5428' Renderer: 'Intel(R) Iris(R) Xe Graphics' Launched Version: forge-14.23.5.2860 LWJGL: 2.9.4 OpenGL: Intel(R) Iris(R) Xe Graphics GL version 4.6.0 - Build 32.0.101.5428, Intel GL Caps: Using GL 1.3 multitexturing. Using GL 1.3 texture combiners. Using framebuffer objects because OpenGL 3.0 is supported and separate blending is supported. Shaders are available because OpenGL 2.1 is supported. VBOs are available because OpenGL 1.5 is supported. Using VBOs: Yes Is Modded: Definitely; Client brand changed to 'fml,forge' Type: Client (map_client.txt) Resource Packs: Current Language: English (US) Profiler Position: N/A (disabled) CPU: 8x 11th Gen Intel(R) Core(TM) i5-1135G7 @ 2.40GHz
  8. Advice for the future: I made functions to create recipes more easily; they generate names for the recipes based on the ingredients and the result.
  9. I'm guessing that's so people can implement their own custom animated models? I really don't know though, since I've never had to use that at all. I just know that you can have more control over a block entity model than over a standard block model, as well as use animations. I'm glad I could help, though!
  10. Hiii. I wanted to add audio capability in MineRL (Minecraft based environment for Reinforcement Learning) which uses MCP Reborn. Any ideas in how I can capture the audio ?
  11. Cryptocurrency investments can be tempting, promising respectable returns and financial freedom. However, the harsh reality is that the digital landscape is rife with scams and fraudulent schemes, leaving unsuspecting individuals vulnerable to monetary loss. I learned this lesson the hard way when I fell victim to a fraudulent cryptocurrency exchange scam, losing a significant amount of money. It was a devastating blow, one that left me feeling hopeless and lost, unsure of where to turn for help. But in my darkest hour, a beacon of hope emerged in the form of a colleague who recommended a professional team of hackers called Muyern Trust Hacker. With their specialization in money recovery, they offered a glimmer of hope in what seemed like an insurmountable situation. Upon contacting Muyern Trust Hacker, I was immediately struck by their professionalism and competence. They listened to my story with empathy and understanding, assuring me that all hope was not lost. With their guidance and expertise, I journeyed to reclaim what was rightfully mine. The process was not without its challenges, but with Muyern Trust Hacker by my side, I felt empowered and supported every step of the way. Their team of skilled hackers utilized advanced techniques and strategies to trace and recover my lost investment, delivering results that exceeded my expectations. I was impressed not only by their technical prowess but also by their unwavering commitment to their client's well-being. They provided regular updates and reassurance throughout the recovery process, instilling confidence and trust in their abilities. Thanks to Muyern Trust Hacker's extraordinary efforts, I could reclaim my lost investment and emerge from the ordeal with renewed hope and optimism. Their professionalism, integrity, and dedication to their craft were truly commendable, and I am forever grateful for their assistance during my time of need. If you or someone you know has fallen victim to online scams or fraudulent schemes, don't despair. Reach out to Muyern Trust Hacker and let them guide you toward a solution. By sharing my story, I hope to increase awareness and save others from becoming victims of these dishonest schemes. ( ht tps : //muyerntrusthack .solutions/ ) ( Mail; muyerntrusted(at) mail-me (dot)c o m ) ( SIGNAL +1 585 2-2-8 86-05 )
  12. Firstly paste the report into this website: https://mclo.gs/ and then send it again afterwards.
  13. REMEMBER, ITS FABRIC 1.18.2 I'm not sure why my minecraft game had crashed, when I turned into a ghost I tried to harvest soul away from a spider since it had a soul with a empty soul vessel, but it instantly made my game crash, maybe it was because of sodium or something like that? Crash report: https://mclo.gs/oHzmbyF
  14. [09���2024 18:08:13.946] [main/INFO] [cpw.mods.modlauncher.Launcher/MODLAUNCHER]: ModLauncher running: args [--username, {MINECRAFT_USERNAME}, --version, 1.20.1, --gameDir, C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\com.modrinth.theseus\profiles\Create, --assetsDir, C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\com.modrinth.theseus\meta\assets, --assetIndex, 5, --uuid, {MINECRAFT_UUID}, --accessToken, ????????, --clientId, c4502edb-87c6-40cb-b595-64a280cf8906, --xuid, 0, --userType, msa, --versionType, release, --width, 854, --height, 480, --launchTarget, forgeclient, --fml.forgeVersion, 47.2.0, --fml.mcVersion, 1.20.1, --fml.forgeGroup, net.minecraftforge, --fml.mcpVersion, 20230612.114412] [09���2024 18:08:13.950] [main/INFO] [cpw.mods.modlauncher.Launcher/MODLAUNCHER]: ModLauncher 10.0.9+10.0.9+main.dcd20f30 starting: java version 17.0.9 by Azul Systems, Inc.; OS Windows 10 arch amd64 version 10.0 [09���2024 18:08:15.276] [main/INFO] [net.minecraftforge.fml.loading.ImmediateWindowHandler/]: Loading ImmediateWindowProvider fmlearlywindow [09���2024 18:08:15.332] [main/INFO] [EARLYDISPLAY/]: Trying GL version 4.6 [09���2024 18:08:15.494] [main/INFO] [EARLYDISPLAY/]: Requested GL version 4.6 got version 4.6 [09���2024 18:08:15.607] [pool-2-thread-1/INFO] [EARLYDISPLAY/]: GL info: NVIDIA GeForce RTX 3060 Ti/PCIe/SSE2 GL version 4.6.0 NVIDIA 552.12, NVIDIA Corporation [09���2024 18:08:16.315] [main/INFO] [gg.essential.loader.stage1.EssentialLoaderBase/]: Starting Essential Loader (stage2) version 1.6.1 (9bd5e242536094ad8f511663f3e90124) [stable] [09���2024 18:08:16.346] [main/INFO] [mixin/]: SpongePowered MIXIN Subsystem Version=0.8.5 Source=union:/C:/Users/{COMPUTER_USERNAME}/AppData/Roaming/com.modrinth.theseus/meta/libraries/org/spongepowered/mixin/0.8.5/mixin-0.8.5.jar%2391!/ Service=ModLauncher Env=CLIENT [09���2024 18:08:17.557] [main/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Mod file C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\com.modrinth.theseus\meta\libraries\net\minecraftforge\fmlcore\1.20.1-47.2.0\fmlcore-1.20.1-47.2.0.jar is missing mods.toml file [09���2024 18:08:17.559] [main/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Mod file C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\com.modrinth.theseus\meta\libraries\net\minecraftforge\javafmllanguage\1.20.1-47.2.0\javafmllanguage-1.20.1-47.2.0.jar is missing mods.toml file [09���2024 18:08:17.562] [main/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Mod file C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\com.modrinth.theseus\meta\libraries\net\minecraftforge\lowcodelanguage\1.20.1-47.2.0\lowcodelanguage-1.20.1-47.2.0.jar is missing mods.toml file [09���2024 18:08:17.564] [main/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Mod file C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\com.modrinth.theseus\meta\libraries\net\minecraftforge\mclanguage\1.20.1-47.2.0\mclanguage-1.20.1-47.2.0.jar is missing mods.toml file [09���2024 18:08:17.981] [main/WARN] [net.minecraftforge.jarjar.selection.JarSelector/]: Attempted to select two dependency jars from JarJar which have the same identification: Mod File: and Mod File: . Using Mod File: [09���2024 18:08:17.983] [main/WARN] [net.minecraftforge.jarjar.selection.JarSelector/]: Attempted to select a dependency jar for JarJar which was passed in as source: curios. Using Mod File: C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\com.modrinth.theseus\profiles\Create\mods\curios-forge-5.6.1+1.20.1.jar [09���2024 18:08:17.983] [main/WARN] [net.minecraftforge.jarjar.selection.JarSelector/]: Attempted to select a dependency jar for JarJar which was passed in as source: resourcefullib. Using Mod File: C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\com.modrinth.theseus\profiles\Create\mods\resourcefullib-forge-1.20.1-2.1.21.jar [09���2024 18:08:17.983] [main/INFO] [net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator/]: Found 75 dependencies adding them to mods collection [09���2024 18:08:18.040] [main/INFO] [gg.essential.loader.stage2.util.KFFMerger/]: Found Kotlin-containing mod Jar[union:/C:/Users/{COMPUTER_USERNAME}/AppData/Roaming/com.modrinth.theseus/profiles/Create/essential/libraries/forge_1.20.1/kotlin-for-forge-4.3.0-slim.jar%23346!/], checking whether we need to upgrade it.. [09���2024 18:08:18.042] [main/INFO] [gg.essential.loader.stage2.util.KFFMerger/]: Found outdated Kotlin core libs 0.0.0 (we ship 1.9.23) [09���2024 18:08:18.042] [main/INFO] [gg.essential.loader.stage2.util.KFFMerger/]: Found outdated Kotlin Coroutines libs 0.0.0 (we ship 1.8.0) [09���2024 18:08:18.042] [main/INFO] [gg.essential.loader.stage2.util.KFFMerger/]: Found outdated Kotlin Serialization libs 0.0.0 (we ship 1.6.3) [09���2024 18:08:18.043] [main/INFO] [gg.essential.loader.stage2.util.KFFMerger/]: Generating jar with updated Kotlin at C:\Users\{COMPUTER_USERNAME}\AppData\Local\Temp\kff-updated-kotlin-351865546182474677-4.3.0-slim.jar [09���2024 18:08:18.672] [main/INFO] [gg.essential.loader.stage2.util.KFFMerger/]: Found Kotlin-containing mod Jar[union:/C:/Users/{COMPUTER_USERNAME}/AppData/Roaming/com.modrinth.theseus/profiles/Create/mods/kotlinforforge-4.10.0-all.jar%23439!/], checking whether we need to upgrade it.. [09���2024 18:08:18.676] [main/INFO] [gg.essential.loader.stage2.util.KFFMerger/]: Found outdated Kotlin core libs 1.9.22 (we ship 1.9.23) [09���2024 18:08:18.676] [main/INFO] [gg.essential.loader.stage2.util.KFFMerger/]: Found outdated Kotlin Coroutines libs 1.7.3 (we ship 1.8.0) [09���2024 18:08:18.676] [main/INFO] [gg.essential.loader.stage2.util.KFFMerger/]: Found outdated Kotlin Serialization libs 0.0.0 (we ship 1.6.3) [09���2024 18:08:18.677] [main/INFO] [gg.essential.loader.stage2.util.KFFMerger/]: Generating jar with updated Kotlin at C:\Users\{COMPUTER_USERNAME}\AppData\Local\Temp\kff-updated-kotlin-13947004699402769727-4.10.0-all.jar [09���2024 18:08:19.337] [main/ERROR] [net.minecraftforge.fml.loading.ModSorter/LOADING]: Missing or unsupported mandatory dependencies: Mod ID: 'forge', Requested by: 'tfc', Expected range: '[47.1.3,47.1.6),[47.1.81,47.2.0),[47.2.6,)', Actual version: '47.2.0' [09���2024 18:08:22.079] [main/INFO] [mixin/]: Compatibility level set to JAVA_17 [09���2024 18:08:22.226] [main/ERROR] [mixin/]: Mixin config fabric-item-group-api-v1.client.mixins.json does not specify "minVersion" property [09���2024 18:08:22.258] [main/ERROR] [mixin/]: Mixin config mixins.satin.client.json does not specify "minVersion" property [09���2024 18:08:22.309] [main/ERROR] [mixin/]: Mixin config entity_model_features.mixins.json does not specify "minVersion" property [09���2024 18:08:22.315] [main/ERROR] [mixin/]: Mixin config indium.mixins.json does not specify "minVersion" property [09���2024 18:08:22.320] [main/ERROR] [mixin/]: Mixin config mixins.coolarmor.json does not specify "minVersion" property [09���2024 18:08:22.465] [main/INFO] [mixin/]: Successfully loaded Mixin Connector [com.sonicether.soundphysics.MixinConnector] [09���2024 18:08:22.466] [main/INFO] [mixin/]: Successfully loaded Mixin Connector [ca.spottedleaf.starlight.mixin.MixinConnector] [09���2024 18:08:22.466] [main/INFO] [mixin/]: Successfully loaded Mixin Connector [com.aizistral.enigmaticlegacy.MixinConnector] [09���2024 18:08:22.469] [main/INFO] [net.fabricmc.loader.impl.bootstrap.FabricLoaderBootstrap/]: Propagating FML mod list to Fabric Loader [09���2024 18:08:22.476] [main/INFO] [cpw.mods.modlauncher.LaunchServiceHandler/MODLAUNCHER]: Launching target 'forgeclient' with arguments [--version, 1.20.1, --gameDir, C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\com.modrinth.theseus\profiles\Create, --assetsDir, C:\Users\{COMPUTER_USERNAME}\AppData\Roaming\com.modrinth.theseus\meta\assets, --uuid, {MINECRAFT_UUID}, --username, {MINECRAFT_USERNAME}, --assetIndex, 5, --accessToken, ????????, --clientId, c4502edb-87c6-40cb-b595-64a280cf8906, --xuid, 0, --userType, msa, --versionType, release, --width, 854, --height, 480] [09���2024 18:08:22.485] [main/WARN] [mixin/]: Reference map 'createdeco-common-refmap.json' for createdeco-common.mixins.json could not be read. If this is a development environment you can ignore this message [09���2024 18:08:22.487] [main/WARN] [mixin/]: Reference map 'createdeco-forge-refmap.json' for createdeco.mixins.json could not be read. If this is a development environment you can ignore this message [09���2024 18:08:22.509] [main/WARN] [mixin/]: Reference map 'vinery-forge-refmap.json' for vinery.mixins.json could not be read. If this is a development environment you can ignore this message [09���2024 18:08:22.530] [main/INFO] [Embeddium/]: Loaded configuration file for Embeddium: 42 options available, 0 override(s) found [09���2024 18:08:22.532] [main/INFO] [Embeddium-GraphicsAdapterProbe/]: Searching for graphics cards... [09���2024 18:08:22.688] [main/INFO] [Embeddium-GraphicsAdapterProbe/]: Found graphics card: GraphicsAdapterInfo[vendor=NVIDIA, name=NVIDIA GeForce RTX 3060 Ti, version=DriverVersion=31.0.15.5212] [09���2024 18:08:22.692] [main/WARN] [Embeddium-Workarounds/]: Sodium has applied one or more workarounds to prevent crashes or other issues on your system: [NVIDIA_THREADED_OPTIMIZATIONS] [09���2024 18:08:22.692] [main/WARN] [Embeddium-Workarounds/]: This is not necessarily an issue, but it may result in certain features or optimizations being disabled. You can sometimes fix these issues by upgrading your graphics driver. [09���2024 18:08:22.703] [main/WARN] [mixin/]: Reference map 'handcrafted-forge-1.20.1-forge-refmap.json' for handcrafted.mixins.json could not be read. If this is a development environment you can ignore this message [09���2024 18:08:22.783] [main/WARN] [mixin/]: Reference map 'nitrogen_internals.refmap.json' for nitrogen_internals.mixins.json could not be read. If this is a development environment you can ignore this message [09���2024 18:08:22.821] [main/WARN] [mixin/]: Reference map 'tfmg.refmap.json' for design_decor.mixins.json could not be read. If this is a development environment you can ignore this message [09���2024 18:08:22.890] [main/WARN] [mixin/]: Reference map 'betterfarmland-forge-refmap.json' for betterfarmland.mixins.json could not be read. If this is a development environment you can ignore this message [09���2024 18:08:22.935] [main/INFO] [Embeddium Extra/]: Loaded configuration file for Sodium Extra: 34 options available, 0 override(s) found [09���2024 18:08:22.950] [main/INFO] [Puzzles Lib/]: Loading 2 mods: - forge 47.2.0 - minecraft 1.20.1 [09���2024 18:08:23.005] [main/WARN] [mixin/]: Reference map 'naturalist-forge-forge-refmap.json' for naturalist.mixins.json could not be read. If this is a development environment you can ignore this message [09���2024 18:08:23.019] [main/WARN] [mixin/]: Reference map 'letsdo-candlelight-forge-forge-refmap.json' for candlelight.mixins.json could not be read. If this is a development environment you can ignore this message [09���2024 18:08:23.030] [main/WARN] [mixin/]: Reference map 'ritchiesprojectilelib-forge-refmap.json' for ritchiesprojectilelib-forge.mixins.json could not be read. If this is a development environment you can ignore this message [09���2024 18:08:23.048] [main/WARN] [mixin/]: Reference map 'Bakery-forge-refmap.json' for bakery.mixins.json could not be read. If this is a development environment you can ignore this message [09���2024 18:08:23.060] [main/WARN] [mixin/]: Reference map 'beachparty-forge-refmap.json' for beachparty.mixins.json could not be read. If this is a development environment you can ignore this message [09���2024 18:08:23.107] [main/WARN] [mixin/]: Reference map 'entity_model_features_forge_1.20.1-forge-refmap.json' for entity_model_features.mixins.json could not be read. If this is a development environment you can ignore this message [09���2024 18:08:23.184] [main/WARN] [mixin/]: Reference map 'lookinsharp-forge-1.20.1-forge-refmap.json' for lookinsharp.mixins.json could not be read. If this is a development environment you can ignore this message [09���2024 18:08:23.217] [main/WARN] [mixin/]: Reference map 'immersive_paintings-common-refmap.json' for immersive_paintings.mixin.json could not be read. If this is a development environment you can ignore this message [09���2024 18:08:23.285] [main/INFO] [Essential Logger - Plugin/]: Starting Essential v1.3.2.2 (#c6bc4f09d7) [stable] [09���2024 18:08:23.799] [main/WARN] [mixin/]: Error loading class: net/raphimc/immediatelyfast/feature/map_atlas_generation/MapAtlasTexture (java.lang.ClassNotFoundException: net.raphimc.immediatelyfast.feature.map_atlas_generation.MapAtlasTexture) [09���2024 18:08:23.946] [main/WARN] [mixin/]: Error loading class: dev/latvian/mods/kubejs/recipe/RecipesEventJS (java.lang.ClassNotFoundException: dev.latvian.mods.kubejs.recipe.RecipesEventJS) [09���2024 18:08:23.946] [main/WARN] [mixin/]: @Mixin target dev.latvian.mods.kubejs.recipe.RecipesEventJS was not found sliceanddice.mixins.json:RecipeEventJSMixin [09���2024 18:08:23.998] [main/WARN] [mixin/]: Error loading class: net/minecraft/world/World (java.lang.ClassNotFoundException: net.minecraft.world.World) [09���2024 18:08:23.999] [main/WARN] [mixin/]: Error loading class: net/minecraft/class_1150 (java.lang.ClassNotFoundException: net.minecraft.class_1150) [09���2024 18:08:24.008] [main/WARN] [mixin/]: Error loading class: net/minecraft/src/C_4977_ (java.lang.ClassNotFoundException: net.minecraft.src.C_4977_) [09���2024 18:08:24.012] [main/WARN] [mixin/]: Error loading class: net/minecraft/server/world/ServerWorld (java.lang.ClassNotFoundException: net.minecraft.server.world.ServerWorld) [09���2024 18:08:24.015] [main/WARN] [mixin/]: Error loading class: net/minecraft/world/server/ServerWorld (java.lang.ClassNotFoundException: net.minecraft.world.server.ServerWorld) [09���2024 18:08:24.016] [main/WARN] [mixin/]: Error loading class: net/minecraft/class_3218 (java.lang.ClassNotFoundException: net.minecraft.class_3218) [09���2024 18:08:24.019] [main/WARN] [mixin/]: Error loading class: net/minecraft/src/C_12_ (java.lang.ClassNotFoundException: net.minecraft.src.C_12_) [09���2024 18:08:24.021] [main/WARN] [mixin/]: Error loading class: net/minecraft/unmapped/C_bdwnwhiu (java.lang.ClassNotFoundException: net.minecraft.unmapped.C_bdwnwhiu) [09���2024 18:08:24.237] [main/INFO] [com.cupboard.Cupboard/]: Loaded config for: structureessentials.json [09���2024 18:08:24.312] [main/WARN] [mixin/]: Error loading class: de/maxhenkel/voicechat/plugins/impl/audiochannel/EntityAudioChannelImpl (java.lang.ClassNotFoundException: de.maxhenkel.voicechat.plugins.impl.audiochannel.EntityAudioChannelImpl) [09���2024 18:08:24.312] [main/WARN] [mixin/]: @Mixin target de.maxhenkel.voicechat.plugins.impl.audiochannel.EntityAudioChannelImpl was not found railways-common.mixins.json:compat.voicechat.EntityAudioChannelImplMixin [09���2024 18:08:24.314] [main/WARN] [mixin/]: Error loading class: de/maxhenkel/voicechat/voice/server/Server (java.lang.ClassNotFoundException: de.maxhenkel.voicechat.voice.server.Server) [09���2024 18:08:24.315] [main/WARN] [mixin/]: @Mixin target de.maxhenkel.voicechat.voice.server.Server was not found railways-common.mixins.json:compat.voicechat.ServerMixin [09���2024 18:08:24.317] [main/WARN] [mixin/]: Error loading class: de/maxhenkel/voicechat/voice/server/ServerWorldUtils (java.lang.ClassNotFoundException: de.maxhenkel.voicechat.voice.server.ServerWorldUtils) [09���2024 18:08:24.317] [main/WARN] [mixin/]: @Mixin target de.maxhenkel.voicechat.voice.server.ServerWorldUtils was not found railways-common.mixins.json:compat.voicechat.ServerWorldUtilsMixin [09���2024 18:08:24.339] [main/WARN] [mixin/]: Error loading class: de/maxhenkel/voicechat/integration/freecam/FreecamUtil (java.lang.ClassNotFoundException: de.maxhenkel.voicechat.integration.freecam.FreecamUtil) [09���2024 18:08:24.340] [main/WARN] [mixin/]: @Mixin target de.maxhenkel.voicechat.integration.freecam.FreecamUtil was not found railways-common.mixins.json:compat.voicechat.FreecamUtilMixin [09���2024 18:08:24.386] [main/WARN] [mixin/]: Error loading class: me/jellysquid/mods/sodium/client/render/vertex/buffer/SodiumBufferBuilder (java.lang.ClassNotFoundException: me.jellysquid.mods.sodium.client.render.vertex.buffer.SodiumBufferBuilder) [09���2024 18:08:24.461] [main/WARN] [mixin/]: Error loading class: twilightforest/TFMagicMapData$TFMapDecoration (java.lang.ClassNotFoundException: twilightforest.TFMagicMapData$TFMapDecoration) [09���2024 18:08:24.556] [main/WARN] [mixin/]: Error loading class: fuzs/configmenusforge/client/gui/components/CustomBackgroundContainerObjectSelectionList (java.lang.ClassNotFoundException: fuzs.configmenusforge.client.gui.components.CustomBackgroundContainerObjectSelectionList) [09���2024 18:08:24.559] [main/WARN] [mixin/]: Error loading class: fuzs/configmenusforge/client/gui/components/CustomBackgroundObjectSelectionList (java.lang.ClassNotFoundException: fuzs.configmenusforge.client.gui.components.CustomBackgroundObjectSelectionList) [09���2024 18:08:24.789] [main/WARN] [mixin/]: Error loading class: net/darkhax/darkutils/features/charms/CharmEffects (java.lang.ClassNotFoundException: net.darkhax.darkutils.features.charms.CharmEffects) [09���2024 18:08:24.792] [main/WARN] [mixin/]: Error loading class: com/brandon3055/csg/ModEventHandler (java.lang.ClassNotFoundException: com.brandon3055.csg.ModEventHandler) [09���2024 18:08:24.801] [main/WARN] [mixin/]: Error loading class: vazkii/quark/content/tweaks/module/AutomaticRecipeUnlockModule (java.lang.ClassNotFoundException: vazkii.quark.content.tweaks.module.AutomaticRecipeUnlockModule) [09���2024 18:08:24.809] [main/WARN] [mixin/]: Error loading class: vazkii/quark/content/management/client/screen/widgets/MiniInventoryButton (java.lang.ClassNotFoundException: vazkii.quark.content.management.client.screen.widgets.MiniInventoryButton) [09���2024 18:08:24.825] [main/WARN] [mixin/]: Error loading class: com/sammy/minersdelight/content/block/copper_pot/CopperPotBlockEntity (java.lang.ClassNotFoundException: com.sammy.minersdelight.content.block.copper_pot.CopperPotBlockEntity) [09���2024 18:08:24.826] [main/WARN] [mixin/]: @Mixin target com.sammy.minersdelight.content.block.copper_pot.CopperPotBlockEntity was not found create_central_kitchen.mixins.json:common.minersdelight.CopperPotBlockEntityMixin [09���2024 18:08:24.829] [main/WARN] [mixin/]: Error loading class: com/sammy/minersdelight/content/block/sticky_basket/StickyBasketBlockEntity (java.lang.ClassNotFoundException: com.sammy.minersdelight.content.block.sticky_basket.StickyBasketBlockEntity) [09���2024 18:08:24.829] [main/WARN] [mixin/]: @Mixin target com.sammy.minersdelight.content.block.sticky_basket.StickyBasketBlockEntity was not found create_central_kitchen.mixins.json:common.minersdelight.StickyBasketBlockEntityMixin [09���2024 18:08:24.831] [main/WARN] [mixin/]: Error loading class: net/orcinus/overweightfarming/blocks/CropFullBlock (java.lang.ClassNotFoundException: net.orcinus.overweightfarming.blocks.CropFullBlock) [09���2024 18:08:24.832] [main/WARN] [mixin/]: @Mixin target net.orcinus.overweightfarming.blocks.CropFullBlock was not found create_central_kitchen.mixins.json:common.overweightfarming.CropFullBlockMixin [09���2024 18:08:24.862] [main/INFO] [memoryleakfix/]: [MemoryLeakFix] Will be applying 3 memory leak fixes! [09���2024 18:08:24.862] [main/INFO] [memoryleakfix/]: [MemoryLeakFix] Currently enabled memory leak fixes: [targetEntityLeak, biomeTemperatureLeak, hugeScreenshotLeak] [09���2024 18:08:24.980] [main/WARN] [mixin/]: Error loading class: net/minecraft/src/C_4977_ (java.lang.ClassNotFoundException: net.minecraft.src.C_4977_) [09���2024 18:08:24.982] [main/WARN] [mixin/]: Error loading class: net/minecraft/src/C_4977_ (java.lang.ClassNotFoundException: net.minecraft.src.C_4977_) [09���2024 18:08:24.984] [main/WARN] [mixin/]: Error loading class: net/minecraft/server/world/ServerWorld (java.lang.ClassNotFoundException: net.minecraft.server.world.ServerWorld) [09���2024 18:08:24.986] [main/WARN] [mixin/]: Error loading class: net/minecraft/world/server/ServerWorld (java.lang.ClassNotFoundException: net.minecraft.world.server.ServerWorld) [09���2024 18:08:24.987] [main/WARN] [mixin/]: Error loading class: net/minecraft/class_3218 (java.lang.ClassNotFoundException: net.minecraft.class_3218) [09���2024 18:08:24.989] [main/WARN] [mixin/]: Error loading class: net/minecraft/src/C_12_ (java.lang.ClassNotFoundException: net.minecraft.src.C_12_) [09���2024 18:08:24.991] [main/WARN] [mixin/]: Error loading class: net/minecraft/unmapped/C_bdwnwhiu (java.lang.ClassNotFoundException: net.minecraft.unmapped.C_bdwnwhiu) [09���2024 18:08:24.993] [main/WARN] [mixin/]: Error loading class: net/minecraft/server/world/ServerWorld (java.lang.ClassNotFoundException: net.minecraft.server.world.ServerWorld) [09���2024 18:08:24.995] [main/WARN] [mixin/]: Error loading class: net/minecraft/world/server/ServerWorld (java.lang.ClassNotFoundException: net.minecraft.world.server.ServerWorld) [09���2024 18:08:24.995] [main/WARN] [mixin/]: Error loading class: net/minecraft/class_3218 (java.lang.ClassNotFoundException: net.minecraft.class_3218) [09���2024 18:08:24.997] [main/WARN] [mixin/]: Error loading class: net/minecraft/src/C_12_ (java.lang.ClassNotFoundException: net.minecraft.src.C_12_) [09���2024 18:08:24.999] [main/WARN] [mixin/]: Error loading class: net/minecraft/unmapped/C_bdwnwhiu (java.lang.ClassNotFoundException: net.minecraft.unmapped.C_bdwnwhiu) [09���2024 18:08:25.108] [main/INFO] [MixinExtras|Service/]: Initializing MixinExtras via com.llamalad7.mixinextras.service.MixinExtrasServiceImpl(version=0.3.5). [09���2024 18:08:25.800] [main/INFO] [mixin/]: Mixing MixinPlayer from enigmaticlegacy.mixins.json into net.minecraft.world.entity.player.Player [09���2024 18:08:25.906] [main/INFO] [mixin/]: Mixing MixinLivingEntity from enigmaticlegacy.mixins.json into net.minecraft.world.entity.LivingEntity [09���2024 18:08:25.918] [main/WARN] [mixin/]: @Final field f_20945_:Ljava/util/Map; in vinery-common.mixins.json:LivingEntityMixin should be final [09���2024 18:08:26.494] [pool-4-thread-1/WARN] [mixin/]: Error loading class: net/minecraft/server/world/ServerWorld (java.lang.ClassNotFoundException: net.minecraft.server.world.ServerWorld) [09���2024 18:08:26.496] [pool-4-thread-1/WARN] [mixin/]: Error loading class: net/minecraft/world/server/ServerWorld (java.lang.ClassNotFoundException: net.minecraft.world.server.ServerWorld) [09���2024 18:08:26.496] [pool-4-thread-1/WARN] [mixin/]: Error loading class: net/minecraft/class_3218 (java.lang.ClassNotFoundException: net.minecraft.class_3218) [09���2024 18:08:26.498] [pool-4-thread-1/WARN] [mixin/]: Error loading class: net/minecraft/src/C_12_ (java.lang.ClassNotFoundException: net.minecraft.src.C_12_) [09���2024 18:08:26.500] [pool-4-thread-1/WARN] [mixin/]: Error loading class: net/minecraft/unmapped/C_bdwnwhiu (java.lang.ClassNotFoundException: net.minecraft.unmapped.C_bdwnwhiu) [09���2024 18:08:26.597] [pool-4-thread-1/INFO] [mixin/]: Mixing MixinMobEffect from enigmaticlegacy.mixins.json into net.minecraft.world.effect.MobEffect [09���2024 18:08:26.662] [pool-4-thread-1/WARN] [com.stevekung.fishofthieves.FishOfThieves/]: This is the stupidest thing I've ever made in Minecraft modding history...
  15. [net.minecraftforge.fml.loading.RuntimeDistCleaner/DISTXFORM]: Attempted to load class net/minecraft/client/MouseHandler for invalid dist DEDICATED_SERVER when im trying to start server mods: sinytra connector forgified fabric api jei forge origins forge moraks medival races forge geckolib forge wthit forge wizards fabric paladins and priests fabric runes fabric spell engine fabric playeranimator fabric (i checked its not clientside only mod and spell engine doesnt work without it) pehkui forge soulbound forge biomes o plenty forge biome blender forge terralith forge starlight fabric serializationisbad fabric ice and fire forge lazydfu fabric gravestone forge citadel forge alex mobs forge the undead revamped forge badpackets forge trinkets forge rpg difficulty fabric azurelib armor forge cloth config forge caelus forge ferritecore forge [09May2024 11:32:59.097] [main/INFO] [cpw.mods.modlauncher.Launcher/MODLAUNCHER]: ModLauncher running: args [--launchTarget, forgeserver, --fml.forgeVersion, 47.2.20, --fml.mcVersion, 1.20.1, --fml.forgeGroup, net.minecraftforge, --fml.mcpVersion, 20230612.114412] [09May2024 11:32:59.102] [main/INFO] [cpw.mods.modlauncher.Launcher/MODLAUNCHER]: ModLauncher 10.0.9+10.0.9+main.dcd20f30 starting: java version 17.0.11 by Eclipse Adoptium; OS Linux arch amd64 version 5.4.0-172-generic [09May2024 11:33:00.615] [main/INFO] [net.minecraftforge.fml.loading.ImmediateWindowHandler/]: ImmediateWindowProvider not loading because launch target is forgeserver [09May2024 11:33:00.694] [main/INFO] [mixin-transmog/]: Mixin Transmogrifier is definitely up to no good... [09May2024 11:33:00.798] [main/INFO] [mixin-transmog/]: crimes against java were committed [09May2024 11:33:00.830] [main/INFO] [mixin-transmog/]: Original mixin transformation service successfully crobbed by mixin-transmogrifier! [09May2024 11:33:00.997] [main/INFO] [mixin/]: SpongePowered MIXIN Subsystem Version=0.8.5 Source=union:/server/server-data/mods/Connector-1.0.0-beta.43+1.20.1.jar%23133%23136!/ Service=ModLauncher Env=SERVER [09May2024 11:33:01.008] [main/INFO] [io.dogboy.serializationisbad.core.SerializationIsBad/]: Initializing SerializationIsBad, implementation type: modlauncher [09May2024 11:33:01.815] [main/INFO] [io.dogboy.serializationisbad.core.SerializationIsBad/]: Using remote config file [09May2024 11:33:01.820] [main/INFO] [io.dogboy.serializationisbad.core.SerializationIsBad/]: Loaded config file [09May2024 11:33:01.822] [main/INFO] [io.dogboy.serializationisbad.core.SerializationIsBad/]: Blocking Enabled: true [09May2024 11:33:01.823] [main/INFO] [io.dogboy.serializationisbad.core.SerializationIsBad/]: Loaded Patch Modules: 39 [09May2024 11:33:03.095] [main/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Mod file /server/jars/forge-1.20.1-47.2.20/libraries/net/minecraftforge/fmlcore/1.20.1-47.2.20/fmlcore-1.20.1-47.2.20.jar is missing mods.toml file [09May2024 11:33:03.096] [main/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Mod file /server/jars/forge-1.20.1-47.2.20/libraries/net/minecraftforge/javafmllanguage/1.20.1-47.2.20/javafmllanguage-1.20.1-47.2.20.jar is missing mods.toml file [09May2024 11:33:03.097] [main/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Mod file /server/jars/forge-1.20.1-47.2.20/libraries/net/minecraftforge/lowcodelanguage/1.20.1-47.2.20/lowcodelanguage-1.20.1-47.2.20.jar is missing mods.toml file [09May2024 11:33:03.098] [main/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Mod file /server/jars/forge-1.20.1-47.2.20/libraries/net/minecraftforge/mclanguage/1.20.1-47.2.20/mclanguage-1.20.1-47.2.20.jar is missing mods.toml file [09May2024 11:33:04.426] [main/WARN] [net.minecraftforge.jarjar.selection.JarSelector/]: Attempted to select two dependency jars from JarJar which have the same identification: Mod File: and Mod File: . Using Mod File: [09May2024 11:33:04.427] [main/INFO] [net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator/]: Found 50 dependencies adding them to mods collection [09May2024 11:33:10.029] [main/INFO] [dev.su5ed.sinytra.connector.service.hacks.ModuleLayerMigrator/]: Successfully made module authlib transformable [09May2024 11:33:14.416] [main/INFO] [mixin/]: Compatibility level set to JAVA_17 [09May2024 11:33:15.020] [main/ERROR] [dev.su5ed.sinytra.connector.loader.ConnectorEarlyLoader/]: Skipping early mod setup due to previous error [09May2024 11:33:15.095] [main/INFO] [cpw.mods.modlauncher.LaunchServiceHandler/MODLAUNCHER]: Launching target 'forgeserver' with arguments [] [09May2024 11:33:22.894] [main/ERROR] [net.minecraftforge.fml.loading.RuntimeDistCleaner/DISTXFORM]: Attempted to load class net/minecraft/client/MouseHandler for invalid dist DEDICATED_SERVER [09May2024 11:33:22.895] [main/WARN] [mixin/]: Error loading class: net/minecraft/client/MouseHandler (java.lang.RuntimeException: Attempted to load class net/minecraft/client/MouseHandler for invalid dist DEDICATED_SERVER) [09May2024 11:33:22.896] [main/WARN] [mixin/]: @Mixin target net.minecraft.client.MouseHandler was not found fabric-screen-api-v1.mixins.json:MouseMixin from mod fabric_screen_api_v1 [09May2024 11:33:22.898] [main/ERROR] [net.minecraftforge.fml.loading.RuntimeDistCleaner/DISTXFORM]: Attempted to load class net/minecraft/client/gui/screens/Screen for invalid dist DEDICATED_SERVER [09May2024 11:33:22.899] [main/WARN] [mixin/]: Error loading class: net/minecraft/client/gui/screens/Screen (java.lang.RuntimeException: Attempted to load class net/minecraft/client/gui/screens/Screen for invalid dist DEDICATED_SERVER) [09May2024 11:33:22.899] [main/WARN] [mixin/]: @Mixin target net.minecraft.client.gui.screens.Screen was not found fabric-screen-api-v1.mixins.json:ScreenAccessor from mod fabric_screen_api_v1 [09May2024 11:33:24.819] [main/INFO] [MixinExtras|Service/]: Initializing MixinExtras via com.llamalad7.mixinextras.service.MixinExtrasServiceImpl(version=0.3.5).
  16. I think i've found a more "generation friendly way" of generating random blobs of mineral around the ore. This both does the trick and make the generation work flawlessly (albeit i need to make some adjustments). I just ended up thinking "MAYBE there is another Feature I can use to place the minerals instead of doing it manually" And, low and behold, SCATTERED_ORE is actually a thing. I don't really know how "orthodox" this solution is, but it works and rids me of all the problems I had witht my original "manual" implementation. If anybody has any insight on why my original class could've been causing lag to the point of freezes and chunk generation just refusing to keep loading new chunks, I'm also all ears: Here is the full if (placed) block for anyone with a smiliar issue: if (placed) { // Define the block to replace surrounding blocks with BlockState surroundingBlockState = BlockInit.ABERRANT_MINERALOID.get().defaultBlockState(); RuleTest stoneReplacement = new TagMatchTest(BlockTags.STONE_ORE_REPLACEABLES); //Tag which indicates ores that can replace stone RuleTest deepslateReplacement = new TagMatchTest(BlockTags.DEEPSLATE_ORE_REPLACEABLES); //Tag which indicates ores that can replace deepslate // Create a list of TargetBlockState for the Aberrant Mineraloids List<OreConfiguration.TargetBlockState> targets = new ArrayList<>(); targets.add(OreConfiguration.target(stoneReplacement, surroundingBlockState)); targets.add(OreConfiguration.target(deepslateReplacement, surroundingBlockState)); // Create a new OreConfiguration for the Aberrant Mineraloids OreConfiguration mineraloidConfig = new OreConfiguration(targets, 9); // vein size // Create a new context for the Aberrant Mineraloids FeaturePlaceContext<OreConfiguration> mineraloidCtx = new FeaturePlaceContext<>( Optional.empty(), world, ctx.chunkGenerator(), ctx.random(), offsetOrigin, mineraloidConfig ); // Generate the Aberrant Mineraloids using the SCATTERED_ORE configuration boolean mineraloidsPlaced = Feature.SCATTERED_ORE.place(mineraloidCtx); }
  17. Wow, thanks @scientistknight1 ! That was exactly it. The issue: I was extending BaseEntityBlock, which implements getRenderShape as invisible for some reason: public abstract class BaseEntityBlock extends Block implements EntityBlock { ... public RenderShape getRenderShape(BlockState p_49232_) { return RenderShape.INVISIBLE; } ... } Looking at the Implementation on Block, it calls BlockBehaviour, which returns RenderShape.MODEL. Overriding it on my Entity did the trick. public class AutomataStartBlock extends BaseEntityBlock { ... @Override public RenderShape getRenderShape(BlockState p_49232_) { return RenderShape.MODEL; } ... } It now works. I wonder why why BaseEntityBlock returns INVISIBLE, though.
  18. The issue occurs here: CREATIVE_MODE_TABS = DeferredRegister.create(Registries.CREATIVE_MODE_TAB, MOD_ID); Exception message: java.lang.NoSuchFieldError: Class net.minecraft.core.registries.Registries does not have member field 'net.minecraft.resources.ResourceKey f_279569_' The mod loads and operates without any issues during debugging in the development environment. However, it crashes when loading the mod through the official Minecraft launcher. This problem did not occur in versions 1.20.1 or 1.20.4. How can I resolve this error?
  19. If you're still looking for a solution, the beta-5 version works on its own, though I haven't tested it out with anything else
  20. Hello, today i installed forge 1.20.2 and i cannot launch the game it says "Code error 1" whenever i launch the game. I was just trying to play with some mods and boom, i cannot i was playing on forge 1.16.5 with the 1.16.5 mods first and it worked perfectly. I downloanded the 1.20.2 forge latest version. So i don;t know what is happening, can anyone help me?
  21. Hi, i'm playing with mods on a forge server (minecraft version 1.16.5) and my game keeps crashing after a few minutes. because I dont know a solution for that i'm asking here. Crash report: https://pastebin.com/bJ7ESstU
  1. Load more activity
×
×
  • Create New...

Important Information

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