Jump to content

lmoellendorf

Members
  • Posts

    3
  • Joined

  • Last visited

Everything posted by lmoellendorf

  1. I had a look at the the latest posts in Home > Mod Developer Central > Modder Support. The only answers came from the OPs themselves.
  2. I read Resource Packs Resources Tutorial:Creating a resource pack As I understood I should place my resource pack files in: src/main/resources/ ├── META-INF │ └── mods.toml ├── assets/ ├── pack.mcmeta └── pack.png But in Minecraft, if I open Options > Resource Pack, I cannot find my resource pack. However, if I zip the files above and put the zip into run/resourcepacks/MyFirstMod.zip, my resource pack shows up in Minecraft. I assumed that ./gradlew build would take care of bundling my resource pack. Or am I supposed to zip the files and place them in run/resourcepacks manually?
  3. Hi! I setup and run MC forge MDK on Linux. Reading the code of the example mod, I expect to some entries in the log located in ./run/logs/latest.log. I can see the entries from commonSetup(): forge-1.21.7-57.0.2-mdk $ grep moellendorf -r ./run/logs/latest.log [01Sep2025 11:28:16.980] [Worker-Main-12/INFO] [eu.moellendorf.myfirstmod.MyFirstMod/]: HELLO FROM COMMON SETUP [01Sep2025 11:28:16.980] [Worker-Main-12/INFO] [eu.moellendorf.myfirstmod.MyFirstMod/]: DIRT BLOCK >> minecraft:dirt [01Sep2025 11:28:16.980] [Worker-Main-12/INFO] [eu.moellendorf.myfirstmod.MyFirstMod/]: The magic number is... 42 [01Sep2025 11:28:16.980] [Worker-Main-12/INFO] [eu.moellendorf.myfirstmod.MyFirstMod/]: ITEM >> minecraft:iron_ingot But I cannot see the log entries from onClientSetup(). I expect to see: "HELLO FROM CLIENT SETUP" "MINECRAFT NAME >> " and my user's name (presumably "dev") What am I missing?
×
×
  • Create New...

Important Information

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