Jump to content
View in the app

A better way to browse. Learn more.

Forge Forums

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

RelativeCommand

Members
  • Joined

  • Last visited

  1. Hi, I recently (re)tried to learn Modding in 1.18.1 and I have a problem for creating a custom recipe in a custom recipe block. Everything works "great" until i tried to implements all CustomRecipe set (like the block, the be, the screen, container etc.) I think there's a problem when i'm trying to create the json file with the recipe in it. Could you please help me ? Here's my github repo : https://github.com/TiboLatte/ChemistryMod1.18.1 Here's the crash report : [14:47:03] [Worker-Main-4/ERROR] [minecraft/TagLoader]: Couldn't read tag list minecraft:soul_speed_blocks from minecraft:tags/blocks/soul_speed_blocks.json java.io.FileNotFoundException: minecraft:tags/blocks/soul_speed_blocks.json at net.minecraft.server.packs.resources.SimpleReloadableResourceManager.getResources(SimpleReloadableResourceManager.java:76) ~[forge-1.18.1-39.1.1_mapped_official_1.18.1-recomp.jar%2377!/:?] {re:classloading} at net.minecraft.tags.TagLoader.load(TagLoader.java:55) ~[forge-1.18.1-39.1.1_mapped_official_1.18.1-recomp.jar%2377!/:?] {re:classloading} at net.minecraft.tags.TagLoader.loadAndBuild(TagLoader.java:169) ~[forge-1.18.1-39.1.1_mapped_official_1.18.1-recomp.jar%2377!/:?] {re:classloading} at net.minecraft.tags.TagManager.lambda$createLoader$6(TagManager.java:74) ~[forge-1.18.1-39.1.1_mapped_official_1.18.1-recomp.jar%2377!/:?] {re:classloading} at java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1768) [?:?] {} at java.util.concurrent.CompletableFuture$AsyncSupply.exec(CompletableFuture.java:1760) [?:?] {} at java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:373) [?:?] {} at java.util.concurrent.ForkJoinPool$WorkQueue.topLevelExec(ForkJoinPool.java:1182) [?:?] {} at java.util.concurrent.ForkJoinPool.scan(ForkJoinPool.java:1655) [?:?] {} at java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1622) [?:?] {} at java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:165) [?:?] {} [14:47:03] [Worker-Main-4/ERROR] [minecraft/TagLoader]: Couldn't load tag minecraft:azalea_root_replaceable as it is missing following references: #minecraft:lush_ground_replaceable (from Default),#minecraft:terracotta (from Default) It's only a part of the crash report but it's the same template with many other blocks / items Thanks
  2. Hi, I recently (re)tried to learn Modding in 1.18.1 and I have a problem for creating a custom recipe in a custom recipe block. Everything works "great" until i tried to implements all CustomRecipe set (like the block, the be, the screen, container etc.) I think there's a problem when i'm trying to create the json file with the recipe in it. Could you please help me ? Here's my github repo : https://github.com/TiboLatte/ChemistryMod1.18.1 Here's the crash report : [14:47:03] [Worker-Main-4/ERROR] [minecraft/TagLoader]: Couldn't read tag list minecraft:soul_speed_blocks from minecraft:tags/blocks/soul_speed_blocks.json java.io.FileNotFoundException: minecraft:tags/blocks/soul_speed_blocks.json at net.minecraft.server.packs.resources.SimpleReloadableResourceManager.getResources(SimpleReloadableResourceManager.java:76) ~[forge-1.18.1-39.1.1_mapped_official_1.18.1-recomp.jar%2377!/:?] {re:classloading} at net.minecraft.tags.TagLoader.load(TagLoader.java:55) ~[forge-1.18.1-39.1.1_mapped_official_1.18.1-recomp.jar%2377!/:?] {re:classloading} at net.minecraft.tags.TagLoader.loadAndBuild(TagLoader.java:169) ~[forge-1.18.1-39.1.1_mapped_official_1.18.1-recomp.jar%2377!/:?] {re:classloading} at net.minecraft.tags.TagManager.lambda$createLoader$6(TagManager.java:74) ~[forge-1.18.1-39.1.1_mapped_official_1.18.1-recomp.jar%2377!/:?] {re:classloading} at java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1768) [?:?] {} at java.util.concurrent.CompletableFuture$AsyncSupply.exec(CompletableFuture.java:1760) [?:?] {} at java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:373) [?:?] {} at java.util.concurrent.ForkJoinPool$WorkQueue.topLevelExec(ForkJoinPool.java:1182) [?:?] {} at java.util.concurrent.ForkJoinPool.scan(ForkJoinPool.java:1655) [?:?] {} at java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1622) [?:?] {} at java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:165) [?:?] {} [14:47:03] [Worker-Main-4/ERROR] [minecraft/TagLoader]: Couldn't load tag minecraft:azalea_root_replaceable as it is missing following references: #minecraft:lush_ground_replaceable (from Default),#minecraft:terracotta (from Default) It's only a part of the crash report but it's the same template with many other blocks / items Thanks
  3. Nevermind i figured it out, it's just that in my TestTubeRackScreen, this.guiLeft top xSize and Ysize weren't set ^^ Sorry for disturbing you have a good night
  4. Wow, i've just seen your message thank you ! I fixed the "Inventory" and the name that were missing for the GUI and now slots are aligned with the GUI yaay. but i can't figure out how to draw my hotbar ^^' private void drawHotbar(int startPlayerInvX, int slotSizePlus2, int hotbarY, final IItemHandler playerInventoryHandler){ //hotbar //int hotbarY = 170; for(int collumn = 0; collumn < 9 ; ++collumn){ addSlot(playerInventoryHandler, collumn, startPlayerInvX + (collumn* slotSizePlus2), hotbarY); } } Here is what i tried in my "container" class with playerInventoryHandler = new InvWrapper(playerInventory) but still it doesn't work Could you please explain me what's wrong ? Thanks
  5. Hi, I'm planning to make a mod in 1.15.2 so i've followed a tutorial to know how to make a tileEntity with a functional GUI, it worked but somehow it stopped and after copy/paste all the code and adapting it, it still don't work. Here is the GitHub repo :https://github.com/RelativeCommand/chemistrymod/tree/main/OneDrive/Documents/MinecraftModding/ChemistryMod I've noticed that the name i've set for the gui isn't rendering too so maybe it's something from the class where i've set this ? I really don't know what to do right know after "rewriting" the all thing. Here is a pic of the problem Thanks

Important Information

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

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.