Jump to content

RelativeCommand

Members
  • Posts

    8
  • Joined

  • Last visited

RelativeCommand's Achievements

Tree Puncher

Tree Puncher (2/8)

0

Reputation

  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
×
×
  • Create New...

Important Information

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