
Matteo_04
Members-
Posts
41 -
Joined
-
Last visited
Everything posted by Matteo_04
-
Robin same problem... Did you found a way??
-
I'm trying to change the base rules for vanilla mob spawning. Here my code, what's wrong? @Mod.EventBusSubscriber(modid = FractumMod.MOD_ID, bus = Mod.EventBusSubscriber.Bus.FORGE ) public class ModSpawn { @SubscribeEvent(priority = EventPriority.LOW) public static void onSpawnPlacementRegisterEvent(SpawnPlacementRegisterEvent event) throws Exception { // event.register(EntityType.DROWNED, SpawnPlacements.Type.ON_GROUND, Heightmap.Types.MOTION_BLOCKING_NO_LEAVES, Placements::checkDrownedSpawnRules, SpawnPlacementRegisterEvent.Operation.REPLACE); event.register(EntityType.DROWNED, SpawnPlacements.Type.ON_GROUND, Heightmap.Types.MOTION_BLOCKING_NO_LEAVES, Zombie::checkMonsterSpawnRules, SpawnPlacementRegisterEvent.Operation.REPLACE); } }
-
updates... Between documentation and online research I was able to write sensible code that in theory works the way I want. I would like to test it, but how? For the commands there were the tick and load functions, or in any case they could be called in game. I found something about EventBus, I also followed this tutorial, but I don't understand how to make them work or implement them in any way. This is the code, please reply me package marshal.init; import marshal.wgen.MarshalBiomes; import net.minecraft.core.particles.DustParticleOptions; import net.minecraft.core.particles.ParticleOptions; import net.minecraft.world.entity.Entity; import net.minecraft.world.entity.EntityType; import net.minecraft.world.entity.monster.Vex; import net.minecraft.core.particles.ParticleTypes; import net.minecraft.world.level.Level; import net.minecraft.world.level.biome.Biomes; import net.minecraftforge.api.distmarker.Dist; import net.minecraftforge.event.TickEvent; import net.minecraftforge.event.entity.EntityJoinLevelEvent; import net.minecraftforge.eventbus.api.SubscribeEvent; import net.minecraftforge.fml.common.Mod; import org.joml.Vector3f; @Mod.EventBusSubscriber(value = Dist.CLIENT, modid = "marshal", bus = Mod.EventBusSubscriber.Bus.FORGE) public class ModVex { ParticleOptions yellowDust = new DustParticleOptions(new Vector3f(1, 1, 1), 1.0f); DustParticleOptions blackDust = new DustParticleOptions(new Vector3f(255, 255, 85), 1.0f); @SubscribeEvent public void onEntityJoinWorld(EntityJoinLevelEvent event) { Entity entity = event.getEntity(); Level world = event.getLevel(); if (entity instanceof Vex && world.dimension() == Level.OVERWORLD) { if (world.getBiome(entity.getOnPos()) == MarshalBiomes.MARSHLAND) { entity.setInvisible(true); } else if (world.isNight()) { if (!entity.isInvisible()) { entity.setInvisible(true); }; world.addParticle(yellowDust, entity.getX(), entity.getY(), entity.getZ(), 0, 0, 0); } else if (world.isDay()) { if (!entity.isInvisible()) { entity.setInvisible(true); }; world.addParticle(blackDust, entity.getX(), entity.getY(), entity.getZ(), 0, 0, 0); } } } }
-
Hello! I recently approached modding and Java programming in general. But I'm very used to programming in Minecraft "code", so .json files and commands. In fact, for example, with Terrabalnder it was quite simple and intuitive to convert biome, surface rules and positioning files to run whit forge. Instead what I'm having difficulty with is switching Minecraft things I used to do whit commands to java format. Things like execute a condition or position checks on a specific type of entity, even simple things like "if block ~ ~-1 ~ dirt" or "run particle...". There aren't many tutorials, so I would like to know if there are any tools, documentation or a list of procedures, methods and classes, or useful IntelliJ tooltips. Let me know leterally how from zero I can get the location of methods and informations I need to use. Thanks
-
I have a problem, it is a world generation bug caused by one of the mods I installed in my world, basically cave lava is generated in the end, is there a way to locate the source and fix it? Can you halp me? logs: https://mclo.gs/pMIEsNE Files of the world: https://aternos.org/panel/ajax/worlds/download.php?world=Super Thanks and sorry for the bad English.
-
Solved, it was enough to remove a mod
-
Today starting the game I got this error, I think it is due to the cleaning of the hard disk, then I did some tests and in the normal version of minecraft and optifine it works and the same even if I remove all the mods from the mods folder. Can you help me? Here is the crash report: ---- Minecraft Crash Report ---- // I let you down. Sorry Time: 27/11/20 14.06 Description: Unexpected error com.google.gson.JsonSyntaxException: Expected a com.google.gson.JsonObject but was com.google.gson.JsonPrimitive at com.google.gson.internal.bind.TypeAdapters$35$1.read(TypeAdapters.java:913) ~[gson-2.8.0.jar:?] {} at com.google.gson.Gson.fromJson(Gson.java:887) ~[gson-2.8.0.jar:?] {} at com.google.gson.Gson.fromJson(Gson.java:825) ~[gson-2.8.0.jar:?] {} at team.creative.creativecore.common.config.event.ConfigEventHandler.load(ConfigEventHandler.java:216) ~[?:?] {re:classloading} at team.creative.ambientsounds.AmbientTickHandler.initConfiguration(AmbientTickHandler.java:68) ~[?:?] {re:classloading} at team.creative.ambientsounds.AmbientTickHandler.setEngine(AmbientTickHandler.java:48) ~[?:?] {re:classloading} at team.creative.ambientsounds.AmbientTickHandler.onTick(AmbientTickHandler.java:212) ~[?:?] {re:classloading} at net.minecraftforge.eventbus.ASMEventHandler_534_AmbientTickHandler_onTick_ClientTickEvent.invoke(.dynamic) ~[?:?] {} at net.minecraftforge.eventbus.ASMEventHandler.invoke(ASMEventHandler.java:85) ~[eventbus-3.0.3-service.jar:?] {} at net.minecraftforge.eventbus.EventBus.post(EventBus.java:297) ~[eventbus-3.0.3-service.jar:?] {} at net.minecraftforge.fml.hooks.BasicEventHooks.onPreClientTick(BasicEventHooks.java:105) ~[?:?] {re:classloading} at net.minecraft.client.Minecraft.func_71407_l(Minecraft.java:1391) ~[?:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:assets/botania/botania.mixins.json:AccessorMinecraft,pl:mixin:A,pl:runtimedistcleaner:A} at net.minecraft.client.Minecraft.func_195542_b(Minecraft.java:930) [?:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:assets/botania/botania.mixins.json:AccessorMinecraft,pl:mixin:A,pl:runtimedistcleaner:A} at net.minecraft.client.Minecraft.func_99999_d(Minecraft.java:584) [?:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:assets/botania/botania.mixins.json:AccessorMinecraft,pl:mixin:A,pl:runtimedistcleaner:A} at net.minecraft.client.main.Main.main(Main.java:184) [?:?] {re:classloading,pl:runtimedistcleaner:A} at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_51] {} at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_51] {} at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_51] {} at java.lang.reflect.Method.invoke(Method.java:497) ~[?:1.8.0_51] {} at net.minecraftforge.fml.loading.FMLClientLaunchProvider.lambda$launchService$0(FMLClientLaunchProvider.java:51) [forge-1.16.3-34.1.42.jar:34.1] {} at net.minecraftforge.fml.loading.FMLClientLaunchProvider$$Lambda$484/1150480094.call(Unknown Source) [forge-1.16.3-34.1.42.jar:34.1] {} at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:37) [modlauncher-8.0.6.jar:?] {} at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:54) [modlauncher-8.0.6.jar:?] {} at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:72) [modlauncher-8.0.6.jar:?] {} at cpw.mods.modlauncher.Launcher.run(Launcher.java:82) [modlauncher-8.0.6.jar:?] {re:classloading} at cpw.mods.modlauncher.Launcher.main(Launcher.java:66) [modlauncher-8.0.6.jar:?] {re:classloading} A detailed walkthrough of the error, its code path and all known details is as follows: --------------------------------------------------------------------------------------- -- System Details -- Details: Minecraft Version: 1.16.3 Minecraft Version ID: 1.16.3 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: 2268754408 bytes (2163 MB) / 4294967296 bytes (4096 MB) up to 4294967296 bytes (4096 MB) CPUs: 4 JVM Flags: 9 total; -XX:HeapDumpPath=MojangTricksIntelDriversForPerformance_javaw.exe_minecraft.exe.heapdump -Xss1M -Xmx4G -XX:+UnlockExperimentalVMOptions -XX:+UseG1GC -XX:G1NewSizePercent=20 -XX:G1ReservePercent=20 -XX:MaxGCPauseMillis=50 -XX:G1HeapRegionSize=32M ModLauncher: 8.0.6+85+master.325de55 ModLauncher launch target: fmlclient ModLauncher naming: srg ModLauncher services: /mixin-0.8.2.jar mixin PLUGINSERVICE /eventbus-3.0.3-service.jar eventbus PLUGINSERVICE /forge-1.16.3-34.1.42.jar object_holder_definalize PLUGINSERVICE /forge-1.16.3-34.1.42.jar runtime_enum_extender PLUGINSERVICE /accesstransformers-2.2.0-shadowed.jar accesstransformer PLUGINSERVICE /forge-1.16.3-34.1.42.jar capability_inject_definalize PLUGINSERVICE /forge-1.16.3-34.1.42.jar runtimedistcleaner PLUGINSERVICE /mixin-0.8.2.jar mixin TRANSFORMATIONSERVICE /OptiFine_1.16.3_HD_U_G5.jar OptiFine TRANSFORMATIONSERVICE /OptiForge-MC1.16.3-0.3.6.jar optiforge TRANSFORMATIONSERVICE /forge-1.16.3-34.1.42.jar fml TRANSFORMATIONSERVICE /OptiForge-MC1.16.3-0.3.6.jar FakeOptiFine TRANSFORMATIONSERVICE /OptiForge-MC1.16.3-0.3.6.jar optiforgewrapper TRANSFORMATIONSERVICE FML: 34.1 Forge: net.minecraftforge:34.1.42 FML Language Providers: [email protected] minecraft@1 Mod List: Cucumber-1.16.3-4.1.3.jar |Cucumber Library |cucumber |4.1.3 |DONE |NOSIGNATURE torchslabmod-1.16.3_v1.6.18.jar |Torch Slab Mod |torchslabmod |1.6.18 |DONE |NOSIGNATURE NetherPortalFix_1.16.3-7.2.1.jar |NetherPortalFix |netherportalfix |7.2.1 |DONE |NOSIGNATURE spiders-2.0-1.16.3-1.0.4.jar |Spiders 2.0 |spiderstpo |1.0.4 |DONE |NOSIGNATURE jei-1.16.3-7.6.0.51.jar |Just Enough Items |jei |7.6.0.50 |DONE |NOSIGNATURE OptiForge-MC1.16.3-0.3.6.jar |OptiForge |optiforge |0.3.6 |DONE |NOSIGNATURE FallingTree-Forge-1.16.3-2.5.0.jar |Falling Tree |falling_tree |2.5.0 |DONE |NOSIGNATURE Waystones_1.16.3-7.3.1.jar |Waystones |waystones |7.3.1 |DONE |NOSIGNATURE ForgeEndertech-1.16.3-7.0.6.0-build.0024.jar |Forge Endertech |forgeendertech |7.0.6.0 |DONE |NOSIGNATURE JRFTL+[1.16.3]-1.1.jar |JRFTL |jrftl |1.1 |DONE |NOSIGNATURE CTM-MC1.16.1-1.1.1.5.jar |ConnectedTexturesMod |ctm |MC1.16.1-1.1.1.5 |DONE |NOSIGNATURE comforts-forge-1.16.3-4.0.0.1.jar |Comforts |comforts |1.16.3-4.0.0.1 |DONE |NOSIGNATURE citadel-1.5.2.jar |Citadel |citadel |1.5.2 |DONE |NOSIGNATURE NaturesCompass-1.16.3-1.8.5.jar |Nature's Compass |naturescompass |1.16.3-1.8.5 |DONE |NOSIGNATURE gemsnjewels-1.16.3-0.18.1.jar |Gems & Jewels |gemsnjewels |0.18.1 |DONE |NOSIGNATURE Bookshelf-1.16.3-8.7.20.jar |Bookshelf |bookshelf |8.7.20 |DONE |NOSIGNATURE BotanyPots-1.16.3-5.1.13.jar |BotanyPots |botanypots |5.1.13 |DONE |NOSIGNATURE reliquary-1.16.3-1.3.4.1051.jar |Reliquary |xreliquary |1.16.3-1.3.4.1051 |DONE |NOSIGNATURE u_team_core-1.16.3-3.1.12.185.jar |U Team Core |uteamcore |3.1.12.185 |DONE |f4:a6:0b:ee:cb:8a:1a:ea:9f:9d:45:91:8f:8b:b3:ae:26:f3:bf:05:86:1d:90:9e:f6:32:2a:1a:ed:1d:ce:b0 buildinggadgets-3.7.1.jar |Building Gadgets |buildinggadgets |3.7.1 |DONE |NOSIGNATURE mcw-doors-1.0.1fix-mc1.16.3-1.16.2.jar |Macaw's Doors |mcwdoors |1.0.1 |DONE |NOSIGNATURE iceandfire-2.1.3-1.16.4.jar |Ice and Fire |iceandfire |2.1.3-1.16.4 |DONE |NOSIGNATURE JustEnoughResources-1.16.3-0.12.0.100.jar |Just Enough Resources |jeresources |0.12.0.100 |DONE |NOSIGNATURE forge-1.16.3-34.1.42-universal.jar |Forge |forge |34.1.42 |DONE |22:af:21:d8:19:82:7f:93:94:fe:2b:ac:b7:e4:41:57:68:39:87:b1:a7:5c:c6:44:f9:25:74:21:14:f5:0d:90 shetiphiancore-1.16-3.8.3.jar |ShetiPhian-Core |shetiphiancore |3.8.3 |DONE |NOSIGNATURE MysticalAgradditions-1.16.3-4.1.0.jar |Mystical Agradditions |mysticalagradditions |4.1.0 |DONE |NOSIGNATURE MysticalAgriculture-1.16.3-4.1.1.jar |Mystical Agriculture |mysticalagriculture |4.1.1 |DONE |NOSIGNATURE forge-1.16.3-34.1.42-client.jar |Minecraft |minecraft |1.16.3 |DONE |NOSIGNATURE useful_backpacks-1.16.3-1.11.6.84.jar |Useful Backpacks |usefulbackpacks |1.11.6.84 |DONE |f4:a6:0b:ee:cb:8a:1a:ea:9f:9d:45:91:8f:8b:b3:ae:26:f3:bf:05:86:1d:90:9e:f6:32:2a:1a:ed:1d:ce:b0 repurposed_structures-1.16.4-2.3.0.jar |Repurposed Structures |repurposed_structures |1.16.4-2.3.0 |DONE |NOSIGNATURE AmbientSounds_v3.1.2_mc1.16.4.jar |Ambient Sounds |ambientsounds |3.0.3 |DONE |NOSIGNATURE BiomesOPlenty-1.16.3-12.0.0.417-universal.jar |Biomes O' Plenty |biomesoplenty |1.16.3-12.0.0.416 |DONE |NOSIGNATURE concreteconversion-1.16.3-5.0.0.0.jar |Concrete Conversion |concreteconversion |1.16.3-5.0.0.0 |DONE |NOSIGNATURE CreativeCore_v2.0.8_mc1.16.4.jar |CreativeCore |creativecore |2.0.0 |DONE |NOSIGNATURE mcw-trapdors-1.0.0-mc1.16.3.jar |Macaw's Trapdoors |mcwtrpdoors |1.0.0 |DONE |NOSIGNATURE AdLods-1.16.3-4.1.1.0-build.0026.jar |Large Ore Deposits |adlods |4.1.1.0 |DONE |NOSIGNATURE towers_of_the_wild-1.16.3-2.0.1.jar |Towers Of The Wild |towers_of_the_wild |1.16.3-2.0.1 |DONE |NOSIGNATURE storage_overhaul-1.16.3-1.0.3.jar |Storage Overhaul |storage_overhaul |1.16.3-1.0.3 |DONE |NOSIGNATURE curios-forge-1.16.4-4.0.2.1.jar |Curios API |curios |1.16.4-4.0.2.1 |DONE |NOSIGNATURE Botania-1.16.3-409.jar |Botania |botania |1.16.3-409 |DONE |NOSIGNATURE Patchouli-1.16.2-47.jar |Patchouli |patchouli |1.16.2-47 |DONE |NOSIGNATURE Mantle-1.16.4-1.6.43.jar |Mantle |mantle |1.6.43 |DONE |NOSIGNATURE AutoRegLib-1.6-46.jar |AutoRegLib |autoreglib |1.6-46 |DONE |NOSIGNATURE Quark-r2.4-276.jar |Quark |quark |r2.4-276 |DONE |NOSIGNATURE enderchests-1.16-1.7.4.jar |EnderChests |enderchests |1.7.4 |DONE |NOSIGNATURE DoubleSlabs-1.16-3.4.10.jar |Double Slabs |doubleslabs |3.4.10 |DONE |NOSIGNATURE Ceramics-1.16.4-1.5.2.jar |Ceramics |ceramics |1.5.2 |DONE |NOSIGNATURE elevatorid-1.16.3-1.7.6.jar |Elevator Mod |elevatorid |1.16.3-1.7.6 |DONE |NOSIGNATURE EnigmaticLegacy-2.10.0.jar |Enigmatic Legacy |enigmaticlegacy |2.10.0 |DONE |NOSIGNATURE AppleSkin-mc1.16.2-forge-1.0.14.jar |AppleSkin |appleskin |1.0.14 |DONE |NOSIGNATURE Aquaculture-1.16.3-2.1.5.jar |Aquaculture 2 |aquaculture |1.16.3-2.1.5 |DONE |NOSIGNATURE FastLeafDecay-v25.jar |FastLeafDecay |fastleafdecay |v25 |DONE |NOSIGNATURE CosmeticArmorReworked-1.16.3-v1.jar |CosmeticArmorReworked |cosmeticarmorreworked |1.16.3-v1 |DONE |5e:ed:25:99:e4:44:14:c0:dd:89:c1:a9:4c:10:b5:0d:e4:b1:52:50:45:82:13:d8:d0:32:89:67:56:57:01:53 Crash Report UUID: 2d59174b-a3bf-417c-8a52-132abc99645f Patchouli open book context: n/a Launched Version: 1.16.3-forge-34.1.42 Backend library: LWJGL version 3.2.2 build 10 Backend API: Intel(R) HD Graphics 505 GL version 4.5.0 - Build 22.20.16.4836, Intel GL Caps: Using framebuffer using OpenGL 3.0 Using VBOs: Yes Is Modded: Definitely; Client brand changed to 'forge' Type: Client (map_client.txt) Graphics mode: fancy Resource Packs: Current Language: English (US) CPU: 4x Intel(R) Pentium(R) CPU N4200 @ 1.10GHz OptiFine Version: OptiFine_1.16.3_HD_U_G5 OptiFine Build: 20201106-202857 Render Distance Chunks: 8 Mipmaps: 4 Anisotropic Filtering: 1 Antialiasing: 0 Multitexture: false Shaders: null OpenGlVersion: 4.5.0 - Build 22.20.16.4836 OpenGlRenderer: Intel(R) HD Graphics 505 OpenGlVendor: Intel CpuCount: 4 Thanks and sorry for the bad English.
-
I have his own mistake and I thought someone could give me a solution here ... https://github.com/Ivorforce/RecurrentComplex/issues/446 Thanks and sorry for the bad english.
-
I recently downloaded a texture pack, only that the items and the various hotbars annoy me in addition to the blocks. So I was wondering if there was a way to make the textures of the above elements remain the default ones. I had thought of deactivating those of the texture pack or putting the default ones as priorities, but I don't know if it can be done and if yes I don't know how. Thanks and sorry for the bad english.
-
Hi, I am trying to create a modd world in other version since I would like to move to a series of mods that include the Pixelmon Generation mod available only for this version. Except that, I usually play minecraft moddato in 1.15.2 I would like to avoid a too violent downgrade, so I was looking for 1-a texture pack that can report the textures of the new versions in minecraft old version; 2-a simple and fast way to download the latest file for an old version released of the mods of which I already have a precise list; 3-a mod that can report the features of the new minecraft versions in past version; I want to specify that I am already aware of the future versions mod, but I have tried it and I find it missing many details and therefore I would like to know if there is another less known, but that does more or less the same thing. Thanks and sorry for the bad english.
-
Hi, I am trying to create a modd world in 1.12.2 since I would like to move to a series of mods that include the Pixelmon Generation mod available only for this version. Except that, I usually play minecraft moddato in 1.15.2 I would like to avoid a too violent downgrade, so I was looking for 1-a texture pack that can report the textures of the new versions in minecraft 1.12.2; 2-a simple and fast way to download the latest file for 1.12.2 released of the mods of which I already have a precise list; 3-a mod that can report the features of the new minecraft versions in 1.12.2; I want to specify that I am already aware of the future versions mod, but I have tried it and I find it missing many details and therefore I would like to know if there is another less known, but that does more or less the same thing. Thanks and sorry for the bad english.
-
Thanks, but I couldn't figure out which file I needed. On the other hand, in the end I managed to find it the old way. 😅😁
-
Sorry for the slightly useless topic, but I need help. While exploring my world I think I put my shulker box somewhere since my inventory was empty when I returned, I also tried to look in the spectator but I have no idea where it can be. Having said that, I wondered if there is a file among the folders of a world that takes note of all the blocks placed or removed, including coordinates, since I seem to have heard of something like this. Other recommendations such as commands etc. are also welcome. Thanks and sorry for the bad english.
-
Update: After making sure that the actual cause of the problem is the OptiForge mod and consequently Optifine; I downloaded the two mods from another site, i.e. on 9minecraft.com rather than on curseforge.com, where I also downloaded an additional mod -MinixBootstrap- given that considered by the 9minecraft site as one of the necessary requirements for its installation and for the its operation together with minecraft Forge and OptiFine HD.And I confirm that now my world of modulated minecraft and namesake rescues are opening up. Thanks and sorry for the bad english.
-
OK thanks. I'll see what I can do.
-
Yes, thanks for the answer, I had some suspicions about these two mods, but I was looking for a solution that did not exclude them since without the oprifine the lag makes the game unplayable or as an alternative to the lag the graphics must be at a very low resolution.
-
A seguito della corruzione del mio mondo e dopo aver aggiornato alcune delle mie mod e aver rimosso una di esse cercando di aprire questo mondo, si è verificato questo crash. Mi potete aiutare? ---- Minecraft Crash Report ---- // Don't do that. Time: 25/06/20 11.13 Description: Exception in server tick loop org.spongepowered.asm.mixin.transformer.throwables.MixinTransformerError: An unexpected critical error was encountered at org.spongepowered.asm.mixin.transformer.MixinProcessor.applyMixins(MixinProcessor.java:364) ~[MixinBootstrap-1.0.3.jar:?] {} at org.spongepowered.asm.mixin.transformer.MixinTransformer.transformClass(MixinTransformer.java:206) ~[MixinBootstrap-1.0.3.jar:?] {} at org.spongepowered.asm.mixin.transformer.MixinTransformationHandler.processClass(MixinTransformationHandler.java:109) ~[MixinBootstrap-1.0.3.jar:?] {} at org.spongepowered.asm.launch.MixinLaunchPlugin.processClass(MixinLaunchPlugin.java:135) ~[MixinBootstrap-1.0.3.jar:?] {} at cpw.mods.modlauncher.LaunchPluginHandler.offerClassNodeToPlugins(LaunchPluginHandler.java:85) ~[modlauncher-5.1.0.jar:?] {} at cpw.mods.modlauncher.ClassTransformer.transform(ClassTransformer.java:115) ~[modlauncher-5.1.0.jar:?] {} at cpw.mods.modlauncher.TransformingClassLoader$DelegatedClassLoader.findClass(TransformingClassLoader.java:239) ~[modlauncher-5.1.0.jar:?] {} at cpw.mods.modlauncher.TransformingClassLoader.loadClass(TransformingClassLoader.java:126) ~[modlauncher-5.1.0.jar:?] {re:classloading} at cpw.mods.modlauncher.TransformingClassLoader.loadClass(TransformingClassLoader.java:96) ~[modlauncher-5.1.0.jar:?] {re:classloading} at java.lang.ClassLoader.loadClass(ClassLoader.java:357) ~[?:1.8.0_51] {} at net.minecraft.world.server.ServerChunkProvider.<init>(SourceFile:86) ~[?:?] {re:classloading,pl:accesstransformer:B} at net.minecraft.world.server.ServerWorld.lambda$new$3(ServerWorld.java:172) ~[?:?] {re:classloading,xf:fml:quark:add-rave-hook,xf:fml:quark:change-sleeping-player-count} at net.minecraft.world.server.ServerWorld$$Lambda$6710/2012462323.apply(Unknown Source) ~[?:?] {} at net.minecraft.world.World.<init>(World.java:98) ~[?:?] {re:classloading,pl:accesstransformer:B,re:mixin,pl:accesstransformer:B} at net.minecraft.world.server.ServerWorld.<init>(ServerWorld.java:171) ~[?:?] {re:classloading,xf:fml:quark:add-rave-hook,xf:fml:quark:change-sleeping-player-count} at net.minecraft.server.MinecraftServer.func_213194_a(MinecraftServer.java:375) ~[?:?] {re:classloading,pl:accesstransformer:B} at net.minecraft.server.integrated.IntegratedServer.func_71247_a(IntegratedServer.java:102) ~[?:?] {re:classloading,xf:OptiFine:default} at net.minecraft.server.integrated.IntegratedServer.func_71197_b(IntegratedServer.java:131) ~[?:?] {re:classloading,xf:OptiFine:default} at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:613) [?:?] {re:classloading,pl:accesstransformer:B} at java.lang.Thread.run(Thread.java:745) [?:1.8.0_51] {} Caused by: org.spongepowered.asm.mixin.injection.throwables.InjectionError: Critical injection failure: Redirector redirect$lambda$func_223172_f$14$0(Ljava/lang/Object;)Z in mixins.optiforge.json:net.minecraft.world.server.MixinChunkManager failed injection check, (0/1) succeeded. Scanned 1 target(s). Using refmap mixins.optiforge.refmap.json at org.spongepowered.asm.mixin.injection.struct.InjectionInfo.postInject(InjectionInfo.java:400) ~[MixinBootstrap-1.0.3.jar:?] {} at org.spongepowered.asm.mixin.transformer.MixinTargetContext.applyInjections(MixinTargetContext.java:1280) ~[MixinBootstrap-1.0.3.jar:?] {} at org.spongepowered.asm.mixin.transformer.MixinApplicatorStandard.applyInjections(MixinApplicatorStandard.java:1042) ~[MixinBootstrap-1.0.3.jar:?] {} at org.spongepowered.asm.mixin.transformer.MixinApplicatorStandard.applyMixin(MixinApplicatorStandard.java:395) ~[MixinBootstrap-1.0.3.jar:?] {} at org.spongepowered.asm.mixin.transformer.MixinApplicatorStandard.apply(MixinApplicatorStandard.java:320) ~[MixinBootstrap-1.0.3.jar:?] {} at org.spongepowered.asm.mixin.transformer.TargetClassContext.applyMixins(TargetClassContext.java:345) ~[MixinBootstrap-1.0.3.jar:?] {} at org.spongepowered.asm.mixin.transformer.MixinProcessor.applyMixins(MixinProcessor.java:570) ~[MixinBootstrap-1.0.3.jar:?] {} at org.spongepowered.asm.mixin.transformer.MixinProcessor.applyMixins(MixinProcessor.java:351) ~[MixinBootstrap-1.0.3.jar:?] {} ... 19 more A detailed walkthrough of the error, its code path and all known details is as follows: --------------------------------------------------------------------------------------- -- System Details -- Details: Minecraft Version: 1.15.2 Minecraft Version ID: 1.15.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: 2218322352 bytes (2115 MB) / 4294967296 bytes (4096 MB) up to 4294967296 bytes (4096 MB) CPUs: 4 JVM Flags: 9 total; -XX:HeapDumpPath=MojangTricksIntelDriversForPerformance_javaw.exe_minecraft.exe.heapdump -Xss1M -Xmx4G -XX:+UnlockExperimentalVMOptions -XX:+UseG1GC -XX:G1NewSizePercent=20 -XX:G1ReservePercent=20 -XX:MaxGCPauseMillis=50 -XX:G1HeapRegionSize=32M ModLauncher: 5.1.0+69+master.79f13f7 ModLauncher launch target: fmlclient ModLauncher naming: srg ModLauncher services: /eventbus-2.2.0-service.jar eventbus PLUGINSERVICE /forge-1.15.2-31.2.0.jar object_holder_definalize PLUGINSERVICE /forge-1.15.2-31.2.0.jar runtime_enum_extender PLUGINSERVICE /accesstransformers-2.1.1-shadowed.jar accesstransformer PLUGINSERVICE /forge-1.15.2-31.2.0.jar capability_inject_definalize PLUGINSERVICE /forge-1.15.2-31.2.0.jar runtimedistcleaner PLUGINSERVICE /preview_OptiFine_1.15.2_HD_U_G1_pre30.jar OptiFine TRANSFORMATIONSERVICE /forge-1.15.2-31.2.0.jar fml TRANSFORMATIONSERVICE /MixinBootstrap-1.0.3.jar mixinbootstrap TRANSFORMATIONSERVICE /OptiForge-MC1.15.2-0.1.18.jar optiforge TRANSFORMATIONSERVICE /MixinBootstrap-1.0.3.jar mixin PLUGINSERVICE /MixinBootstrap-1.0.3.jar mixinbootstrap PLUGINSERVICE FML: 31.2 Forge: net.minecraftforge:31.2.0 FML Language Providers: [email protected] minecraft@1 Mod List: Kiwi-1.15.2-2.7.1.jar Kiwi {[email protected] DONE} glasscutter-1.0.1-1.15.2.jar Glasscutter {[email protected] DONE} Craft_and_Hunt_V1.1.0_MC_1.15.2.jar Craft and Hunt {[email protected] DONE} torchslabmod-1.15.2_v1.6.15.jar Torch Slab Mod {[email protected] DONE} NetherPortalFix_1.15.2-6.0.2.jar NetherPortalFix {[email protected] DONE} CraftingAutomat-MC1.15.2-1.2.2.jar Crafting Automat {[email protected] DONE} jei-1.15.2-6.0.2.11.jar Just Enough Items {[email protected] DONE} OptiForge-MC1.15.2-0.1.18.jar OptiForge {[email protected] DONE} FallingTree-1.15.2-2.1.4.jar Falling Tree {[email protected] DONE} Abnormals-Core-1.15.2-1.0.6.jar Abnormals Core {[email protected] DONE} Bamboo-Blocks-1.15.2-v1.4.0.jar Bamboo Blocks {[email protected] DONE} Buzzier-Bees-1.15.2-1.5.1.jar Buzzier Bees {[email protected] DONE} Uppers-0.2.12.jar Uppers {[email protected] DONE} caelus-FORGE-1.15.2-2.0-beta3.jar Caelus API {[email protected] DONE} extraboats-1.3.6-1.15.2.jar Extra Boats {[email protected] DONE} Waystones_1.15.2-6.0.1.jar Waystones {[email protected] DONE} goldenhopper-1.1.1-1.15.2.jar Golden Hopper {[email protected] DONE} JRFTL+[1.15.2]-1.1.jar JRFTL {[email protected] DONE} NaturesCompass-1.15.2-1.8.5.jar Nature's Compass {[email protected] DONE} Bookshelf-1.15.2-5.6.40.jar Bookshelf {[email protected] DONE} BotanyPots-1.15.2-2.0.24.jar BotanyPots {[email protected] DONE} The-Endergetic-Expansion-1.15.2-v1.3.1.jar The Endergetic Expansion {[email protected] DONE} u_team_core-1.15.2-2.11.0.156.jar U Team Core {[email protected] DONE} bedspreads-FORGE-1.15.2-3.0.0.1.jar Bedspreads {[email protected] DONE} JustEnoughResources-1.15.2-0.10.1.77.jar Just Enough Resources {[email protected] DONE} Swamp-Expansion-1.15.2-v1.7.1.jar Swamp Expansion {swampexpansion@NONE DONE} forge-1.15.2-31.2.0-universal.jar Forge {[email protected] DONE} ironchest-1.15.2-10.0.3.jar Iron Chests {[email protected] DONE} forge-1.15.2-31.2.0-client.jar Minecraft {[email protected] DONE} useful_backpacks-1.15.2-1.9.4.63.jar Useful Backpacks {[email protected] DONE} AmbientSounds_v3.0.20_mc1.15.2.jar Ambient Sounds {[email protected] DONE} ToolBelt-1.15.2-1.14.1.jar Tool Belt {[email protected] DONE} BiomesOPlenty-1.15.2-10.0.0.363-universal.jar Biomes O' Plenty {[email protected] DONE} curios-FORGE-1.15.2-2.0.2.4.jar Curios API {[email protected] DONE} corail_woodcutter-1.1.3-1.15.2.jar Corail Woodcutter {[email protected] DONE} AutoRegLib-1.5-40.jar AutoRegLib {[email protected] DONE} Quark-r2.1-245.jar Quark {[email protected] DONE} StorageDrawers-1.15.2-7.0.2.jar Storage Drawers {[email protected] DONE} EndReborn+[0.5.8]+-+1.15.2.jar End: Reborn {[email protected] DONE} DoubleSlabs-1.15-2.7.2.jar Double Slabs {[email protected] DONE} libnonymous-1.15.2-1.1.1.5.jar Libnonymous {[email protected] DONE} BonsaiTrees-2.1.2.6.jar Bonsai Trees 2 {[email protected] DONE} elevatorid-1.15.2-1.7.1.jar Elevator Mod {[email protected] DONE} EnigmaticLegacy-1.7.0.jar Enigmatic Legacy {[email protected] DONE} AppleSkin-mc1.15.2-forge-1.0.14.jar AppleSkin {[email protected] DONE} curiouselytra-FORGE-1.15.2-2.0.jar Curious Elytra {[email protected] DONE} Aquaculture-1.15.2-2.0.15.jar Aquaculture 2 {[email protected] DONE} the_bumblezone-1.15.2-1.3.6.jar The Bumblezone {[email protected] DONE} FastLeafDecay-v22.jar FastLeafDecay {fastleafdecay@v22 DONE} CosmeticArmorReworked-1.15.2-v3a.jar CosmeticArmorReworked {[email protected] DONE} Kiwi Modules: kiwi:contributors kiwi:data Player Count: 0 / 8; [] Data Packs: mod:craftingautomat (incompatible), mod:uppers (incompatible), mod:ambientsounds (incompatible), mod:cosmeticarmorreworked (incompatible), mod:bedspreads (incompatible), mod:glasscutter, mod:corail_woodcutter, mod:bookshelf (incompatible), mod:botanypots (incompatible), mod:abnormals_core, mod:caelus (incompatible), mod:extraboats, mod:endreborn (incompatible), mod:endergetic (incompatible), mod:curiouselytra (incompatible), mod:the_bumblezone, mod:jrftl (incompatible), mod:toolbelt (incompatible), mod:usefulbackpacks, mod:naturescompass (incompatible), mod:uteamcore, mod:falling_tree, vanilla, mod:craftandhunt (incompatible), mod:torchslabmod, mod:netherportalfix (incompatible), mod:biomesoplenty, mod:bambooblocks (incompatible), mod:jei (incompatible), mod:optiforge, mod:buzzierbees, mod:curios (incompatible), mod:waystones (incompatible), mod:goldenhopper, mod:autoreglib (incompatible), mod:storagedrawers (incompatible), mod:doubleslabs, mod:libnonymous (incompatible), mod:elevatorid, mod:enigmaticlegacy (incompatible), mod:bonsaitrees2, mod:appleskin (incompatible), mod:kiwi, mod:jeresources (incompatible), mod:swampexpansion (incompatible), mod:forge (incompatible), mod:quark, mod:aquaculture, mod:fastleafdecay, mod:ironchest Type: Integrated Server (map_client.txt) Is Modded: Definitely; Client brand changed to 'forge' OptiFine Version: OptiFine_1.15.2_HD_U_G1_pre30 OptiFine Build: 20200622-083032 Render Distance Chunks: 8 Mipmaps: 1 Anisotropic Filtering: 1 Antialiasing: 0 Multitexture: false Shaders: (internal) OpenGlVersion: 4.5.0 - Build 22.20.16.4836 OpenGlRenderer: Intel(R) HD Graphics 505 OpenGlVendor: Intel CpuCount: 4 Thanks and sorry for the bad english.
-
ok thanks for everything
-
Is there any way to recognize corruption and put an older backup or are they all corrupt? And if it can be done is there a risk that it will become corrupt again?
-
And now? What I can do?
-
I've already done it twice
-
No, I've had the world for a while and only recently has it started to become corrupt. Is there a solution?
-
Okay so? is this the file? debug.zip
-
I'm trying to attach it to a comment, but I get Error -200 and then loading failed.