Search the Community
Showing results for tags '1.20.4'.
-
Forge version: 49.2.0 Minecraft version: 1.20.4 Downloads: Changelog: (Direct) Installer: (AdFocus) (Direct) MDK: (AdFocus) (Direct) Downloads page Intro: Today we release our second recommended build for 1.20.4. Along with its siblings 1.20.1 and 1.20.6,...
-
For about 2 weeks now I can't figure out what my mistake is. In general, at first I just made a block on which I pulled an oriented texture, and it worked perfectly, but then when I started trying to add functionality to the block (ripping it off the furnace functionality) Minecraft started compla...
-
I am a beginner modder, with around 50 hours of experience being guided by tutorials and chat-gpt. My mod is almost done, but I want to make the plants specifically require sunlight to encourage players to establish structure above ground. After looking at the vanilla code for a few hours, I'm still...
-
What would be the best logic to manage a multiple block block? I already know how some use halves like doors, but mine is supposed to be a 2x2x2 block. Is just decor, doesn't do anything special, so what is the recommended way to go about it since bounding boxes have a limit of 1 block?
-
I'm coding a mod that adds placeable Gunpowder into the game, which behaves similarly to Redstone in terms of placing. I also want it to be flammable, so that it can be used as a fuse. However, the default fire spreading behaviour works well for this - the blocks ignite randomly, and they can burn o...
-
New to forge modding, I'm currently trying to make a client side only mod that basically just reproduces the numbers for entities in FOV and total entity count shown in the F3 toggle (E: # in fov/# total). Basically just trying to take these numbers and display them in the center of the screen (with...
-
Honestly almost 100% this is my fault. I've been adding mods to the New Game modpack, and until today it worked fine. I installed a couple new mods, and started getting crashes whenever I tried to start the game. I deleted all my new ones, but it's still not working. I keep getting "java.lang.R...
-
Every time i try and open the game i get this Description: Rendering overlay com.electronwill.nightconfig.core.io.WritingException: Unsupported value type: class net.minecraft.resources.ResourceLocation at com.electronwill.nightconfig.toml.ValueWriter.write(ValueWriter.java:66...
-
Forge version: 49.1.0 Minecraft version: 1.20.4 Downloads: Changelog: (Direct) Installer: (AdFocus) (Direct) MDK: (AdFocus) (Direct) Downloads page Intro: We're pleased to announce the first recommended build for 1.20.4. Following the spirit of significant...
-
Hello! I`m new to minecraft modding, and have encountered this error. I also am not exactly skilled enough to tell what the issue is from the error log, since im not this technically versed. pastebin.com/NDfWj3qN this is the pastebin of my log, since i didnt want to copy it all into this field. It o...
-
I have problem when i starts minecraft with my mod installed it freezes on loading and on loading world. I don't have anything like datagen that can slow down loading. Only thing i am afraid it's slowing down are models (for blocks). Is itr possible that complex models can slow it down? I have about...
-
I downloaded a fresh forge server and I get this error, I'm new so I'm not sure what this means, please help java.lang.IllegalStateException: Failed to initialize server at net.minecraft.server.MinecraftServer.m_130011_(MinecraftServer.java:638) ~[forge-1.20.4-49.0.50-server.jar!/:?] {re:...
-
1.20.4 (solved) The removal of the getTag() function on items
Podloot posted a topic in Modder Support
Hello, My mod quite heavily relies on the NBT data of an item. Before 1.20.4, this data could be retrieved using ItemStack.getTag(), however this seems to have changed in 1.20.4. Is there any documentation on this change, or does anyone know if the getTag() function could be replaced by somethi... -
So i have a custom ore and, arround the ore, a bunch of randomly placed custom stone blocks should be placed. After applying it, i've found that it causes moderate to extreme world generation lag (new chunks refusing to load after moving for a while, height slices of the same chunk appearing and dis...
-
I followed the documentation (https://docs.minecraftforge.net/en/1.20.x/networking/simpleimpl/) for creating a packet handler. However, as shown in the images below, I have found out that "'net.minecraftforge.network.NetworkRegistry' is marked unstable with @ApiStatus.Internal". Strangely enough, wh...
-
I am trying to register a new Block but in 1.20.4 there seems to be no BlockBehaviour.Properties.copy() anymore, and i have no clue how to use BlockBehaviour.Properties.of() and can't find a documentation for it (other sources stated i can but Material.STONE in it but that doesnt work either). Here...