Jump to content

Search the Community

Showing results for tags '1.20.2'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • Minecraft Forge
    • Releases
    • Support & Bug Reports
    • Suggestions
    • General Discussion
  • Mod Developer Central
    • Modder Support
    • User Submitted Tutorials
  • Non-Forge
    • Site News (non-forge)
    • Minecraft General
    • Off-topic
  • Forge Mods
    • Mods

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


XMPP/GTalk


Gender


URL


Location


ICQ


AIM


Yahoo IM


MSN Messenger


Personal Text

  1. Hello everyone , I am trying to develop an AI controlled player with the help of dl4j using reinforcement learning. Unfortunatly when i try to add it to my gradle as shown in this link My Build won't work with this error: A problem occurred starting process 'command 'C:\Program Files\Java\jdk-17\bin\java.exe'' > Could not start 'C:\Program Files\Java\jdk-17\bin\java.exe' > Cannot run program "C:\Program Files\Java\jdk-17\bin\java.exe" (in directory "E:\minecraft_mod\build\reobfJar"): CreateProcess error=206,The filename or extension is too long > CreateProcess error=206, The filename or extension is too long I litteraly just spent 4 hours searching for solutions but none of them would work. The command size limitation made by windows is creating this error , there is a workaround in intelliJ , name "Shorten command lines" but it is only for application lauching. I found this solution for gradle but it also doesn't work. Most of the solution that i found were used for spring application using gradle so i am afraid it need more configuration for forge or it just won't work.
  2. Hello everyone. I just started creating mod with forge and i am new to it. I saw some other post about my question but none resolved my problem. I tried this code but also with all the other method (move , moveto , lerpMotion) but none would work: public static int movingfunction(CommandContext<CommandSourceStack> context){ CommandSourceStack source = context.getSource(); if (!(source.getEntity() instanceof ServerPlayer)) { return 0; } ServerPlayer player = (ServerPlayer ) source.getEntity(); double moveSpeed = 0.5; for (int i =0; i<10000;i++) { LOGGER.info("running for the {} time", i); double x = player.getViewVector(1.0f).x * moveSpeed; double y = player.getViewVector(1.0f).y * moveSpeed; double z = 0; Vec3 movementVec = new Vec3(x, y, z); LOGGER.info("x ={} y ={} z ={}", x, y, z); player.moveRelative(0.0F, movementVec); ; } player.jumpFromGround(); return 1; // Code de retour de la commande } when i tried the code with move function my x and y were calculated this way : double x = player.getX() + player.getViewVector(1.0f).x * moveSpeed; double y = player.getY() + player.getViewVector(1.0f).y * moveSpeed; and when i would log them i could see they were increasing , but my player was still standing firmly on his spot. I feel like the position was updated on the server but not on the client side maybe ? thanks for your help.
  3. I'm somewhat of a beginner at forge and I'm trying to add custom recipe types to my mod. I've been trying to adapt the solution from https://www.youtube.com/watch?v=IOFbegpYY0k and update it to 1.20.2 with the help of the forge docs without success. Does anyone know anything about creating such behaviour? Any help would be appreciated. My recipe is a simple recipe similar to the legacy smithing recipe, heres a JSON example (the "//" will be replaced with some items): { "type": "magic_overhaul:rune_inscribing", "base": { "item": "//base item" }, "template": { "item": "//template item" }, "output": { "count": 1, "item": "//output item" } } What I'm interested most is how to implement the RecipeSerializer and RecipeType classes within my Recipe class. Here's my current RecipeSerializer: Here's the RecipeType: Please comment if you need any more code fragments.
  4. Hello, I want to create an item that when used, generates a structure. (structure don't generates naturally in world) Now I am having trouble generating a structure (jigsaw). The code below works, BUT the structure does not appear in the world until I re-enter it. This is a significant flaw that I would like to get rid of. My current code: public class MineshaftSpawnerItem extends Item { public MineshaftSpawnerItem(Properties pProperties) { super(pProperties); } @Override public @NotNull InteractionResult useOn(UseOnContext pContext) { Level pLevel = pContext.getLevel(); Player pPlayer = pContext.getPlayer(); BlockPos pBlockPos = pContext.getClickedPos(); ItemStack item = pContext.getItemInHand(); if (!pLevel.isClientSide()) { assert pPlayer != null; item.setCount(0); String command = MessageFormat.format("place structure weirdoitems:mineshaft {0} {1} {2}", pBlockPos.getX(), pBlockPos.getY(), pBlockPos.getZ()); System.out.println(command); try { Objects.requireNonNull(pLevel.getServer()).getCommands().getDispatcher().execute(command, pLevel.getServer().createCommandSourceStack()); } catch (CommandSyntaxException e) { throw new RuntimeException(e); } } return InteractionResult.PASS; } } I know about the PlaceCommand.placeStructure() method, but I can't figure out how to use it, and I can't find any documentation or examples of how to use it on the internet. Edit: I searched and tried normal options to solve this problem for a very long time, but nothing. I ended up doing it like this. And it works (in my case). @Override public @NotNull InteractionResult useOn(UseOnContext pContext) { Level pLevel = pContext.getLevel(); BlockPos pBlockPos = pContext.getClickedPos(); ItemStack item = pContext.getItemInHand(); if (!pLevel.isClientSide()) { item.setCount(0); JigsawBlockEntity jigsawBlockEntity = new JigsawBlockEntity(pBlockPos, Blocks.JIGSAW.defaultBlockState()); jigsawBlockEntity.setPool(Pools.createKey("weirdoitems:mineshaft/tunnels")); jigsawBlockEntity.setName(new ResourceLocation("weirdoitems:tunnel")); jigsawBlockEntity.setTarget(new ResourceLocation("weirdoitems:tunnel")); jigsawBlockEntity.setFinalState("minecraft:oak_planks"); jigsawBlockEntity.generate((ServerLevel) pLevel, 7, false); } return InteractionResult.CONSUME; }
  5. I succeeded in rendering quads. However, they go dark when players are above them. Like these picture : https://drive.google.com/file/d/1zdbiE-pmGk3VuLy5ZSPtPDo-4UpHcKsa/view?usp=sharing https://drive.google.com/file/d/1AgJv2ncXjqRGh_oTURNCtVdMfDWws8s2/view?usp=sharing Is there something wrong with my codes? public class RenderTester implements BlockEntityRenderer<BlockEntityTester> { private static final ResourceLocation GRAVEL_TEXTURE = new ResourceLocation("textures/block/gravel.png"); public RenderTester (BlockEntityRendererProvider.Context context) {} @Override public void render(@NotNull BlockEntityTester pBlockEntity, float pPartialTick, @NotNull PoseStack pPoseStack, @NotNull MultiBufferSource pBuffer, int pPackedLight, int pPackedOverlay) { VertexConsumer builder = pBuffer.getBuffer(RenderType.entityCutoutNoCull(GRAVEL_TEXTURE)); BufferUtil.drawQuad(builder, pPoseStack, 0.0F, 1.0F, 0.0F, 1.0F, 1.0F, 1.0F, 0.0F, 0.0F, 1.0F, 1.0F, pPackedLight, pPackedOverlay, 0xFFFFFFFF); } } public class BufferUtil { public static void drawVertex(VertexConsumer builder, PoseStack poseStack, float x, float y, float z, float u, float v, int packedLight, int pPackedOverlay, int color) { builder.vertex(poseStack.last().pose(), x, y, z) .color(color) .uv(u, v) .overlayCoords(pPackedOverlay) .uv2(packedLight) .normal(0, 1, 0) .endVertex(); } public static void drawQuad(VertexConsumer builder, PoseStack poseStack, float x0, float y0, float z0, float x1, float y1, float z1, float u0, float v0, float u1, float v1, int packedLight, int pPackedOverlay, int color) { drawVertex(builder, poseStack, x0, y0, z0, u0, v0, packedLight, pPackedOverlay, color); drawVertex(builder, poseStack, x0, y1, z1, u0, v1, packedLight, pPackedOverlay, color); drawVertex(builder, poseStack, x1, y1, z1, u1, v1, packedLight, pPackedOverlay, color); drawVertex(builder, poseStack, x1, y0, z0, u1, v0, packedLight, pPackedOverlay, color); } }
  6. How can I prevent blocks with no light value and/or not a part of the height map from being rendered to the camera/player? Especially when they are capable of seeing through solid blocks while underground, such as in spectator mode. Realizing this was just a version of anti-xray stuff, I found this mod: https://github.com/DrexHD/AntiXray/tree/1.20.4 which seems to prevent x-raying by handling chunk rendering, specifically the ClientboundLevelChunkWithLightPacket. Would this be the correct method to handle my problem? If so, is there a part of this mod's code that I should start with trying to implement to prevent blocks without light value being rendered?
  7. So im trying to create an item that will send particles after RMC in the way that a player is looking. But I have a problem that it isn't seen on server. I created a packet. sendParticles won't work for me because it just spawns particles without vector speed. And addParticle only seen on client side(?). So is there a way to send particles with vector speed like addParticle so it will be seen on server? [1.20.2]
  8. I'm creating a custom block using the 1.20.2 version of the Forge MDK, and this block is basically supposed to be identical to the Pointed Dripstone block in terms of model and behavior, just with a different texture and name. I would use a texture pack for this, but this is just one feature I'm adding in addition to several new mobs and generated structures for my mod, and additionally I don't want to replace the Pointed Dripstone block, I just want to create a second block that looks and acts like it, with a different name and texture. I've created the textures for every blockstate of the Pointed Dripstone block (the thickness and direction), I have a json for all the blockstate variants and individual jsons for each blockstate, and I've registered the block under the "ModBlocks" class as a PointedDripstoneBlock. However, in the game, the new block texture is constantly the "tip" blockstate texture, the background of the texture is black instead of transparent, the shape of the block is not accurate to the Pointed Dripstone block, and the blocks can't be placed on top of each other for some reason. I've tried several different things, and looked up a million variants of this question, but there just isn't anything I can find out there, likely because who the hell mods a pointed dripstone block?? I've included one of the jsons for one of the blockstates just as an example of how they're formatted, the json for the blockstate variants, and the ModBlocks class where this block is registered. I've also included a screenshot of what the block currently looks like in-game, compared to how the Pointed Dripstone block looks. The block is called "Titan Tooth", for reference. Please let me know what I'm getting wrong here, as I'm just going in circles at this point. My code: https://paste.ee/p/JrNWK How it looks in-game:
  9. error code 1 https://paste.ee/p/ToCkg apologies if i did this wrong
  10. Does anybody know how to get old enchant glint from 1.17.1 on newer versions? not the texture pack but accualy to make it move on armors and items like in old versions. Is there any mod/shader to do it?
  11. Hi everyone I've renamed a Biome Id in my mod, and as such, when I load a pre-existing world, I get this error when teleporting to said biome [Server thread/ERROR] [minecraft/ChunkSerializer]: Recoverable errors when loading section [-9, 0, 159]: (Unknown registry key in ResourceKey[minecraft:root / minecraft:worldgen/biome]: mineworld:volcanic_peak -> using default) -> volcanic peaks identified as plains where volcanic_peak is the old Id and volcanic_peaks is the new one. As such, the pre-generated biome is now identified as plains, causing some unintended behaviors in that biome (like rain and mobs spawning, wich my custom biome overrides). Is there a way to automatically convert the biome Id for old worlds? For example when loading the world or the chunk?
  12. I'm gettin this crash once i join my modded server, im thinking the problem might be Biome Makeover but i need a second opinion Here's the log: https://mclo.gs/ajZgfJg
  13. Ho installato Forge 1.20.2, ho cliccato col tasto sinistro due volte su installer.jar, non si apre e crea solo un file .log Il file contiene: JVM info: Oracle Corporation - 1.8.0_401 - 25.401-b10 java.net.preferIPv4Stack=true Current Time: 27/02/2024 18:18:10 Host: files.minecraftforge.net [51.79.83.165] Host: maven.minecraftforge.net [51.79.83.165] Host: libraries.minecraft.net [13.107.213.45, 13.107.246.45] Host: launchermeta.mojang.com [13.107.246.45, 13.107.213.45] Host: piston-meta.mojang.com [13.107.246.45, 13.107.213.45] java.net.UnknownHostException: authserver.mojang.com at java.net.Inet4AddressImpl.lookupAllHostAddr(Native Method) at java.net.InetAddress$2.lookupAllHostAddr(Unknown Source) at java.net.InetAddress.getAddressesFromNameService(Unknown Source) at java.net.InetAddress.getAllByName0(Unknown Source) at java.net.InetAddress.getAllByName(Unknown Source) at java.net.InetAddress.getAllByName(Unknown Source) at net.minecraftforge.installer.DownloadUtils.getIps(DownloadUtils.java:290) at net.minecraftforge.installer.SimpleInstaller.main(SimpleInstaller.java:120) Exception in thread "main" java.lang.NullPointerException at net.minecraftforge.installer.SimpleInstaller.main(SimpleInstaller.java:120)
  14. Hello forgers, Can someone help me with with player detection functionality. I want the client to check if there is a player within 10 chunks of my character (same chunk included). So i need a way to constantly check if there is a player nearby. Maybe using the onClientTick event but i don't know what to use to achieve that. I've made mods back in forge 1.8 and a lot of things have changed since. Some methods got removed and some got changed. Any help is appreciated. Thank you!
  15. 🌟Welcome to Realm of Royalty! We are a fast-growing server with a variety of ways to play Minecraft, such as survival, skyblock, and prison [coming soon]. We welcome all players and hope to create a thriving community! 🌍Features Across the Server: Crates Level System Cosmetics Frequent Updates! ⛅Skyblock Features: Monthly Payouts Balanced Economy 🌳Survival Features: 50k x 50k World Claims Auction House Pokeballs Join Us! Discord: https://discord.gg/5CFNqyS4gD IP: play.realmofroyalty.net
  16. Hello there I have been trying to rotate player upside down but can`t for some reason I tried many events and codes but still not able and the latest code I used is this package net.skatric.tutorialmod.event; import com.mojang.math.Axis; import net.minecraft.client.model.PlayerModel; import net.minecraft.client.player.AbstractClientPlayer; import net.minecraftforge.client.event.RenderPlayerEvent; import net.minecraftforge.eventbus.api.SubscribeEvent; import net.minecraftforge.fml.common.Mod; import net.skatric.tutorialmod.TutorialMod; import org.lwjgl.opengl.GL11; @Mod.EventBusSubscriber(modid = TutorialMod.MOD_ID,bus = Mod.EventBusSubscriber.Bus.FORGE) public class bodyrotation { static boolean checking = false; @SubscribeEvent public static void event(RenderPlayerEvent.Pre event) { if (checking == false) { checking = true; PlayerModel<AbstractClientPlayer> model = event.getRenderer().getModel(); event.getPoseStack().mulPose(Axis.XN.rotationDegrees(0f)); event.getPoseStack().mulPose(Axis.YN.rotationDegrees(0f)); event.getPoseStack().mulPose(Axis.ZN.rotationDegrees(180f)); } } }
  17. I was playing pixelmon on my friends server and whenever i open my inventory it just crashes ---- Minecraft Crash Report ---- // You should try our sister game, Minceraft! Time: 2024-02-03 22:09:48 Description: Rendering entity in world java.lang.NullPointerException: Cannot read field "scaleValue" because the return value of "com.pixelmonmod.pixelmon.api.pokemon.Pokemon.getGrowth()" is null at com.pixelmonmod.pixelmon.entities.pixelmon.AbstractClientEntity.updateSize(AbstractClientEntity.java:734) ~[Pixelmon-1.20.2-9.2.5-universal.jar%23157!/:9.2.5-pipe22107] {re:classloading} at com.pixelmonmod.pixelmon.entities.pixelmon.AbstractClientEntity.initBaseEntity(AbstractClientEntity.java:718) ~[Pixelmon-1.20.2-9.2.5-universal.jar%23157!/:9.2.5-pipe22107] {re:classloading} at com.pixelmonmod.pixelmon.entities.pixelmon.AbstractBaseEntity.setPokemon(AbstractBaseEntity.java:259) ~[Pixelmon-1.20.2-9.2.5-universal.jar%23157!/:9.2.5-pipe22107] {re:classloading} at com.pixelmonmod.pixelmon.entities.pixelmon.PixelmonEntity.<init>(PixelmonEntity.java:129) ~[Pixelmon-1.20.2-9.2.5-universal.jar%23157!/:9.2.5-pipe22107] {re:classloading} at com.pixelmonmod.pixelmon.client.render.layers.LayerEquippables.getPokemon(LayerEquippables.java:82) ~[Pixelmon-1.20.2-9.2.5-universal.jar%23157!/:9.2.5-pipe22107] {re:classloading} at com.pixelmonmod.pixelmon.client.render.layers.LayerEquippables.render(LayerEquippables.java:181) ~[Pixelmon-1.20.2-9.2.5-universal.jar%23157!/:9.2.5-pipe22107] {re:classloading} at com.pixelmonmod.pixelmon.client.render.layers.LayerEquippables.m_6494_(LayerEquippables.java:47) ~[Pixelmon-1.20.2-9.2.5-universal.jar%23157!/:9.2.5-pipe22107] {re:classloading} at net.minecraft.client.renderer.entity.LivingEntityRenderer.m_7392_(LivingEntityRenderer.java:135) ~[client-1.20.2-20230921.100330-srg.jar%23160!/:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A} at net.minecraft.client.renderer.entity.player.PlayerRenderer.m_7392_(PlayerRenderer.java:64) ~[client-1.20.2-20230921.100330-srg.jar%23160!/:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A} at net.minecraft.client.renderer.entity.player.PlayerRenderer.m_7392_(PlayerRenderer.java:45) ~[client-1.20.2-20230921.100330-srg.jar%23160!/:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A} at net.minecraft.client.renderer.entity.EntityRenderDispatcher.m_114384_(EntityRenderDispatcher.java:141) ~[client-1.20.2-20230921.100330-srg.jar%23160!/:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A} at net.minecraft.client.gui.screens.inventory.InventoryScreen.m_279817_(InventoryScreen.java:156) ~[client-1.20.2-20230921.100330-srg.jar%23160!/:?] {re:classloading} at com.mojang.blaze3d.systems.RenderSystem.runAsFancy(RenderSystem.java:1191) ~[client-1.20.2-20230921.100330-srg.jar%23160!/:?] {re:classloading} at net.minecraft.client.gui.screens.inventory.InventoryScreen.m_280432_(InventoryScreen.java:156) ~[client-1.20.2-20230921.100330-srg.jar%23160!/:?] {re:classloading} at net.minecraft.client.gui.screens.inventory.InventoryScreen.m_274545_(InventoryScreen.java:130) ~[client-1.20.2-20230921.100330-srg.jar%23160!/:?] {re:classloading} at net.minecraft.client.gui.screens.inventory.InventoryScreen.m_7286_(InventoryScreen.java:101) ~[client-1.20.2-20230921.100330-srg.jar%23160!/:?] {re:classloading} at com.pixelmonmod.pixelmon.client.gui.inventory.InventoryPixelmonExtendedScreen.m_7286_(InventoryPixelmonExtendedScreen.java:100) ~[Pixelmon-1.20.2-9.2.5-universal.jar%23157!/:9.2.5-pipe22107] {re:classloading} at net.minecraft.client.gui.screens.inventory.AbstractContainerScreen.m_280273_(AbstractContainerScreen.java:154) ~[client-1.20.2-20230921.100330-srg.jar%23160!/:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A} at net.minecraft.client.gui.screens.Screen.m_88315_(Screen.java:118) ~[client-1.20.2-20230921.100330-srg.jar%23160!/:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A} at net.minecraft.client.gui.screens.inventory.AbstractContainerScreen.m_88315_(AbstractContainerScreen.java:92) ~[client-1.20.2-20230921.100330-srg.jar%23160!/:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A} at net.minecraft.client.gui.screens.inventory.EffectRenderingInventoryScreen.m_88315_(EffectRenderingInventoryScreen.java:32) ~[client-1.20.2-20230921.100330-srg.jar%23160!/:?] {re:classloading,pl:runtimedistcleaner:A} at net.minecraft.client.gui.screens.inventory.InventoryScreen.m_88315_(InventoryScreen.java:83) ~[client-1.20.2-20230921.100330-srg.jar%23160!/:?] {re:classloading} at com.pixelmonmod.pixelmon.client.gui.inventory.InventoryPixelmonExtendedScreen.m_88315_(InventoryPixelmonExtendedScreen.java:58) ~[Pixelmon-1.20.2-9.2.5-universal.jar%23157!/:9.2.5-pipe22107] {re:classloading} at net.minecraft.client.gui.screens.Screen.m_280264_(Screen.java:109) ~[client-1.20.2-20230921.100330-srg.jar%23160!/:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A} at net.minecraftforge.client.ForgeHooksClient.drawScreenInternal(ForgeHooksClient.java:389) ~[forge-1.20.2-48.0.34-universal.jar%23165!/:?] {re:classloading} at net.minecraftforge.client.ForgeHooksClient.drawScreen(ForgeHooksClient.java:383) ~[forge-1.20.2-48.0.34-universal.jar%23165!/:?] {re:classloading} at net.minecraft.client.renderer.GameRenderer.m_109093_(GameRenderer.java:966) ~[client-1.20.2-20230921.100330-srg.jar%23160!/:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A} at net.minecraft.client.Minecraft.m_91383_(Minecraft.java:1211) ~[client-1.20.2-20230921.100330-srg.jar%23160!/:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A} at net.minecraft.client.Minecraft.m_91374_(Minecraft.java:781) ~[client-1.20.2-20230921.100330-srg.jar%23160!/:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A} at net.minecraft.client.main.Main.main(Main.java:221) ~[Forge%201.20.2.jar:?] {re:classloading,pl:runtimedistcleaner:A} at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:?] {} at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) ~[?:?] {} at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?] {} at java.lang.reflect.Method.invoke(Method.java:568) ~[?:?] {} at net.minecraftforge.fml.loading.targets.CommonLaunchHandler.runTarget(CommonLaunchHandler.java:98) ~[fmlloader-1.20.2-48.0.34.jar:?] {} at net.minecraftforge.fml.loading.targets.CommonLaunchHandler.lambda$makeService$0(CommonLaunchHandler.java:82) ~[fmlloader-1.20.2-48.0.34.jar:?] {} at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:17) ~[modlauncher-10.1.1.jar:?] {} at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:40) ~[modlauncher-10.1.1.jar:?] {} at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:58) ~[modlauncher-10.1.1.jar:?] {} at cpw.mods.modlauncher.Launcher.run(Launcher.java:96) ~[modlauncher-10.1.1.jar:?] {} at cpw.mods.modlauncher.Launcher.main(Launcher.java:66) ~[modlauncher-10.1.1.jar:?] {} at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:13) ~[modlauncher-10.1.1.jar:?] {} at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:10) ~[modlauncher-10.1.1.jar:?] {} at net.minecraftforge.bootstrap.BootstrapLauncher.main(BootstrapLauncher.java:126) ~[bootstrap-1.2.0.jar:?] {} A detailed walkthrough of the error, its code path and all known details is as follows: --------------------------------------------------------------------------------------- -- Head -- Thread: Render thread Suspected Mod: Pixelmon (pixelmon), Version: 9.2.5 Issue tracker URL: https://pixelmonmod.com/tracker.php?p=2 at TRANSFORMER/[email protected]/com.pixelmonmod.pixelmon.entities.pixelmon.AbstractClientEntity.updateSize(AbstractClientEntity.java:734) Stacktrace: at com.pixelmonmod.pixelmon.entities.pixelmon.AbstractClientEntity.updateSize(AbstractClientEntity.java:734) ~[Pixelmon-1.20.2-9.2.5-universal.jar%23157!/:9.2.5-pipe22107] {re:classloading} at com.pixelmonmod.pixelmon.entities.pixelmon.AbstractClientEntity.initBaseEntity(AbstractClientEntity.java:718) ~[Pixelmon-1.20.2-9.2.5-universal.jar%23157!/:9.2.5-pipe22107] {re:classloading} at com.pixelmonmod.pixelmon.entities.pixelmon.AbstractBaseEntity.setPokemon(AbstractBaseEntity.java:259) ~[Pixelmon-1.20.2-9.2.5-universal.jar%23157!/:9.2.5-pipe22107] {re:classloading} at com.pixelmonmod.pixelmon.entities.pixelmon.PixelmonEntity.<init>(PixelmonEntity.java:129) ~[Pixelmon-1.20.2-9.2.5-universal.jar%23157!/:9.2.5-pipe22107] {re:classloading} at com.pixelmonmod.pixelmon.client.render.layers.LayerEquippables.getPokemon(LayerEquippables.java:82) ~[Pixelmon-1.20.2-9.2.5-universal.jar%23157!/:9.2.5-pipe22107] {re:classloading} at com.pixelmonmod.pixelmon.client.render.layers.LayerEquippables.render(LayerEquippables.java:181) ~[Pixelmon-1.20.2-9.2.5-universal.jar%23157!/:9.2.5-pipe22107] {re:classloading} at com.pixelmonmod.pixelmon.client.render.layers.LayerEquippables.m_6494_(LayerEquippables.java:47) ~[Pixelmon-1.20.2-9.2.5-universal.jar%23157!/:9.2.5-pipe22107] {re:classloading} at net.minecraft.client.renderer.entity.LivingEntityRenderer.m_7392_(LivingEntityRenderer.java:135) ~[client-1.20.2-20230921.100330-srg.jar%23160!/:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A} at net.minecraft.client.renderer.entity.player.PlayerRenderer.m_7392_(PlayerRenderer.java:64) ~[client-1.20.2-20230921.100330-srg.jar%23160!/:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A} at net.minecraft.client.renderer.entity.player.PlayerRenderer.m_7392_(PlayerRenderer.java:45) ~[client-1.20.2-20230921.100330-srg.jar%23160!/:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A} at net.minecraft.client.renderer.entity.EntityRenderDispatcher.m_114384_(EntityRenderDispatcher.java:141) ~[client-1.20.2-20230921.100330-srg.jar%23160!/:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A} at net.minecraft.client.gui.screens.inventory.InventoryScreen.m_279817_(InventoryScreen.java:156) ~[client-1.20.2-20230921.100330-srg.jar%23160!/:?] {re:classloading} at com.mojang.blaze3d.systems.RenderSystem.runAsFancy(RenderSystem.java:1191) ~[client-1.20.2-20230921.100330-srg.jar%23160!/:?] {re:classloading} at net.minecraft.client.gui.screens.inventory.InventoryScreen.m_280432_(InventoryScreen.java:156) ~[client-1.20.2-20230921.100330-srg.jar%23160!/:?] {re:classloading} at net.minecraft.client.gui.screens.inventory.InventoryScreen.m_274545_(InventoryScreen.java:130) ~[client-1.20.2-20230921.100330-srg.jar%23160!/:?] {re:classloading} at net.minecraft.client.gui.screens.inventory.InventoryScreen.m_7286_(InventoryScreen.java:101) ~[client-1.20.2-20230921.100330-srg.jar%23160!/:?] {re:classloading} at com.pixelmonmod.pixelmon.client.gui.inventory.InventoryPixelmonExtendedScreen.m_7286_(InventoryPixelmonExtendedScreen.java:100) ~[Pixelmon-1.20.2-9.2.5-universal.jar%23157!/:9.2.5-pipe22107] {re:classloading} at net.minecraft.client.gui.screens.inventory.AbstractContainerScreen.m_280273_(AbstractContainerScreen.java:154) ~[client-1.20.2-20230921.100330-srg.jar%23160!/:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A} at net.minecraft.client.gui.screens.Screen.m_88315_(Screen.java:118) ~[client-1.20.2-20230921.100330-srg.jar%23160!/:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A} at net.minecraft.client.gui.screens.inventory.AbstractContainerScreen.m_88315_(AbstractContainerScreen.java:92) ~[client-1.20.2-20230921.100330-srg.jar%23160!/:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A} at net.minecraft.client.gui.screens.inventory.EffectRenderingInventoryScreen.m_88315_(EffectRenderingInventoryScreen.java:32) ~[client-1.20.2-20230921.100330-srg.jar%23160!/:?] {re:classloading,pl:runtimedistcleaner:A} at net.minecraft.client.gui.screens.inventory.InventoryScreen.m_88315_(InventoryScreen.java:83) ~[client-1.20.2-20230921.100330-srg.jar%23160!/:?] {re:classloading} at com.pixelmonmod.pixelmon.client.gui.inventory.InventoryPixelmonExtendedScreen.m_88315_(InventoryPixelmonExtendedScreen.java:58) ~[Pixelmon-1.20.2-9.2.5-universal.jar%23157!/:9.2.5-pipe22107] {re:classloading} at net.minecraft.client.gui.screens.Screen.m_280264_(Screen.java:109) ~[client-1.20.2-20230921.100330-srg.jar%23160!/:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A} at net.minecraftforge.client.ForgeHooksClient.drawScreenInternal(ForgeHooksClient.java:389) ~[forge-1.20.2-48.0.34-universal.jar%23165!/:?] {re:classloading} at net.minecraftforge.client.ForgeHooksClient.drawScreen(ForgeHooksClient.java:383) ~[forge-1.20.2-48.0.34-universal.jar%23165!/:?] {re:classloading} -- Entity being rendered -- Details: Entity Type: minecraft:player (net.minecraft.client.player.LocalPlayer) Entity ID: 55 Entity Name: siennn Entity's Exact location: -228.09, 90.18, 1264.09 Entity's Block location: World: (-229,90,1264), Section: (at 11,10,0 in -15,5,79; chunk contains blocks -240,-64,1264 to -225,319,1279), Region: (-1,2; contains chunks -32,64 to -1,95, blocks -512,-64,1024 to -1,319,1535) Entity's Momentum: 0.05, -0.15, 0.11 Entity's Passengers: [] Entity's Vehicle: null Stacktrace: at net.minecraft.client.renderer.entity.EntityRenderDispatcher.m_114384_(EntityRenderDispatcher.java:141) ~[client-1.20.2-20230921.100330-srg.jar%23160!/:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A} at net.minecraft.client.gui.screens.inventory.InventoryScreen.m_279817_(InventoryScreen.java:156) ~[client-1.20.2-20230921.100330-srg.jar%23160!/:?] {re:classloading} at com.mojang.blaze3d.systems.RenderSystem.runAsFancy(RenderSystem.java:1191) ~[client-1.20.2-20230921.100330-srg.jar%23160!/:?] {re:classloading} at net.minecraft.client.gui.screens.inventory.InventoryScreen.m_280432_(InventoryScreen.java:156) ~[client-1.20.2-20230921.100330-srg.jar%23160!/:?] {re:classloading} at net.minecraft.client.gui.screens.inventory.InventoryScreen.m_274545_(InventoryScreen.java:130) ~[client-1.20.2-20230921.100330-srg.jar%23160!/:?] {re:classloading} at net.minecraft.client.gui.screens.inventory.InventoryScreen.m_7286_(InventoryScreen.java:101) ~[client-1.20.2-20230921.100330-srg.jar%23160!/:?] {re:classloading} at com.pixelmonmod.pixelmon.client.gui.inventory.InventoryPixelmonExtendedScreen.m_7286_(InventoryPixelmonExtendedScreen.java:100) ~[Pixelmon-1.20.2-9.2.5-universal.jar%23157!/:9.2.5-pipe22107] {re:classloading} at net.minecraft.client.gui.screens.inventory.AbstractContainerScreen.m_280273_(AbstractContainerScreen.java:154) ~[client-1.20.2-20230921.100330-srg.jar%23160!/:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A} at net.minecraft.client.gui.screens.Screen.m_88315_(Screen.java:118) ~[client-1.20.2-20230921.100330-srg.jar%23160!/:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A} at net.minecraft.client.gui.screens.inventory.AbstractContainerScreen.m_88315_(AbstractContainerScreen.java:92) ~[client-1.20.2-20230921.100330-srg.jar%23160!/:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A} at net.minecraft.client.gui.screens.inventory.EffectRenderingInventoryScreen.m_88315_(EffectRenderingInventoryScreen.java:32) ~[client-1.20.2-20230921.100330-srg.jar%23160!/:?] {re:classloading,pl:runtimedistcleaner:A} at net.minecraft.client.gui.screens.inventory.InventoryScreen.m_88315_(InventoryScreen.java:83) ~[client-1.20.2-20230921.100330-srg.jar%23160!/:?] {re:classloading} at com.pixelmonmod.pixelmon.client.gui.inventory.InventoryPixelmonExtendedScreen.m_88315_(InventoryPixelmonExtendedScreen.java:58) ~[Pixelmon-1.20.2-9.2.5-universal.jar%23157!/:9.2.5-pipe22107] {re:classloading} at net.minecraft.client.gui.screens.Screen.m_280264_(Screen.java:109) ~[client-1.20.2-20230921.100330-srg.jar%23160!/:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A} at net.minecraftforge.client.ForgeHooksClient.drawScreenInternal(ForgeHooksClient.java:389) ~[forge-1.20.2-48.0.34-universal.jar%23165!/:?] {re:classloading} at net.minecraftforge.client.ForgeHooksClient.drawScreen(ForgeHooksClient.java:383) ~[forge-1.20.2-48.0.34-universal.jar%23165!/:?] {re:classloading} at net.minecraft.client.renderer.GameRenderer.m_109093_(GameRenderer.java:966) ~[client-1.20.2-20230921.100330-srg.jar%23160!/:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A} at net.minecraft.client.Minecraft.m_91383_(Minecraft.java:1211) ~[client-1.20.2-20230921.100330-srg.jar%23160!/:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A} at net.minecraft.client.Minecraft.m_91374_(Minecraft.java:781) ~[client-1.20.2-20230921.100330-srg.jar%23160!/:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A} at net.minecraft.client.main.Main.main(Main.java:221) ~[Forge%201.20.2.jar:?] {re:classloading,pl:runtimedistcleaner:A} at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:?] {} at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) ~[?:?] {} at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?] {} at java.lang.reflect.Method.invoke(Method.java:568) ~[?:?] {} at net.minecraftforge.fml.loading.targets.CommonLaunchHandler.runTarget(CommonLaunchHandler.java:98) ~[fmlloader-1.20.2-48.0.34.jar:?] {} at net.minecraftforge.fml.loading.targets.CommonLaunchHandler.lambda$makeService$0(CommonLaunchHandler.java:82) ~[fmlloader-1.20.2-48.0.34.jar:?] {} at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:17) ~[modlauncher-10.1.1.jar:?] {} at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:40) ~[modlauncher-10.1.1.jar:?] {} at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:58) ~[modlauncher-10.1.1.jar:?] {} at cpw.mods.modlauncher.Launcher.run(Launcher.java:96) ~[modlauncher-10.1.1.jar:?] {} at cpw.mods.modlauncher.Launcher.main(Launcher.java:66) ~[modlauncher-10.1.1.jar:?] {} at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:13) ~[modlauncher-10.1.1.jar:?] {} at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:10) ~[modlauncher-10.1.1.jar:?] {} at net.minecraftforge.bootstrap.BootstrapLauncher.main(BootstrapLauncher.java:126) ~[bootstrap-1.2.0.jar:?] {} -- Renderer details -- Details: Assigned renderer: net.minecraft.client.renderer.entity.player.PlayerRenderer@3ec41663 Location: 0.00,0.00,0.00 - World: (0,0,0), Section: (at 0,0,0 in 0,0,0; chunk contains blocks 0,-64,0 to 15,319,15), Region: (0,0; contains chunks 0,0 to 31,31, blocks 0,-64,0 to 511,319,511) Rotation: 0.0 Delta: 1.0 Stacktrace: at net.minecraft.client.renderer.entity.EntityRenderDispatcher.m_114384_(EntityRenderDispatcher.java:141) ~[client-1.20.2-20230921.100330-srg.jar%23160!/:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A} at net.minecraft.client.gui.screens.inventory.InventoryScreen.m_279817_(InventoryScreen.java:156) ~[client-1.20.2-20230921.100330-srg.jar%23160!/:?] {re:classloading} at com.mojang.blaze3d.systems.RenderSystem.runAsFancy(RenderSystem.java:1191) ~[client-1.20.2-20230921.100330-srg.jar%23160!/:?] {re:classloading} at net.minecraft.client.gui.screens.inventory.InventoryScreen.m_280432_(InventoryScreen.java:156) ~[client-1.20.2-20230921.100330-srg.jar%23160!/:?] {re:classloading} at net.minecraft.client.gui.screens.inventory.InventoryScreen.m_274545_(InventoryScreen.java:130) ~[client-1.20.2-20230921.100330-srg.jar%23160!/:?] {re:classloading} at net.minecraft.client.gui.screens.inventory.InventoryScreen.m_7286_(InventoryScreen.java:101) ~[client-1.20.2-20230921.100330-srg.jar%23160!/:?] {re:classloading} at com.pixelmonmod.pixelmon.client.gui.inventory.InventoryPixelmonExtendedScreen.m_7286_(InventoryPixelmonExtendedScreen.java:100) ~[Pixelmon-1.20.2-9.2.5-universal.jar%23157!/:9.2.5-pipe22107] {re:classloading} at net.minecraft.client.gui.screens.inventory.AbstractContainerScreen.m_280273_(AbstractContainerScreen.java:154) ~[client-1.20.2-20230921.100330-srg.jar%23160!/:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A} at net.minecraft.client.gui.screens.Screen.m_88315_(Screen.java:118) ~[client-1.20.2-20230921.100330-srg.jar%23160!/:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A} at net.minecraft.client.gui.screens.inventory.AbstractContainerScreen.m_88315_(AbstractContainerScreen.java:92) ~[client-1.20.2-20230921.100330-srg.jar%23160!/:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A} at net.minecraft.client.gui.screens.inventory.EffectRenderingInventoryScreen.m_88315_(EffectRenderingInventoryScreen.java:32) ~[client-1.20.2-20230921.100330-srg.jar%23160!/:?] {re:classloading,pl:runtimedistcleaner:A} at net.minecraft.client.gui.screens.inventory.InventoryScreen.m_88315_(InventoryScreen.java:83) ~[client-1.20.2-20230921.100330-srg.jar%23160!/:?] {re:classloading} at com.pixelmonmod.pixelmon.client.gui.inventory.InventoryPixelmonExtendedScreen.m_88315_(InventoryPixelmonExtendedScreen.java:58) ~[Pixelmon-1.20.2-9.2.5-universal.jar%23157!/:9.2.5-pipe22107] {re:classloading} at net.minecraft.client.gui.screens.Screen.m_280264_(Screen.java:109) ~[client-1.20.2-20230921.100330-srg.jar%23160!/:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A} at net.minecraftforge.client.ForgeHooksClient.drawScreenInternal(ForgeHooksClient.java:389) ~[forge-1.20.2-48.0.34-universal.jar%23165!/:?] {re:classloading} at net.minecraftforge.client.ForgeHooksClient.drawScreen(ForgeHooksClient.java:383) ~[forge-1.20.2-48.0.34-universal.jar%23165!/:?] {re:classloading} at net.minecraft.client.renderer.GameRenderer.m_109093_(GameRenderer.java:966) ~[client-1.20.2-20230921.100330-srg.jar%23160!/:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A} at net.minecraft.client.Minecraft.m_91383_(Minecraft.java:1211) ~[client-1.20.2-20230921.100330-srg.jar%23160!/:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A} at net.minecraft.client.Minecraft.m_91374_(Minecraft.java:781) ~[client-1.20.2-20230921.100330-srg.jar%23160!/:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A} at net.minecraft.client.main.Main.main(Main.java:221) ~[Forge%201.20.2.jar:?] {re:classloading,pl:runtimedistcleaner:A} at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:?] {} at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) ~[?:?] {} at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?] {} at java.lang.reflect.Method.invoke(Method.java:568) ~[?:?] {} at net.minecraftforge.fml.loading.targets.CommonLaunchHandler.runTarget(CommonLaunchHandler.java:98) ~[fmlloader-1.20.2-48.0.34.jar:?] {} at net.minecraftforge.fml.loading.targets.CommonLaunchHandler.lambda$makeService$0(CommonLaunchHandler.java:82) ~[fmlloader-1.20.2-48.0.34.jar:?] {} at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:17) ~[modlauncher-10.1.1.jar:?] {} at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:40) ~[modlauncher-10.1.1.jar:?] {} at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:58) ~[modlauncher-10.1.1.jar:?] {} at cpw.mods.modlauncher.Launcher.run(Launcher.java:96) ~[modlauncher-10.1.1.jar:?] {} at cpw.mods.modlauncher.Launcher.main(Launcher.java:66) ~[modlauncher-10.1.1.jar:?] {} at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:13) ~[modlauncher-10.1.1.jar:?] {} at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:10) ~[modlauncher-10.1.1.jar:?] {} at net.minecraftforge.bootstrap.BootstrapLauncher.main(BootstrapLauncher.java:126) ~[bootstrap-1.2.0.jar:?] {} -- Screen render details -- Details: Screen name: com.pixelmonmod.pixelmon.client.gui.inventory.InventoryPixelmonExtendedScreen Mouse location: Scaled: (480, 270). Absolute: (960.000000, 540.000000) Screen size: Scaled: (960, 540). Absolute: (1920, 1080). Scale factor of 2.000000 Stacktrace: at net.minecraft.client.renderer.GameRenderer.m_109093_(GameRenderer.java:966) ~[client-1.20.2-20230921.100330-srg.jar%23160!/:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A} at net.minecraft.client.Minecraft.m_91383_(Minecraft.java:1211) ~[client-1.20.2-20230921.100330-srg.jar%23160!/:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A} at net.minecraft.client.Minecraft.m_91374_(Minecraft.java:781) ~[client-1.20.2-20230921.100330-srg.jar%23160!/:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A} at net.minecraft.client.main.Main.main(Main.java:221) ~[Forge%201.20.2.jar:?] {re:classloading,pl:runtimedistcleaner:A} at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:?] {} at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) ~[?:?] {} at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?] {} at java.lang.reflect.Method.invoke(Method.java:568) ~[?:?] {} at net.minecraftforge.fml.loading.targets.CommonLaunchHandler.runTarget(CommonLaunchHandler.java:98) ~[fmlloader-1.20.2-48.0.34.jar:?] {} at net.minecraftforge.fml.loading.targets.CommonLaunchHandler.lambda$makeService$0(CommonLaunchHandler.java:82) ~[fmlloader-1.20.2-48.0.34.jar:?] {} at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:17) ~[modlauncher-10.1.1.jar:?] {} at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:40) ~[modlauncher-10.1.1.jar:?] {} at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:58) ~[modlauncher-10.1.1.jar:?] {} at cpw.mods.modlauncher.Launcher.run(Launcher.java:96) ~[modlauncher-10.1.1.jar:?] {} at cpw.mods.modlauncher.Launcher.main(Launcher.java:66) ~[modlauncher-10.1.1.jar:?] {} at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:13) ~[modlauncher-10.1.1.jar:?] {} at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:10) ~[modlauncher-10.1.1.jar:?] {} at net.minecraftforge.bootstrap.BootstrapLauncher.main(BootstrapLauncher.java:126) ~[bootstrap-1.2.0.jar:?] {} -- Affected level -- Details: All players: 1 total; [LocalPlayer['siennn'/55, l='ClientLevel', x=-228.09, y=90.18, z=1264.09]] Chunk stats: 729, 22 Level dimension: minecraft:overworld Level spawn location: World: (400,101,128), Section: (at 0,5,0 in 25,6,8; chunk contains blocks 400,-64,128 to 415,319,143), Region: (0,0; contains chunks 0,0 to 31,31, blocks 0,-64,0 to 511,319,511) Level time: 518274 game time, 579595 day time Server brand: forge Server type: Non-integrated multiplayer server Stacktrace: at net.minecraft.client.multiplayer.ClientLevel.m_6026_(ClientLevel.java:448) ~[client-1.20.2-20230921.100330-srg.jar%23160!/:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A} at net.minecraft.client.Minecraft.m_91354_(Minecraft.java:2394) ~[client-1.20.2-20230921.100330-srg.jar%23160!/:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A} at net.minecraft.client.Minecraft.m_91374_(Minecraft.java:798) ~[client-1.20.2-20230921.100330-srg.jar%23160!/:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A} at net.minecraft.client.main.Main.main(Main.java:221) ~[Forge%201.20.2.jar:?] {re:classloading,pl:runtimedistcleaner:A} at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:?] {} at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) ~[?:?] {} at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?] {} at java.lang.reflect.Method.invoke(Method.java:568) ~[?:?] {} at net.minecraftforge.fml.loading.targets.CommonLaunchHandler.runTarget(CommonLaunchHandler.java:98) ~[fmlloader-1.20.2-48.0.34.jar:?] {} at net.minecraftforge.fml.loading.targets.CommonLaunchHandler.lambda$makeService$0(CommonLaunchHandler.java:82) ~[fmlloader-1.20.2-48.0.34.jar:?] {} at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:17) ~[modlauncher-10.1.1.jar:?] {} at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:40) ~[modlauncher-10.1.1.jar:?] {} at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:58) ~[modlauncher-10.1.1.jar:?] {} at cpw.mods.modlauncher.Launcher.run(Launcher.java:96) ~[modlauncher-10.1.1.jar:?] {} at cpw.mods.modlauncher.Launcher.main(Launcher.java:66) ~[modlauncher-10.1.1.jar:?] {} at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:13) ~[modlauncher-10.1.1.jar:?] {} at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:10) ~[modlauncher-10.1.1.jar:?] {} at net.minecraftforge.bootstrap.BootstrapLauncher.main(BootstrapLauncher.java:126) ~[bootstrap-1.2.0.jar:?] {} -- Last reload -- Details: Reload number: 1 Reload reason: initial Finished: Yes Packs: mod_resources, vanilla -- System Details -- Details: Minecraft Version: 1.20.2 Minecraft Version ID: 1.20.2 Operating System: Windows 10 (amd64) version 10.0 Java Version: 17.0.3, Microsoft Java VM Version: OpenJDK 64-Bit Server VM (mixed mode), Microsoft Memory: 1242068784 bytes (1184 MiB) / 2046820352 bytes (1952 MiB) up to 3154116608 bytes (3008 MiB) CPUs: 12 Processor Vendor: AuthenticAMD Processor Name: AMD Ryzen 5 5500 Identifier: AuthenticAMD Family 25 Model 80 Stepping 0 Microarchitecture: Zen 3 Frequency (GHz): 3.59 Number of physical packages: 1 Number of physical CPUs: 6 Number of logical CPUs: 12 Graphics card #0 name: NVIDIA GeForce RTX 3060 Graphics card #0 vendor: NVIDIA (0x10de) Graphics card #0 VRAM (MB): 4095.00 Graphics card #0 deviceId: 0x2487 Graphics card #0 versionInfo: DriverVersion=31.0.15.5123 Memory slot #0 capacity (MB): 16384.00 Memory slot #0 clockSpeed (GHz): 3.20 Memory slot #0 type: DDR4 Virtual memory max (MB): 21057.96 Virtual memory used (MB): 15814.83 Swap memory total (MB): 4780.45 Swap memory used (MB): 105.50 JVM Flags: 9 total; -XX:HeapDumpPath=MojangTricksIntelDriversForPerformance_javaw.exe_minecraft.exe.heapdump -Xss1M -Xmx3000M -XX:+UnlockExperimentalVMOptions -XX:+UseG1GC -XX:G1NewSizePercent=20 -XX:G1ReservePercent=20 -XX:MaxGCPauseMillis=50 -XX:G1HeapRegionSize=32M JVM uptime in seconds: 195.068 Launched Version: Forge 1.20.2 Backend library: LWJGL version 3.3.2+13 Backend API: NVIDIA GeForce RTX 3060/PCIe/SSE2 GL version 4.6.0 NVIDIA 551.23, NVIDIA Corporation Window size: 1920x1080 GL Caps: Using framebuffer using OpenGL 3.2 GL debug messages: Using VBOs: Yes Is Modded: Definitely; Client brand changed to 'forge' Type: Client (map_client.txt) Graphics mode: fast Resource Packs: mod_resources, vanilla Current Language: en_us Locale: en_US CPU: 12x AMD Ryzen 5 5500 ModLauncher: 10.1.1 ModLauncher launch target: forge_client ModLauncher naming: srg ModLauncher services: mixin-0.8.5.jar mixin PLUGINSERVICE eventbus-6.2.0.jar eventbus PLUGINSERVICE fmlloader-1.20.2-48.0.34.jar slf4jfixer PLUGINSERVICE fmlloader-1.20.2-48.0.34.jar object_holder_definalize PLUGINSERVICE fmlloader-1.20.2-48.0.34.jar runtime_enum_extender PLUGINSERVICE fmlloader-1.20.2-48.0.34.jar capability_token_subclass PLUGINSERVICE accesstransformers-8.1.1.jar accesstransformer PLUGINSERVICE fmlloader-1.20.2-48.0.34.jar runtimedistcleaner PLUGINSERVICE modlauncher-10.1.1.jar mixin TRANSFORMATIONSERVICE modlauncher-10.1.1.jar fml TRANSFORMATIONSERVICE FML Language Providers: [email protected] lowcodefml@48 javafml@null Mod List: client-1.20.2-20230921.100330-srg.jar |Minecraft |minecraft |1.20.2 |DONE |Manifest: a1:d4:5e:04:4f:d3:d6:e0:7b:37:97:cf:77:b0:de:ad:4a:47:ce:8c:96:49:5f:0a:cf:8c:ae:b2:6d:4b:8a:3f forge-1.20.2-48.0.34-universal.jar |Forge |forge |48.0.34 |DONE |Manifest: 84:ce:76:e8:45:35:e4:0e:63:86:df:47:59:80:0f:67:6c:c1:5f:6e:5f:4d:b3:54:47:1a:9f:7f:ed:5e:f2:90 tl_skin_cape_forge_1.20.2-1.32.jar |TLSkinCape |tlskincape |1.32 |DONE |Manifest: ef:fe:e7:59:91:bb:3a:06:c1:94:f4:f3:9c:3e:26:69:47:fa:2e:c5:53:d3:38:21:65:cc:04:75:e7:61:19:40 journeymap-1.20.2-5.9.18-forge.jar |Journeymap |journeymap |5.9.18 |DONE |Manifest: NOSIGNATURE Pixelmon-1.20.2-9.2.5-universal.jar |Pixelmon |pixelmon |9.2.5 |DONE |Manifest: NOSIGNATURE jei-1.20.2-forge-16.0.0.28.jar |Just Enough Items |jei |16.0.0.28 |DONE |Manifest: NOSIGNATURE Crash Report UUID: 28050e4e-b832-493b-9609-08fef85cc7f7 FML: 48.0 Forge: net.minecraftforge:48.0.34 Also it dosent crash when i am playing on my own survival world, just on my friends server.
  18. I have a variant type of dirt and would like to be able to till it into farmland. For texture and behaviour reasons, it needs to be a separate block (e.g. revert back to the variant dirt), so I cannot just have it become farmland. I would like to be able to plant vanilla crops, such as wheat, potatoes, etc. on this farmland. Being able to plant modded CropBlocks from other mods on this farmland would be a plus, but is not necessary. However, CropBlocks such as wheat can only be placed on the vanilla farmland block (not a tag). protected boolean mayPlaceOn(BlockState state, BlockGetter getter, BlockPos pos) { return state.is(Blocks.FARMLAND); } What is the best way to achieve this behaviour? Check for useOns from the seed items and place a modded block identical to the vanilla crop? Does forge add anything that would simplify this?
  19. hey I got the exact same problem that (word for word): but I can't access NetworkHooks (nearly sure it got deleted between "forge for 1.20.1" and "forge for 1.20.2"). How do I get that Un- FriendlyByteBuff to be not null ?
  20. I just keep getting exit code 1 whenever I close out of minecraft using task manager. The game will crash anytime I try to load a world. I thought the world itself might be corrupted so I attempted to make a new world and I was met with the same issue. I attempted to allocate more ram that was not the issue and the game ran fine before adding the additional ram. My world isn't large either. I also attempted to optimize the world and that did not result in the world loading either. I noticed the pack is running through open jdk platform binary as opposed to just java I am not sure this is the issue as I never opened task manager prior to the crashes. The only error besides exit code one was not enough memory allocated and thats only when I checked use system allocated memory on the curseforge profile settings. I have allocated 10 to 15 gb of ram with no luck and with the pack running fine two days ago. I have not gotten any windows updates at all. The only update I have done is too my drivers for my graphics card. I know this is not a computer specs issue either. Any help would be great. I am playing all the mods 9. Crash report -> Jumbo furnace server error - Pastebin.com Edit: The file that seems to be the issue is a Jumbofurnace-server.toml file. I tried to remove the file entirely which just met me with another error ## A fatal error has been detected by the Java Runtime Environment:## EXC - Pastebin.com
  21. I am trying to remove 'minecraft:ancient_debris' from the tag 'needs_diamond_tool' in the vanilla files. I have looked all over the forums and discord, but i cannot find anything exactly like what I am struggling with. I have checked and copied the paths and file name countless times, as well as doing a whole lot of other things, but it does not seem to work. here is the edited 'needs_diamond_tool.json' file { "replace": false, "values": [ "minecraft:obsidian", "minecraft:crying_obsidian", "minecraft:netherite_block", "minecraft:respawn_anchor" ], "remove": [ "minecraft:ancient_debris" ] } Not only that, but I have also tried messing around with the dependencies in my 'mods.toml' file in order to make vanilla and forge load after my mod, but that does nothing. I am willing to send any other files if that were to help at all, thankyou!
  22. This is a gamemode that i have been working on for a while. the player takes on the role of an ant. the map is 256 by 256 and is the so called anthill where all the ants can go into. The surface is at height ~ 270-320. Within the map resources are limited, but with custom recipes, drops and clickeffects, the road to the top is still possible. It is a long grind. Despite all the custom things, the server is close to vanilla in terms of experience. You can join through the ip 10ant.minehut.gg Bye (:
  23. I've recently gotten into modding again after a hiatus. Currently I'm experimenting with a mod that would allow users to create simple 'content packs' in plain-text form. These files are loaded on startup by the mod and it then registers items based off of this data via the registry events, which works fine (though I'm not yet sure what would happen if there's a mismatch between the server and client content packs). However I would like to be able to automatically load & register resources and data for these items, based off of the loaded data; E.G item textures & models, and crafting recipes (dynamically registering recipes used to be quite straightforward last time I did any modding) I have yet to find anything on this that is up to date, though I did find a solution that would probably work, that essentially relied on handling all the rendering on its own. Is there any reasonable way to do this, short of requiring the user to also install a resource pack and data pack for every content pack?
  24. Getting this error (The game crashed whilst initializing game Error: java.lang.RuntimeException: null) and exit code -1 when I try and use the Scalable Cat's Force mod to run with the Additional Enchanted Miner mod. Crash Report: https://pastebin.com/WVgLFXnp Any solutions? My Forge is version 1.20.2.48.0.39 (same as the version of scalable cat's force was made on)
  25. Introduction: Welcome to the grand launch of Prosperity Craft, a Minecraft server that promises an immersive and exciting gaming experience. Embark on an exciting adventure and be part of our grand launch. Server features: Balanced Economy: Our server ensures a balanced economy with no overpowered elements, providing a fair gameplay for all players. Grief Prevention: Safeguard your creations and enjoy a grief-free environment with our advanced Grief Prevention system. Dual Rank System: • Main ranks: Players have the ability to progress through our carefully designed 15 main ranks, each of which bestows useful and unique benefits. • Donator ranks: serve as supplementary levels to the main ranks, offering additional progression benefits without providing unfair P2W advantages. McMMO: Dive into the world of McMMO, where your skills and abilities evolve as you play, adding a layer of RPG elements to your adventure. McMMO resets every 6 months to maintain balance, refresh gameplay, and offer a fair start for all players. Jobs: Engage in various jobs to earn in-game currency Daily Quests: Take on daily quests to challenge yourself and earn rewards as you accomplish different tasks. Daily Rewards: Log in daily to claim exclusive rewards and bonuses, adding an extra incentive to your regular gameplay. Weekly Events: Join weekly events that bring the community together for fun and excitement, creating memorable moments for all. Community Driven: We believe in actively involving our players in the decision-making process. Your input, suggestions, and feedback are vital in shaping the direction of the server. It's not just a community; it's a collaborative effort where the collective voice of our players guides the evolution of the server. Top of Form No Texture Pack: Prosperity Craft does not require the installation of any texture pack, ensuring a lag-free experience for all players. IP [1.20.2]: 194.153.216.79:25948 Discord server: https://discord.gg/UKUzgwtNCv
×
×
  • Create New...

Important Information

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