Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ATM10 errors I that seem obvious but can't get past #3112

Open
Bluewasabe opened this issue Oct 18, 2024 · 22 comments
Open

ATM10 errors I that seem obvious but can't get past #3112

Bluewasabe opened this issue Oct 18, 2024 · 22 comments

Comments

@Bluewasabe
Copy link

Bluewasabe commented Oct 18, 2024

Sorry if this is a repeat question with all the mods, but I've tried removing/downgrading mods like allthewizard gear and sodium-extra but I can not get this server to work. Also a crash report is not being generated which I am used to so commented out always on for clear end point of logs.

Docker compose file

services:
  mc:
    image: itzg/minecraft-server
    tty: true
    stdin_open: true
    ports:
      - "25568:25565"
    #restart: unless-stopped
    environment:
      CF_API_KEY: <key>
      EULA: "TRUE"
      TYPE: "AUTO_CURSEFORGE"
      CF_PAGE_URL: https://www.curseforge.com/minecraft/modpacks/all-the-mods-10/
      CF_FORCE_SYNCHRONIZE: TRUE
      #CF_EXCLUDE_MODS: |
      #  sodium_extra
      #  sodium
      #  allthewizardgear
      #  betterdungeons
      INIT_MEMORY: 5G
      MAX_MEMORY: 18G
      SEED: <seed>
      OPS: <names>
      KEEP_INVENTORY: "TRUE"
      WHITELIST: "TRUE"
      WHITELIST_USERS: <names>
      ALLOW_FLIGHT: "TRUE"
      SLEEP_PERCENT: "0"  # Add this line to set sleep percent to zero
    volumes:
      # attach the relative directory 'data' to the container's /data path
      - ./data:/data

logs.txt

@itzg
Copy link
Owner

itzg commented Oct 18, 2024

Other people seem to have gotten ATM10 to work such as #3090

For future reference troubleshooting modpacks should not be filed as an enhancement request.

@Bluewasabe
Copy link
Author

Thank you, I will try the extra env variables. Also apologies on the oversight of putting this in enhancement.

@rhullah
Copy link
Contributor

rhullah commented Oct 18, 2024

@Bluewasabe I am currently running ATM10. Did you get yours running?

@Bluewasabe
Copy link
Author

@rhullah I did actually. I think the CF_EXCLUDES_MODS in the link that that itzg posted above was the thing that got me over the hump.

@Ovaru
Copy link

Ovaru commented Oct 20, 2024

Do you know how exactly you fixed the issue?

Unable to get my ATM 10 Server back up after it tried to update

@Bluewasabe
Copy link
Author

Bluewasabe commented Oct 20, 2024 via email

@Ovaru
Copy link

Ovaru commented Oct 20, 2024

Mine is also on 1.1 or at least its supposed to be

@Ovaru
Copy link

Ovaru commented Oct 20, 2024

Just tried a new instillation of a new docker container and I am getting the same error

@Bluewasabe
Copy link
Author

This is the compose that got me through what I was seeing originally on this post

services:
  mc:
    image: itzg/minecraft-server
    tty: true
    stdin_open: true
    ports:
      - "25568:25565"
    restart: unless-stopped
    environment:
      CF_API_KEY: <"key">
      EULA: "TRUE"
      TYPE: "AUTO_CURSEFORGE"
      CF_PAGE_URL: https://www.curseforge.com/minecraft/modpacks/all-the-mods-10/
      CF_FORCE_SYNCHRONIZE: TRUE

     #Can Ignore these comments
      #PATH: /opt/java/openjdk/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
      #JAVA_HOME: /opt/java/openjdk
      #LANG: en_US.UTF-8
      #LANGUAGE: en_US:en
      #LC_ALL: en_US.UTF-8
      #JAVA_VERSION: jdk-21.0.4+7
      
      #I think this fixed the error
      CF_EXCLUDE_MODS: 986380, 520110, 394468, 447673
      INIT_MEMORY: 5G
      MAX_MEMORY: 25G
      VIEW_DISTANCE: "36"
      SEED: <"seed">
      OPS: <"Name">
      KEEP_INVENTORY: "TRUE"
      SERVER_NAME: "All The Mods 10"
      WHITELIST: "TRUE"
      WHITELIST_USERS: <"Name1","Name2">
      ALLOW_FLIGHT: "TRUE"
      SLEEP_PERCENT: "0"  # Add this line to set sleep percent to zero
    volumes:
      # attach the relative directory 'data' to the container's /data path
      - ./data:/data

@rhullah
Copy link
Contributor

rhullah commented Oct 20, 2024

Here is mine that's currently running 1.12, but I don't expect any issues upgrading to 1.13 which was recently released:

services:
  mc:
    image: itzg/minecraft-server
    tty: true
    stdin_open: true
    ports:
      - "45121:25565/tcp"
    volumes:
      - data:/data
      - /etc/timezone:/etc/timezone:ro
    environment:
      EULA: true
      MAX_TICK_TIME: -1
      MOTD: "ATM10"
      MOD_PLATFORM: AUTO_CURSEFORGE
      CF_API_KEY: ${CF_API_KEY}
      CF_SLUG: all-the-mods-10
      CF_FILENAME_MATCHER: "-1.2"
      CF_EXCLUDE_MODS: |
        986380
        dark-mode-everywhere
        iceberg
        just-enough-mekanism-multiblocks
        model-gap-fix
        packmenu
        reeses-sodium-options
        sodium-extra
        toast-control
      MAX_MEMORY: 8G
      DIFFICULTY: hard
      ALLOW_FLIGHT: true
      MAX_PLAYERS: 10
      SPAWN_PROTECTION: 0
      LOG_TIMESTAMP: true
      ENABLE_ROLLING_LOGS: true
volumes:
  data:

@Ovaru
Copy link

Ovaru commented Oct 20, 2024

The post above fixed it I believe I was excluding the mods incorrectly

@chris-ware
Copy link

On the 1.11 version, I'm just getting:Error: Unable to access jarfile with no idea how to debug this, any tips?

I've tried varying combinations on the above to no avail, my current compose file looks like this:

services:
    mc:
        image: itzg/minecraft-server
        tty: true
        stdin_open: true
        ports:
            - "25565:25565"
        environment:
            EULA: true
            CF_API_KEY: ''
            MOD_PLATFORM: AUTO_CURSEFORGE
            CF_SLUG: all-the-mods-10
            MAX_MEMORY: 8G
            ALLOW_FLIGHT: true
            MAX_PLAYERS: 10
            SPAWN_PROTECTION: 0
            LOG_TIMESTAMP: true
            ENABLE_ROLLING_LOGS: true
        volumes:
            - ./world:/data/world
            - ./downloads:/downloads

@Bluewasabe
Copy link
Author

Have you tried the CF exclude mods from either mine or rhullah's examples?

That was the kicker for me.

@rhullah
Copy link
Contributor

rhullah commented Oct 28, 2024

On the 1.11 version, I'm just getting:Error: Unable to access jarfile with no idea how to debug this, any tips?

I've tried varying combinations on the above to no avail...

I am actively running 1.11 with no issues using my compose I shared above.

@chris-ware
Copy link

On the 1.11 version, I'm just getting:Error: Unable to access jarfile with no idea how to debug this, any tips?
I've tried varying combinations on the above to no avail...

I am actively running 1.11 with no issues using my compose I shared above.

I've tried an exact copy of yours and the other one, and various permutations to no avail

@rhullah
Copy link
Contributor

rhullah commented Oct 29, 2024

It sounds kind of like a permission issue but not sure. Can you share your full log and compose file?

@chris-ware
Copy link

I wonder if it is a windows issue. ATM9 ran perfectly fine within windows.

Compose file:

services:
  mc:
    image: itzg/minecraft-server
    tty: true
    stdin_open: true
    ports:
      - "45121:25565/tcp"
    volumes:
      - ./data:/data
      - ./downloads:/downloads
      - /etc/timezone:/etc/timezone:ro
    environment:
      EULA: true
      MAX_TICK_TIME: -1
      MOTD: "ATM10"
      MOD_PLATFORM: AUTO_CURSEFORGE
      CF_API_KEY: ${CF_API_KEY}
      CF_SLUG: all-the-mods-10
      CF_FILENAME_MATCHER: "-1.2"
      CF_EXCLUDE_MODS: |
        986380
        dark-mode-everywhere
        iceberg
        just-enough-mekanism-multiblocks
        model-gap-fix
        packmenu
        reeses-sodium-options
        sodium-extra
        toast-control
      MAX_MEMORY: 8G
      DIFFICULTY: hard
      ALLOW_FLIGHT: true
      MAX_PLAYERS: 10
      SPAWN_PROTECTION: 0
      LOG_TIMESTAMP: true
      ENABLE_ROLLING_LOGS: true

Logs

2024-10-29 17:28:11 [init] 2024-10-29 17:28:11+00:00 Changing ownership of /data to 1000 ...
2024-10-29 17:28:11 [init] 2024-10-29 17:28:11+00:00 Running as uid=1000 gid=1000 with /data as 'drwxrwxrwx 1 1000 1000 4096 Oct 29 17:28 /data'
2024-10-29 17:28:19 [mc-image-helper] 17:28:19.237 INFO  : Processing modpack 'All the Mods 10-1.2' (all-the-mods-10) @ 925200:5823260
2024-10-29 17:28:20 [mc-image-helper] 17:28:20.285 INFO  : Excluding mod file 'Searchables' (searchables) due to configuration
2024-10-29 17:28:20 [mc-image-helper] 17:28:20.398 INFO  : Mod file mods/Structory_1.21.x_v1.3.6.jar obtained from downloads repo
2024-10-29 17:28:20 [mc-image-helper] 17:28:20.409 INFO  : Excluding mod file 'Legendary Tooltips [Neo/Forge]' (legendary-tooltips) due to configuration
2024-10-29 17:28:20 [mc-image-helper] 17:28:20.413 INFO  : Mod file mods/bwncr-neoforge-1.21.1-3.20.0.jar obtained from downloads repo
2024-10-29 17:28:20 [mc-image-helper] 17:28:20.527 INFO  : Excluding mod file 'AppleSkin' (appleskin) due to configuration
2024-10-29 17:28:20 [mc-image-helper] 17:28:20.617 INFO  : Downloaded mod file mods/jumpboat-1.21.0-1.0.5.jar
2024-10-29 17:28:20 [mc-image-helper] 17:28:20.693 INFO  : Downloaded mod file mods/justenoughbreeding-neoforge-1.21.x-1.4.0.jar
2024-10-29 17:28:20 [mc-image-helper] 17:28:20.700 INFO  : Excluding mod file 'Extreme sound muffler - (Neo)Forge' (extreme-sound-muffler) due to configuration
2024-10-29 17:28:20 [mc-image-helper] 17:28:20.804 INFO  : Downloaded mod file mods/Oh-The-Trees-Youll-Grow-neoforge-1.21.1-5.0.3.jar
2024-10-29 17:28:20 [mc-image-helper] 17:28:20.862 INFO  : Downloaded mod file mods/ExplorersCompass-1.21.1-3.0.3-neoforge.jar
2024-10-29 17:28:20 [mc-image-helper] 17:28:20.874 INFO  : Excluding mod file 'Better Advancements' (better-advancements) due to configuration
2024-10-29 17:28:20 [mc-image-helper] 17:28:20.992 INFO  : Downloaded mod file mods/polymorph-neoforge-1.0.6+1.21.1.jar
2024-10-29 17:28:21 [mc-image-helper] 17:28:21.001 INFO  : Downloaded mod file mods/GatewaysToEternity-1.21.1-5.0.1.jar
2024-10-29 17:28:21 [mc-image-helper] 17:28:21.027 INFO  : Downloaded mod file mods/GravitationalModulatingAdditionalUnit-1.21.1-6.0.jar
2024-10-29 17:28:21 [mc-image-helper] 17:28:21.042 INFO  : Downloaded mod file mods/AppliedFlux-1.21-2.0.1-neoforge.jar
2024-10-29 17:28:21 [mc-image-helper] 17:28:21.079 INFO  : Downloaded mod file mods/DungeonCrawl-NeoForge-1.21-2.3.14.jar
2024-10-29 17:28:21 [mc-image-helper] 17:28:21.082 INFO  : Excluding mod file 'Mouse Tweaks' (mouse-tweaks) due to configuration
2024-10-29 17:28:21 [mc-image-helper] 17:28:21.155 INFO  : Downloaded mod file mods/crashutilities-9.0.1.jar
2024-10-29 17:28:21 [mc-image-helper] 17:28:21.198 INFO  : Downloaded mod file mods/sophisticatedbackpacks-1.21-3.20.17.1113.jar
2024-10-29 17:28:21 [mc-image-helper] 17:28:21.201 INFO  : Downloaded mod file mods/YungsBetterJungleTemples-1.21.1-NeoForge-3.1.1.jar
2024-10-29 17:28:21 [mc-image-helper] 17:28:21.210 INFO  : Downloaded mod file mods/framework-neoforge-1.21.1-0.9.3.jar
2024-10-29 17:28:21 [mc-image-helper] 17:28:21.223 INFO  : Downloaded mod file mods/rarcompat-1.21-0.4.1.jar
2024-10-29 17:28:21 [mc-image-helper] 17:28:21.265 INFO  : Downloaded mod file mods/ae2ct-1.21.1-1.0.3-beta.jar
2024-10-29 17:28:21 [mc-image-helper] 17:28:21.276 INFO  : Excluding mod file 'Iris Shaders' (irisshaders) due to configuration
2024-10-29 17:28:21 [mc-image-helper] 17:28:21.285 INFO  : Downloaded mod file mods/productivetrees-1.21.1-0.5.4.jar
2024-10-29 17:28:21 [mc-image-helper] 17:28:21.291 INFO  : Downloaded mod file mods/MekanismTools-1.21.1-10.7.7.64.jar
2024-10-29 17:28:21 [mc-image-helper] 17:28:21.337 INFO  : Downloaded mod file mods/alltheleaks-0.0.10-beta.jar
2024-10-29 17:28:21 [mc-image-helper] 17:28:21.351 INFO  : Downloaded mod file mods/cupboard-1.21-2.8.jar
2024-10-29 17:28:21 [mc-image-helper] 17:28:21.392 INFO  : Downloaded mod file mods/AE2NetworkAnalyzer-1.21-2.0.0-neoforge.jar
2024-10-29 17:28:21 [mc-image-helper] 17:28:21.465 INFO  : Excluding mod file 'Model Gap Fix' (model-gap-fix) due to configuration
2024-10-29 17:28:21 [mc-image-helper] 17:28:21.517 INFO  : Downloaded mod file mods/cloth-config-15.0.140-neoforge.jar
2024-10-29 17:28:21 [mc-image-helper] 17:28:21.564 INFO  : Mod file mods/antiblocksrechiseled-neo-0.10.4.jar obtained from downloads repo
2024-10-29 17:28:21 [mc-image-helper] 17:28:21.580 INFO  : Downloaded mod file mods/mcw-furniture-3.3.0-mc1.21.1neoforge.jar
2024-10-29 17:28:21 [mc-image-helper] 17:28:21.610 INFO  : Downloaded mod file mods/ftb-xmod-compat-neoforge-21.1.0.jar
2024-10-29 17:28:21 [mc-image-helper] 17:28:21.635 INFO  : Mod file mods/tesseract-neoforge-1.5.4-beta-1.21.1.jar obtained from downloads repo
2024-10-29 17:28:21 [mc-image-helper] 17:28:21.649 INFO  : Excluding mod file 'PackMenu' (packmenu) due to configuration
2024-10-29 17:28:21 [mc-image-helper] 17:28:21.657 INFO  : Downloaded mod file mods/caelus-neoforge-7.0.1+1.21.1.jar
2024-10-29 17:28:21 [mc-image-helper] 17:28:21.701 INFO  : Downloaded mod file mods/reap-neoforge-1.21.1-1.1.2.jar
2024-10-29 17:28:21 [mc-image-helper] 17:28:21.712 INFO  : Downloaded mod file mods/lithostitched-neoforge-1.21-1.3.1a.jar
2024-10-29 17:28:21 [mc-image-helper] 17:28:21.716 INFO  : Downloaded mod file mods/ironfurnaces-neoforge-1.21.1-4.2.6.jar
2024-10-29 17:28:21 [mc-image-helper] 17:28:21.721 INFO  : Downloaded mod file mods/almostunified-neoforge-1.21.1-1.2.0.jar
2024-10-29 17:28:21 [mc-image-helper] 17:28:21.814 INFO  : Downloaded mod file mods/ApothicAttributes-1.21.1-2.4.0.jar
2024-10-29 17:28:21 [mc-image-helper] 17:28:21.830 INFO  : Excluding mod file 'Controlling' (controlling) due to configuration
2024-10-29 17:28:21 [mc-image-helper] 17:28:21.862 INFO  : Downloaded mod file mods/common-6.1.0.jar
2024-10-29 17:28:21 [mc-image-helper] 17:28:21.876 INFO  : Downloaded mod file mods/charginggadgets-1.14.1.jar
2024-10-29 17:28:22 [mc-image-helper] 17:28:22.013 INFO  : Downloaded mod file mods/YungsBetterOceanMonuments-1.21.1-NeoForge-4.1.1.jar
2024-10-29 17:28:22 [mc-image-helper] 17:28:22.014 INFO  : Downloaded mod file mods/YungsBetterMineshafts-1.21.1-NeoForge-5.1.1.jar
2024-10-29 17:28:22 [mc-image-helper] 17:28:22.027 INFO  : Downloaded mod file mods/resourcefullib-neoforge-1.21-3.0.11.jar
2024-10-29 17:28:22 [mc-image-helper] 17:28:22.042 INFO  : Excluding mod file 'Just Enough Mekanism Multiblocks' (just-enough-mekanism-multiblocks) due to configuration
2024-10-29 17:28:22 [mc-image-helper] 17:28:22.055 INFO  : Downloaded mod file mods/itemcollectors-1.1.10-neoforge-mc1.21.jar
2024-10-29 17:28:22 [mc-image-helper] 17:28:22.082 INFO  : Downloaded mod file mods/trashcans-1.0.18b-neoforge-mc1.21.jar
2024-10-29 17:28:22 [mc-image-helper] 17:28:22.113 INFO  : Downloaded mod file mods/laserio-1.9.11.jar
2024-10-29 17:28:22 [mc-image-helper] 17:28:22.320 INFO  : Downloaded mod file mods/YungsExtras-1.21.1-NeoForge-5.1.1.jar
2024-10-29 17:28:22 [mc-image-helper] 17:28:22.355 INFO  : Downloaded mod file mods/storagedelight-24.09.11-1.21-neoforge.jar
2024-10-29 17:28:22 [mc-image-helper] 17:28:22.400 INFO  : Downloaded mod file mods/mcw-doors-1.1.1-mc1.21.1neoforge.jar
2024-10-29 17:28:22 [mc-image-helper] 17:28:22.404 INFO  : Downloaded mod file mods/heyberryshutup-1.21.0-2.0.4.jar
2024-10-29 17:28:22 [mc-image-helper] 17:28:22.424 INFO  : Downloaded mod file mods/Explorify v1.6.2 f10-48.jar
2024-10-29 17:28:22 [mc-image-helper] 17:28:22.437 INFO  : Downloaded mod file mods/mob_grinding_utils-1.1.5+mc1.21.1.jar
2024-10-29 17:28:22 [mc-image-helper] 17:28:22.453 INFO  : Downloaded mod file mods/mininggadgets-1.18.6.jar
2024-10-29 17:28:22 [mc-image-helper] 17:28:22.469 INFO  : Downloaded mod file mods/everythingcopper-1.21.1-2.3.8.jar
2024-10-29 17:28:22 [mc-image-helper] 17:28:22.486 INFO  : Downloaded mod file mods/redstonepen-1.21-neoforge-1.11.41.jar
2024-10-29 17:28:22 [mc-image-helper] 17:28:22.521 INFO  : Downloaded mod file mods/modonomicon-1.21.1-neoforge-1.108.1.jar
2024-10-29 17:28:22 [mc-image-helper] 17:28:22.564 INFO  : Downloaded mod file mods/cosmeticarmorreworked-1.21.1-v1-neoforge.jar
2024-10-29 17:28:22 [mc-image-helper] 17:28:22.609 INFO  : Excluding mod file 'Enchantment Descriptions' (enchantment-descriptions) due to configuration
2024-10-29 17:28:22 [mc-image-helper] 17:28:22.663 INFO  : Downloaded mod file mods/craftingtweaks-neoforge-1.21.1-21.1.2.jar
2024-10-29 17:28:22 [mc-image-helper] 17:28:22.674 INFO  : Downloaded mod file mods/novillagerdm-1.21.1-6.0.0.jar
2024-10-29 17:28:22 [mc-image-helper] 17:28:22.697 INFO  : Downloaded mod file mods/pylons-1.21.1-5.0.2.jar
2024-10-29 17:28:22 [mc-image-helper] 17:28:22.742 INFO  : Downloaded mod file mods/ToolBelt-1.21-2.2.3.jar
2024-10-29 17:28:22 [mc-image-helper] 17:28:22.998 INFO  : Downloaded mod file mods/megacells-4.0.2.jar
2024-10-29 17:28:23 [mc-image-helper] 17:28:23.010 INFO  : Downloaded mod file mods/MysticalAgradditions-1.21.1-8.0.1.jar
2024-10-29 17:28:23 [mc-image-helper] 17:28:23.015 INFO  : Downloaded mod file mods/rechiseled-1.1.6a-neoforge-mc1.21.jar
2024-10-29 17:28:23 [mc-image-helper] 17:28:23.039 INFO  : Downloaded mod file mods/WitherSkeletonTweaks-1.21.1-10.0.2.jar
2024-10-29 17:28:23 [mc-image-helper] 17:28:23.051 INFO  : Downloaded mod file mods/findme-3.3.1-neoforge.jar
2024-10-29 17:28:23 [mc-image-helper] 17:28:23.062 INFO  : Downloaded mod file mods/NaturesCompass-1.21.1-3.0.3-neoforge.jar
2024-10-29 17:28:23 [mc-image-helper] 17:28:23.163 INFO  : Excluding mod file 'Sodium Extra' (sodium-extra) due to configuration
2024-10-29 17:28:23 [mc-image-helper] 17:28:23.370 INFO  : Downloaded mod file mods/curios-neoforge-9.1.4+1.21.0.jar
2024-10-29 17:28:23 [mc-image-helper] 17:28:23.380 INFO  : Downloaded mod file mods/invtweaks-1.21.0-1.1.4.jar
2024-10-29 17:28:23 [mc-image-helper] 17:28:23.425 INFO  : Excluding mod file 'Konkrete [Forge/NeoForge]' (konkrete) due to configuration
2024-10-29 17:28:23 [mc-image-helper] 17:28:23.509 INFO  : Downloaded mod file mods/Jade-1.21.1-NeoForge-15.7.1.jar
2024-10-29 17:28:23 [mc-image-helper] 17:28:23.903 INFO  : Downloaded mod file mods/ars_additions-1.21.0-21.0.2.jar
2024-10-29 17:28:23 [mc-image-helper] 17:28:23.945 INFO  : Downloaded mod file mods/SimpleBackups-1.21-4.0.7.jar
2024-10-29 17:28:24 [mc-image-helper] 17:28:24.055 INFO  : Downloaded mod file mods/simplylight-1.4.6+1.21-b53.jar
2024-10-29 17:28:24 [mc-image-helper] 17:28:24.096 INFO  : Downloaded mod file mods/allthearcanistgear-1.21.1-21.0.3.jar
2024-10-29 17:28:24 [mc-image-helper] 17:28:24.104 INFO  : Downloaded mod file mods/YungsBetterStrongholds-1.21.1-NeoForge-5.1.2.jar
2024-10-29 17:28:24 [mc-image-helper] 17:28:24.226 INFO  : Downloaded mod file mods/getittogetherdrops-neoforge-1.21-1.3.2.jar
2024-10-29 17:28:24 [mc-image-helper] 17:28:24.243 INFO  : Excluding mod file 'Iceberg [Neo/Forge]' (iceberg) due to configuration
2024-10-29 17:28:24 [mc-image-helper] 17:28:24.264 INFO  : Downloaded mod file mods/EvilCraft-1.21.1-neoforge-1.2.58.jar
2024-10-29 17:28:24 [mc-image-helper] 17:28:24.389 INFO  : Downloaded mod file mods/kubejs-neoforge-2101.7.1-build.181.jar
2024-10-29 17:28:24 [mc-image-helper] 17:28:24.451 INFO  : Mod file mods/extended-industrialization-1.9.4-beta-1.21.1.jar obtained from downloads repo
2024-10-29 17:28:24 [mc-image-helper] 17:28:24.457 INFO  : Mod file mods/entityculling-neoforge-1.7.0-mc1.21.jar obtained from downloads repo
2024-10-29 17:28:24 [mc-image-helper] 17:28:24.513 INFO  : Downloaded mod file mods/UndergroundVillages-neoforge-1.21-4.0.0.jar
2024-10-29 17:28:24 [mc-image-helper] 17:28:24.518 INFO  : Downloaded mod file mods/justdirethings-1.4.4.jar
2024-10-29 17:28:24 [mc-image-helper] 17:28:24.625 INFO  : Downloaded mod file mods/Powah-6.1.2.jar
2024-10-29 17:28:24 [mc-image-helper] 17:28:24.631 INFO  : Downloaded mod file mods/Clumps-neoforge-1.21.1-19.0.0.1.jar
2024-10-29 17:28:24 [mc-image-helper] 17:28:24.664 INFO  : Downloaded mod file mods/pocketstorage-1.2.4+1.21.1-b40.jar
2024-10-29 17:28:24 [mc-image-helper] 17:28:24.710 INFO  : Downloaded mod file mods/EdivadLib-1.21-3.0.0.jar
2024-10-29 17:28:24 [mc-image-helper] 17:28:24.777 INFO  : Excluding mod file 'Just Zoom' (just-zoom) due to configuration
2024-10-29 17:28:24 [mc-image-helper] 17:28:24.796 INFO  : Downloaded mod file mods/Placebo-1.21.1-9.5.3.jar
2024-10-29 17:28:25 [mc-image-helper] 17:28:25.044 INFO  : Downloaded mod file mods/ftb-ranks-neoforge-2100.1.0.jar
2024-10-29 17:28:25 [mc-image-helper] 17:28:25.090 INFO  : Downloaded mod file mods/geckolib-neoforge-1.21.1-4.6.6.jar
2024-10-29 17:28:25 [mc-image-helper] 17:28:25.150 INFO  : Mod file mods/Structory_Towers_1.21.x_v1.0.8.jar obtained from downloads repo
2024-10-29 17:28:25 [mc-image-helper] 17:28:25.217 INFO  : Downloaded mod file mods/Nullscape_1.21.x_v1.2.8.jar
2024-10-29 17:28:25 [mc-image-helper] 17:28:25.297 INFO  : Downloaded mod file mods/YungsBetterDungeons-1.21.1-NeoForge-5.1.2.jar
2024-10-29 17:28:25 [mc-image-helper] 17:28:25.299 INFO  : Downloaded mod file mods/occultism-1.21.1-neoforge-1.161.4.jar
2024-10-29 17:28:25 [mc-image-helper] 17:28:25.315 INFO  : Downloaded mod file mods/IntegratedDynamics-1.21.1-neoforge-1.23.9.jar
2024-10-29 17:28:25 [mc-image-helper] 17:28:25.321 INFO  : Downloaded mod file mods/cyclopscore-1.21.1-neoforge-1.25.1-630.jar
2024-10-29 17:28:25 [mc-image-helper] 17:28:25.359 INFO  : Downloaded mod file mods/NaturesAura-41.2.jar
2024-10-29 17:28:25 [mc-image-helper] 17:28:25.387 INFO  : Downloaded mod file mods/letmedespawn-1.21.x-neoforge-1.4.4.jar
2024-10-29 17:28:25 [mc-image-helper] 17:28:25.403 INFO  : Excluding mod file 'Overloaded Armor Bar' (overloaded-armor-bar) due to configuration
2024-10-29 17:28:25 [mc-image-helper] 17:28:25.419 INFO  : Downloaded mod file mods/ae2jeiintegration-1.2.0.jar
2024-10-29 17:28:25 [mc-image-helper] 17:28:25.427 INFO  : Downloaded mod file mods/relics-1.21-0.9.1.0.jar
2024-10-29 17:28:25 [mc-image-helper] 17:28:25.431 INFO  : Downloaded mod file mods/noisium-neoforge-2.3.0+mc1.21-1.21.1.jar
2024-10-29 17:28:25 [mc-image-helper] 17:28:25.482 INFO  : Downloaded mod file mods/FastWorkbench-1.21-9.1.2.jar
2024-10-29 17:28:25 [mc-image-helper] 17:28:25.509 INFO  : Downloaded mod file mods/rangedpumps-1.3.0.jar
2024-10-29 17:28:25 [mc-image-helper] 17:28:25.531 INFO  : Downloaded mod file mods/chisel-neoforge-1.21.1-1.8.1.jar
2024-10-29 17:28:25 [mc-image-helper] 17:28:25.555 INFO  : Downloaded mod file mods/crafting_on_a_stick-1.21.0.1.jar
2024-10-29 17:28:25 [mc-image-helper] 17:28:25.572 INFO  : Excluding mod file 'Reese's Sodium Options' (reeses-sodium-options) due to configuration
2024-10-29 17:28:25 [mc-image-helper] 17:28:25.597 INFO  : Downloaded mod file mods/fuelgoeshere-1.21.0-1.1.0.jar
2024-10-29 17:28:25 [mc-image-helper] 17:28:25.598 INFO  : Downloaded mod file mods/connectedglass-1.1.12-neoforge-mc1.21.jar
2024-10-29 17:28:25 [mc-image-helper] 17:28:25.746 INFO  : Excluding mod file 'Dark Mode Everywhere' (dark-mode-everywhere) due to configuration
2024-10-29 17:28:25 [mc-image-helper] 17:28:25.824 INFO  : Downloaded mod file mods/mostructures-neoforge-1.5.0+1.21.jar
2024-10-29 17:28:25 [mc-image-helper] 17:28:25.844 INFO  : Downloaded mod file mods/cleanswing-1.7.jar
2024-10-29 17:28:25 [mc-image-helper] 17:28:25.901 INFO  : Downloaded mod file mods/prickle-neoforge-1.21.1-21.1.4.jar
2024-10-29 17:28:25 [mc-image-helper] 17:28:25.923 INFO  : Downloaded mod file mods/factory_blocks+neoforge+1.21-1.3.2.jar
2024-10-29 17:28:25 [mc-image-helper] 17:28:25.967 INFO  : Excluding mod file 'Sodium' (sodium) due to configuration
2024-10-29 17:28:26 [mc-image-helper] 17:28:26.003 INFO  : Downloaded mod file mods/ZeroCore2-1.21.1-2.4.11.jar
2024-10-29 17:28:26 [mc-image-helper] 17:28:26.027 INFO  : Downloaded mod file mods/AdditionalEnchantedMiner-1.21.1-neoforge-21.1.108.jar
2024-10-29 17:28:26 [mc-image-helper] 17:28:26.227 INFO  : Downloaded mod file mods/mcw-paths-1.0.5-1.21.1neoforge.jar
2024-10-29 17:28:26 [mc-image-helper] 17:28:26.258 INFO  : Downloaded mod file mods/DimStorage-1.21-9.0.2.jar
2024-10-29 17:28:26 [mc-image-helper] 17:28:26.269 INFO  : Downloaded mod file mods/functionalstorage-1.21.1-1.3.3.jar
2024-10-29 17:28:26 [mc-image-helper] 17:28:26.344 INFO  : Downloaded mod file mods/t_and_t-neoforge-fabric-1.13.2.jar
2024-10-29 17:28:26 [mc-image-helper] 17:28:26.356 INFO  : Downloaded mod file mods/structurize-1.0.752-1.21.1-snapshot.jar
2024-10-29 17:28:26 [mc-image-helper] 17:28:26.546 INFO  : Mod file mods/imfast-1.0.1.jar obtained from downloads repo
2024-10-29 17:28:26 [mc-image-helper] 17:28:26.572 INFO  : Excluding mod file 'Toast Control' (toast-control) due to configuration
2024-10-29 17:28:26 [mc-image-helper] 17:28:26.653 INFO  : Downloaded mod file mods/YungsApi-1.21.1-NeoForge-5.1.2.jar
2024-10-29 17:28:26 [mc-image-helper] 17:28:26.674 INFO  : Downloaded mod file mods/alltheores-2.3.6_neoforge_1.21.1.jar
2024-10-29 17:28:26 [mc-image-helper] 17:28:26.709 INFO  : Downloaded mod file mods/EpheroLib-1.21-NEO-FORGE-1.2.0.jar
2024-10-29 17:28:26 [mc-image-helper] 17:28:26.732 INFO  : Downloaded mod file mods/Super Factory Manager-1.21.1-4.19.0.jar
2024-10-29 17:28:26 [mc-image-helper] 17:28:26.791 INFO  : Downloaded mod file mods/xtonesreworked-1.1.0-NF-1.21_21.0.167.jar
2024-10-29 17:28:26 [mc-image-helper] 17:28:26.834 INFO  : Downloaded mod file mods/ApothicSpawners-1.21.1-1.1.0.jar
2024-10-29 17:28:26 [mc-image-helper] 17:28:26.834 INFO  : Downloaded mod file mods/endermanoverhaul-neoforge-1.21-2.0.0.jar
2024-10-29 17:28:26 [mc-image-helper] 17:28:26.842 INFO  : Downloaded mod file mods/mcw-lights-1.1.1-mc1.21.1neoforge.jar
2024-10-29 17:28:26 [mc-image-helper] 17:28:26.858 INFO  : Downloaded mod file mods/journeymap-neoforge-1.21.1-6.0.0-beta.28.jar
2024-10-29 17:28:26 [mc-image-helper] 17:28:26.872 INFO  : Downloaded mod file mods/valhelsia_core-neoforge-1.21-1.1.3.jar
2024-10-29 17:28:26 [mc-image-helper] 17:28:26.888 INFO  : Downloaded mod file mods/cookingforblockheads-neoforge-1.21.1-21.1.2.jar
2024-10-29 17:28:26 [mc-image-helper] 17:28:26.905 INFO  : Downloaded mod file mods/UndergroundBunkers-1.0.4-1.21.x-neoforge.jar
2024-10-29 17:28:26 [mc-image-helper] 17:28:26.905 INFO  : Downloaded mod file mods/netherportalfix-neoforge-1.21.1-21.1.1.jar
2024-10-29 17:28:26 [mc-image-helper] 17:28:26.932 INFO  : Downloaded mod file mods/aeinfinitybooster-neoforge-1.21-1.0.1.38.jar
2024-10-29 17:28:26 [mc-image-helper] 17:28:26.946 INFO  : Downloaded mod file mods/Glassential-renewed-neoforge-1.21.1-3.1.2.jar
2024-10-29 17:28:26 [mc-image-helper] 17:28:26.947 INFO  : Downloaded mod file mods/almanac-1.21.x-neoforge-1.0.2.jar
2024-10-29 17:28:27 [mc-image-helper] 17:28:27.001 INFO  : Downloaded mod file mods/easy-villagers-neoforge-1.21.1-1.1.23.jar
2024-10-29 17:28:27 [mc-image-helper] 17:28:27.064 INFO  : Downloaded mod file mods/cc-tweaked-1.21.1-forge-1.113.1.jar
2024-10-29 17:28:27 [mc-image-helper] 17:28:27.069 INFO  : Downloaded mod file mods/MysticalAgriculture-1.21.1-8.0.7.jar
2024-10-29 17:28:27 [mc-image-helper] 17:28:27.074 INFO  : Downloaded mod file mods/OctoLib-NEOFORGE-0.4.2.jar
2024-10-29 17:28:27 [mc-image-helper] 17:28:27.093 INFO  : Downloaded mod file mods/theurgy-1.21.1-neoforge-1.56.0.jar
2024-10-29 17:28:27 [mc-image-helper] 17:28:27.099 INFO  : Downloaded mod file mods/repeatable_trial_vaults-neoforge-1.21-1.0.2.jar
2024-10-29 17:28:27 [mc-image-helper] 17:28:27.161 INFO  : Downloaded mod file mods/Glodium-1.21-2.2-neoforge.jar
2024-10-29 17:28:27 [mc-image-helper] 17:28:27.166 INFO  : Downloaded mod file mods/ae2importexportcard-1.21-1.4.0.jar
2024-10-29 17:28:27 [mc-image-helper] 17:28:27.184 INFO  : Downloaded mod file mods/Patchouli-1.21-87-NEOFORGE.jar
2024-10-29 17:28:27 [mc-image-helper] 17:28:27.209 INFO  : Downloaded mod file mods/mcw-bridges-3.0.0-mc1.21.1neoforge.jar
2024-10-29 17:28:27 [mc-image-helper] 17:28:27.224 INFO  : Downloaded mod file mods/YungsBetterDesertTemples-1.21.1-NeoForge-4.1.2.jar
2024-10-29 17:28:27 [mc-image-helper] 17:28:27.290 INFO  : Downloaded mod file mods/ferritecore-7.0.0-neoforge.jar
2024-10-29 17:28:27 [mc-image-helper] 17:28:27.320 INFO  : Downloaded mod file mods/Applied-Mekanistics-1.6.1.jar
2024-10-29 17:28:27 [mc-image-helper] 17:28:27.327 INFO  : Downloaded mod file mods/villagesandpillages-neoforge-mc1.21.1-1.0.1.jar
2024-10-29 17:28:27 [mc-image-helper] 17:28:27.343 INFO  : Downloaded mod file mods/ftb-teams-neoforge-2101.1.0.jar
2024-10-29 17:28:27 [mc-image-helper] 17:28:27.345 INFO  : Downloaded mod file mods/jamlib-neoforge-1.0.11+1.21.jar
2024-10-29 17:28:27 [mc-image-helper] 17:28:27.524 INFO  : Downloaded mod file mods/CommonCapabilities-1.21.1-neoforge-2.9.5.jar
2024-10-29 17:28:27 [mc-image-helper] 17:28:27.525 INFO  : Downloaded mod file mods/mcw-trapdoors-1.1.3-mc1.21.1neoforge.jar
2024-10-29 17:28:27 [mc-image-helper] 17:28:27.542 INFO  : Downloaded mod file mods/Aquaculture-1.21.1-2.7.10.jar
2024-10-29 17:28:27 [mc-image-helper] 17:28:27.548 INFO  : Downloaded mod file mods/NoChatReports-NEOFORGE-1.21-v2.8.0.jar
2024-10-29 17:28:27 [mc-image-helper] 17:28:27.778 INFO  : Downloaded mod file mods/illagerwarship-1.0.0-neoforge-1.21.1.jar
2024-10-29 17:28:27 [mc-image-helper] 17:28:27.791 INFO  : Downloaded mod file mods/shrink-2.0.0.43-neoforge.jar
2024-10-29 17:28:27 [mc-image-helper] 17:28:27.843 INFO  : Downloaded mod file mods/dummmmmmy-1.21-2.0.6-neoforge.jar
2024-10-29 17:28:27 [mc-image-helper] 17:28:27.857 INFO  : Downloaded mod file mods/additional_lights-neoforge-1.21-2.1.9.jar
2024-10-29 17:28:27 [mc-image-helper] 17:28:27.904 INFO  : Downloaded mod file mods/wits-1.3.0+1.21-neoforge.jar
2024-10-29 17:28:27 [mc-image-helper] 17:28:27.909 INFO  : Downloaded mod file mods/artifacts-neoforge-12.0.5.jar
2024-10-29 17:28:27 [mc-image-helper] 17:28:27.985 INFO  : Downloaded mod file mods/MysticalCustomization-1.21.1-6.0.0.jar
2024-10-29 17:28:28 [mc-image-helper] 17:28:28.104 INFO  : Downloaded mod file mods/HostileNeuralNetworks-1.21.1-6.0.1.jar
2024-10-29 17:28:28 [mc-image-helper] 17:28:28.170 INFO  : Downloaded mod file mods/ExtendedAE-1.21-2.1.1-neoforge.jar
2024-10-29 17:28:28 [mc-image-helper] 17:28:28.188 INFO  : Downloaded mod file mods/jei-1.21.1-neoforge-19.21.0.246.jar
2024-10-29 17:28:28 [mc-image-helper] 17:28:28.196 INFO  : Downloaded mod file mods/Oh-The-Biomes-Weve-Gone-NeoForge-2.1.5.jar
2024-10-29 17:28:28 [mc-image-helper] 17:28:28.209 INFO  : Downloaded mod file mods/moredragoneggs-5.0.jar
2024-10-29 17:28:28 [mc-image-helper] 17:28:28.238 INFO  : Downloaded mod file mods/balm-neoforge-1.21.1-21.0.20.jar
2024-10-29 17:28:28 [mc-image-helper] 17:28:28.243 INFO  : Downloaded mod file mods/ars_ocultas-1.21.0-2.0.1.jar
2024-10-29 17:28:28 [mc-image-helper] 17:28:28.255 INFO  : Downloaded mod file mods/xycraft_override-0.7.45.jar
2024-10-29 17:28:28 [mc-image-helper] 17:28:28.575 INFO  : Downloaded mod file mods/YungsBetterEndIsland-1.21.1-NeoForge-3.1.1.jar
2024-10-29 17:28:28 [mc-image-helper] 17:28:28.611 INFO  : Downloaded mod file mods/mcw-roofs-2.3.1-mc1.21.1neoforge.jar
2024-10-29 17:28:28 [mc-image-helper] 17:28:28.635 INFO  : Downloaded mod file mods/moonlight-1.21-2.14.33-neoforge.jar
2024-10-29 17:28:28 [mc-image-helper] 17:28:28.700 INFO  : Downloaded mod file mods/domum_ornamentum-1.0.204-1.21.1-snapshot.jar
2024-10-29 17:28:28 [mc-image-helper] 17:28:28.790 INFO  : Downloaded mod file mods/entangled-1.3.19a-neoforge-mc1.21.jar
2024-10-29 17:28:28 [mc-image-helper] 17:28:28.938 INFO  : Downloaded mod file mods/hyperbox-1.21-6.0.0.1.jar
2024-10-29 17:28:29 [mc-image-helper] 17:28:29.003 INFO  : Downloaded mod file mods/simplemagnets-1.1.12-neoforge-mc1.21.jar
2024-10-29 17:28:29 [mc-image-helper] 17:28:29.013 INFO  : Downloaded mod file mods/torchmaster-neoforge-1.21.1-21.1.3-beta.jar
2024-10-29 17:28:29 [mc-image-helper] 17:28:29.071 INFO  : Downloaded mod file mods/supermartijn642configlib-1.1.8-neoforge-mc1.21.jar
2024-10-29 17:28:29 [mc-image-helper] 17:28:29.115 INFO  : Downloaded mod file mods/cristellib-neoforge-1.2.8.jar
2024-10-29 17:28:29 [mc-image-helper] 17:28:29.168 INFO  : Downloaded mod file mods/IronJetpacks-1.21.1-8.0.4.jar
2024-10-29 17:28:29 [mc-image-helper] 17:28:29.264 INFO  : Downloaded mod file mods/[1.21.1] SecurityCraft v1.9.11.jar
2024-10-29 17:28:29 [mc-image-helper] 17:28:29.370 INFO  : Downloaded mod file mods/ftb-library-neoforge-2101.1.4.jar
2024-10-29 17:28:29 [mc-image-helper] 17:28:29.472 INFO  : Downloaded mod file mods/showcaseitem-1.21-1.0.0.jar
2024-10-29 17:28:29 [mc-image-helper] 17:28:29.538 INFO  : Downloaded mod file mods/sussysniffers-1.21.1-0.1.1.jar
2024-10-29 17:28:29 [mc-image-helper] 17:28:29.566 INFO  : Downloaded mod file mods/industrialforegoing-1.21-3.6.15.jar
2024-10-29 17:28:29 [mc-image-helper] 17:28:29.594 INFO  : Downloaded mod file mods/player-animation-lib-forge-2.0.0-alpha1+1.21.jar
2024-10-29 17:28:29 [mc-image-helper] 17:28:29.652 INFO  : Downloaded mod file mods/FastFurnace-1.21.1-9.0.0.jar
2024-10-29 17:28:29 [mc-image-helper] 17:28:29.714 INFO  : Downloaded mod file mods/ftb-essentials-neoforge-2101.1.0.jar
2024-10-29 17:28:29 [mc-image-helper] 17:28:29.724 INFO  : Downloaded mod file mods/Creeperoverhaul-neoforge-1.21-4.0.5.jar
2024-10-29 17:28:29 [mc-image-helper] 17:28:29.745 INFO  : Downloaded mod file mods/generatorgalore-1.21.1-1.3.4.jar
2024-10-29 17:28:29 [mc-image-helper] 17:28:29.826 INFO  : Downloaded mod file mods/merequester-neoforge-1.21.1-1.1.8.jar
2024-10-29 17:28:29 [mc-image-helper] 17:28:29.904 INFO  : Downloaded mod file mods/hardenedarmadillos-1.21.0-0.1.0.jar
2024-10-29 17:28:29 [mc-image-helper] 17:28:29.916 INFO  : Downloaded mod file mods/silent-lib-1.21-neoforge-10.3.0.jar
2024-10-29 17:28:29 [mc-image-helper] 17:28:29.934 INFO  : Downloaded mod file mods/supermartijn642corelib-1.1.17i-neoforge-mc1.21.jar
2024-10-29 17:28:29 [mc-image-helper] 17:28:29.943 INFO  : Downloaded mod file mods/mahoutsukai-1.21.0-v1.35.21.jar
2024-10-29 17:28:29 [mc-image-helper] 17:28:29.960 INFO  : Downloaded mod file mods/allthetweaks-1.21-2.4.7-all.jar
2024-10-29 17:28:29 [mc-image-helper] 17:28:29.985 INFO  : Downloaded mod file mods/industrial-foregoing-souls-1.21.1-1.10.0.jar
2024-10-29 17:28:30 [mc-image-helper] 17:28:30.017 INFO  : Downloaded mod file mods/elevatorid-neoforge-1.21.1-1.11.3.jar
2024-10-29 17:28:30 [mc-image-helper] 17:28:30.146 INFO  : Downloaded mod file mods/attributefix-neoforge-1.21.1-21.1.1.jar
2024-10-29 17:28:30 [mc-image-helper] 17:28:30.169 INFO  : Downloaded mod file mods/fusion-1.1.1a-neoforge-mc1.21.jar
2024-10-29 17:28:30 [mc-image-helper] 17:28:30.180 INFO  : Downloaded mod file mods/comforts-neoforge-9.0.3+1.21.1.jar
2024-10-29 17:28:30 [mc-image-helper] 17:28:30.223 INFO  : Downloaded mod file mods/utilitarian-1.21.1-0.13.3.jar
2024-10-29 17:28:30 [mc-image-helper] 17:28:30.513 INFO  : Downloaded mod file mods/stylecolonies-1.10-1.21.jar
2024-10-29 17:28:30 [mc-image-helper] 17:28:30.556 INFO  : Downloaded mod file mods/IntegratedTerminals-1.21.1-neoforge-1.5.2.jar
2024-10-29 17:28:30 [mc-image-helper] 17:28:30.574 INFO  : Downloaded mod file mods/ftb-filter-system-neoforge-21.0.0.jar
2024-10-29 17:28:30 [mc-image-helper] 17:28:30.610 INFO  : Downloaded mod file mods/architectury-13.0.6-neoforge.jar
2024-10-29 17:28:30 [mc-image-helper] 17:28:30.661 INFO  : Downloaded mod file mods/multipiston-1.2.51-1.21.1-snapshot.jar
2024-10-29 17:28:30 [mc-image-helper] 17:28:30.837 INFO  : Downloaded mod file mods/Mekanism-1.21.1-10.7.7.64.jar
2024-10-29 17:28:30 [mc-image-helper] 17:28:30.839 INFO  : Downloaded mod file mods/TerraBlender-neoforge-1.21.1-4.1.0.0.jar
2024-10-29 17:28:30 [mc-image-helper] 17:28:30.880 INFO  : Downloaded mod file mods/ftbjeiextras-21.1.0.jar
2024-10-29 17:28:30 [mc-image-helper] 17:28:30.895 INFO  : Downloaded mod file mods/mcw-windows-2.3.0-mc1.21.1neoforge.jar
2024-10-29 17:28:30 [mc-image-helper] 17:28:30.895 INFO  : Downloaded mod file mods/aae-0.6.1-1.21.1.jar
2024-10-29 17:28:30 [mc-image-helper] 17:28:30.929 INFO  : Downloaded mod file mods/YungsBetterWitchHuts-1.21.1-NeoForge-4.1.1.jar
2024-10-29 17:28:30 [mc-image-helper] 17:28:30.975 INFO  : Downloaded mod file mods/[Neoforge]CTOV-3-5-3a.jar
2024-10-29 17:28:31 [mc-image-helper] 17:28:31.014 INFO  : Downloaded mod file mods/athena-neoforge-1.21-4.0.1.jar
2024-10-29 17:28:31 [mc-image-helper] 17:28:31.039 INFO  : Downloaded mod file mods/YungsBetterNetherFortresses-1.21.1-NeoForge-3.1.2.jar
2024-10-29 17:28:31 [mc-image-helper] 17:28:31.077 INFO  : Downloaded mod file mods/dyenamics-1.21.1-3.2.1.jar
2024-10-29 17:28:31 [mc-image-helper] 17:28:31.179 INFO  : Downloaded mod file mods/disenchanting_table-merged-1.21.1-3.1.0.jar
2024-10-29 17:28:31 [mc-image-helper] 17:28:31.258 INFO  : Downloaded mod file mods/flickerfix-1.21.0.jar
2024-10-29 17:28:31 [mc-image-helper] 17:28:31.471 INFO  : Downloaded mod file mods/wirelesschargers-1.0.9a-neoforge-mc1.21.jar
2024-10-29 17:28:31 [mc-image-helper] 17:28:31.493 INFO  : Downloaded mod file mods/sushigocrafting-1.21-0.6.3.jar
2024-10-29 17:28:31 [mc-image-helper] 17:28:31.508 INFO  : Downloaded mod file mods/titanium-1.21-4.0.21.jar
2024-10-29 17:28:31 [mc-image-helper] 17:28:31.512 INFO  : Downloaded mod file mods/YetAnotherConfigLib-3.5.0+1.21-neoforge.jar
2024-10-29 17:28:31 [mc-image-helper] 17:28:31.523 INFO  : Downloaded mod file mods/modular-routers-13.0.3+mc1.21.jar
2024-10-29 17:28:31 [mc-image-helper] 17:28:31.574 INFO  : Downloaded mod file mods/jearchaeology-1.21.0-1.1.5.jar
2024-10-29 17:28:31 [mc-image-helper] 17:28:31.586 INFO  : Downloaded mod file mods/RootsClassic-1.21.1-1.5.4.jar
2024-10-29 17:28:31 [mc-image-helper] 17:28:31.617 INFO  : Downloaded mod file mods/polyeng-0.4.1.jar
2024-10-29 17:28:31 [mc-image-helper] 17:28:31.631 INFO  : Downloaded mod file mods/repurposed_structures-7.5.10+1.21.1-neoforge.jar
2024-10-29 17:28:31 [mc-image-helper] 17:28:31.646 INFO  : Downloaded mod file mods/ActuallyAdditions-1.3.4+mc1.21.1.jar
2024-10-29 17:28:31 [mc-image-helper] 17:28:31.667 INFO  : Downloaded mod file mods/sawmill-1.21-1.5.9-neoforge.jar
2024-10-29 17:28:31 [mc-image-helper] 17:28:31.725 INFO  : Downloaded mod file mods/CTM-1.21-1.2.1+3.jar
2024-10-29 17:28:31 [mc-image-helper] 17:28:31.818 INFO  : Downloaded mod file mods/ars_elemental-1.21.0-0.7.0.5.jar
2024-10-29 17:28:31 [mc-image-helper] 17:28:31.828 INFO  : Downloaded mod file mods/morered-1.21.1-6.0.0.3.jar
2024-10-29 17:28:31 [mc-image-helper] 17:28:31.836 INFO  : Downloaded mod file mods/blockui-1.0.192-1.21.1-snapshot.jar
2024-10-29 17:28:31 [mc-image-helper] 17:28:31.880 INFO  : Downloaded mod file mods/waystones-neoforge-1.21.1-21.1.4.jar
2024-10-29 17:28:31 [mc-image-helper] 17:28:31.917 INFO  : Downloaded mod file mods/blueflame-1.21.0-1.1.0.jar
2024-10-29 17:28:31 [mc-image-helper] 17:28:31.978 INFO  : Downloaded mod file mods/ae2wtlib-19.1.6-beta.jar
2024-10-29 17:28:32 [mc-image-helper] 17:28:32.020 INFO  : Downloaded mod file mods/trophymanager-1.21.1-2.1.9.jar
2024-10-29 17:28:32 [mc-image-helper] 17:28:32.030 INFO  : Downloaded mod file mods/BridgingMod-2.5.0+1.21.1.neoforge-release.jar
2024-10-29 17:28:32 [mc-image-helper] 17:28:32.126 INFO  : Downloaded mod file mods/polylib-2100.0.3-build.159-neoforge.jar
2024-10-29 17:28:32 [mc-image-helper] 17:28:32.170 INFO  : Downloaded mod file mods/Corgilib-NeoForge-1.21.1-5.0.0.2.jar
2024-10-29 17:28:32 [mc-image-helper] 17:28:32.174 INFO  : Downloaded mod file mods/pipez-neoforge-1.21.1-1.2.19.jar
2024-10-29 17:28:32 [mc-image-helper] 17:28:32.255 INFO  : Downloaded mod file mods/IntegratedCrafting-1.21.1-neoforge-1.1.10.jar
2024-10-29 17:28:32 [mc-image-helper] 17:28:32.261 INFO  : Downloaded mod file mods/AI-Improvements-1.21-0.5.3.jar
2024-10-29 17:28:32 [mc-image-helper] 17:28:32.290 INFO  : Downloaded mod file mods/mcw-holidays-1.1.0-mc1.21.1neoforge.jar
2024-10-29 17:28:32 [mc-image-helper] 17:28:32.297 INFO  : Downloaded mod file mods/railcraft-reborn-1.21.1-1.2.2.jar
2024-10-29 17:28:32 [mc-image-helper] 17:28:32.311 INFO  : Downloaded mod file mods/IntegratedTunnels-1.21.1-neoforge-1.8.28.jar
2024-10-29 17:28:32 [mc-image-helper] 17:28:32.368 INFO  : Downloaded mod file mods/MoreRed-CCT-Compat-1.21.1-1.1.0.jar
2024-10-29 17:28:32 [mc-image-helper] 17:28:32.392 INFO  : Downloaded mod file mods/ftb-chunks-neoforge-2101.1.1.jar
2024-10-29 17:28:32 [mc-image-helper] 17:28:32.458 INFO  : Downloaded mod file mods/lootr-neoforge-1.21-1.10.33.84.jar
2024-10-29 17:28:32 [mc-image-helper] 17:28:32.485 INFO  : Downloaded mod file mods/JustEnoughProfessions-neoforge-1.21.1-4.0.3.jar
2024-10-29 17:28:32 [mc-image-helper] 17:28:32.496 INFO  : Downloaded mod file mods/Modern-Industrialization-2.2.25.jar
2024-10-29 17:28:32 [mc-image-helper] 17:28:32.621 INFO  : Downloaded mod file mods/trashslot-neoforge-1.21.1-21.1.1.jar
2024-10-29 17:28:32 [mc-image-helper] 17:28:32.806 INFO  : Downloaded mod file mods/SmartBrainLib-neoforge-1.21.1-1.16.1.jar
2024-10-29 17:28:32 [mc-image-helper] 17:28:32.861 INFO  : Downloaded mod file mods/ApothicEnchanting-1.21.1-1.2.3.jar
2024-10-29 17:28:32 [mc-image-helper] 17:28:32.870 INFO  : Downloaded mod file mods/bookshelf-neoforge-1.21.1-21.1.12.jar
2024-10-29 17:28:32 [mc-image-helper] 17:28:32.907 INFO  : Downloaded mod file mods/accelerated-decay-neoforge-21.0.0.jar
2024-10-29 17:28:32 [mc-image-helper] 17:28:32.916 INFO  : Downloaded mod file mods/fzzy_config-0.5.4+1.21+neoforge.jar
2024-10-29 17:28:33 [mc-image-helper] 17:28:33.014 INFO  : Downloaded mod file mods/monolib-neoforge-1.21.1-1.3.0.jar
2024-10-29 17:28:33 [mc-image-helper] 17:28:33.039 INFO  : Downloaded mod file mods/ftb-ultimine-neoforge-2101.1.1.jar
2024-10-29 17:28:33 [mc-image-helper] 17:28:33.162 INFO  : Downloaded mod file mods/Modern-Dynamics-0.9.2.jar
2024-10-29 17:28:33 [mc-image-helper] 17:28:33.173 INFO  : Downloaded mod file mods/xycraft_core-0.7.45-all.jar
2024-10-29 17:28:33 [mc-image-helper] 17:28:33.196 INFO  : Downloaded mod file mods/xycraft_world-0.7.45.jar
2024-10-29 17:28:33 [mc-image-helper] 17:28:33.385 INFO  : Downloaded mod file mods/spark-1.10.109-neoforge.jar
2024-10-29 17:28:33 [mc-image-helper] 17:28:33.451 INFO  : Downloaded mod file mods/mffs-5.4.6.jar
2024-10-29 17:28:33 [mc-image-helper] 17:28:33.522 INFO  : Downloaded mod file mods/Cucumber-1.21.1-8.0.6.jar
2024-10-29 17:28:33 [mc-image-helper] 17:28:33.549 INFO  : Downloaded mod file mods/sophisticatedcore-1.21-0.6.45.722.jar
2024-10-29 17:28:33 [mc-image-helper] 17:28:33.599 INFO  : Downloaded mod file mods/Measurements-neoforge-1.21-3.0.0.jar
2024-10-29 17:28:33 [mc-image-helper] 17:28:33.629 INFO  : Downloaded mod file mods/modernfix-neoforge-5.19.3+mc1.21.1.jar
2024-10-29 17:28:33 [mc-image-helper] 17:28:33.761 INFO  : Downloaded mod file mods/farmingforblockheads-neoforge-1.21.1-21.1.2.jar
2024-10-29 17:28:33 [mc-image-helper] 17:28:33.802 INFO  : Downloaded mod file mods/rhino-2101.2.5-build.54.jar
2024-10-29 17:28:33 [mc-image-helper] 17:28:33.897 INFO  : Downloaded mod file mods/resourcefulconfig-neoforge-1.21-3.0.4.jar
2024-10-29 17:28:33 [mc-image-helper] 17:28:33.911 INFO  : Downloaded mod file mods/sophisticatedstorage-1.21-0.10.45.910.jar
2024-10-29 17:28:33 [mc-image-helper] 17:28:33.958 INFO  : Downloaded mod file mods/observable-5.4.3.jar
2024-10-29 17:28:34 [mc-image-helper] 17:28:34.014 INFO  : Downloaded mod file mods/productivebees-1.21.1-13.6.1.jar
2024-10-29 17:28:34 [mc-image-helper] 17:28:34.273 INFO  : Downloaded mod file mods/enderio-7.0.8-alpha.jar
2024-10-29 17:28:34 [mc-image-helper] 17:28:34.306 INFO  : Downloaded mod file mods/Croptopia-1.21-NEO-FORGE-3.0.9.jar
2024-10-29 17:28:34 [mc-image-helper] 17:28:34.338 INFO  : Downloaded mod file mods/allthewizardgear-1.21-1.1.6.jar
2024-10-29 17:28:34 [mc-image-helper] 17:28:34.450 INFO  : Downloaded mod file mods/ftb-quests-neoforge-2101.1.0.jar
2024-10-29 17:28:34 [mc-image-helper] 17:28:34.646 INFO  : Downloaded mod file mods/buildinggadgets2-1.3.7.jar
2024-10-29 17:28:34 [mc-image-helper] 17:28:34.756 INFO  : Downloaded mod file mods/livingthings-neoforge-1.21.1-2.1.3.jar
2024-10-29 17:28:34 [mc-image-helper] 17:28:34.888 INFO  : Downloaded mod file mods/silent-gear-1.21.1-neoforge-4.0.5.jar
2024-10-29 17:28:34 [mc-image-helper] 17:28:34.891 INFO  : Downloaded mod file mods/mcw-fences-1.1.2-mc1.21.1neoforge.jar
2024-10-29 17:28:34 [mc-image-helper] 17:28:34.971 INFO  : Downloaded mod file mods/laserbridges-1.21.1-1-neoforge.jar
2024-10-29 17:28:35 [mc-image-helper] 17:28:35.061 INFO  : Downloaded mod file mods/allthecompressed-1.21.1-4.0.2.jar
2024-10-29 17:28:35 [mc-image-helper] 17:28:35.242 INFO  : Downloaded mod file mods/forbidden_arcanus-1.21.1-2.5.7-beta.jar
2024-10-29 17:28:35 [mc-image-helper] 17:28:35.602 INFO  : Downloaded mod file mods/FramedBlocks-10.2.0.jar
2024-10-29 17:28:35 [mc-image-helper] 17:28:35.736 INFO  : Downloaded mod file mods/MekanismGenerators-1.21.1-10.7.7.64.jar
2024-10-29 17:28:35 [mc-image-helper] 17:28:35.783 INFO  : Downloaded mod file mods/tombstone-neoforge-1.21.1-9.1.1.jar
2024-10-29 17:28:36 [mc-image-helper] 17:28:36.183 INFO  : Downloaded mod file mods/allthemodium-2.7.0_mc_1.21.1.jar
2024-10-29 17:28:36 [mc-image-helper] 17:28:36.563 INFO  : Downloaded mod file mods/refurbished_furniture-neoforge-1.21.1-1.0.6.jar
2024-10-29 17:28:36 [mc-image-helper] 17:28:36.609 INFO  : Downloaded mod file mods/FarmersDelight-1.21.1-1.2.4a.jar
2024-10-29 17:28:36 [mc-image-helper] 17:28:36.860 INFO  : Downloaded mod file mods/deeperdarker-neoforge-1.21-1.3.2.jar
2024-10-29 17:28:36 [mc-image-helper] 17:28:36.982 INFO  : Downloaded mod file mods/handcrafted-neoforge-1.21.1-4.0.2.jar
2024-10-29 17:28:37 [mc-image-helper] 17:28:37.161 INFO  : Downloaded mod file mods/ExtremeReactors2-1.21.1-2.4.11.jar
2024-10-29 17:28:37 [mc-image-helper] 17:28:37.241 INFO  : Downloaded mod file mods/xycraft_machines-0.7.45.jar
2024-10-29 17:28:37 [mc-image-helper] 17:28:37.242 INFO  : Downloaded mod file mods/kotlinforforge-5.5.0-all.jar
2024-10-29 17:28:37 [mc-image-helper] 17:28:37.716 INFO  : Downloaded mod file mods/irons_spellbooks-1.21-3.7.1.jar
2024-10-29 17:28:37 [mc-image-helper] 17:28:37.898 INFO  : Downloaded mod file mods/RegionsUnexploredNeoforge-0.5.6.1+1.21.jar
2024-10-29 17:28:38 [mc-image-helper] 17:28:38.226 INFO  : Downloaded mod file mods/pneumaticcraft-repressurized-8.1.4+mc1.21.1.jar
2024-10-29 17:28:38 [mc-image-helper] 17:28:38.508 INFO  : Downloaded mod file mods/ars_nouveau-1.21.0-5.1.0-all.jar
2024-10-29 17:28:39 [mc-image-helper] 17:28:39.319 INFO  : Downloaded mod file mods/chipped-neoforge-1.21.1-4.0.2.jar
2024-10-29 17:28:39 [mc-image-helper] 17:28:39.697 INFO  : Downloaded mod file mods/appliedenergistics2-19.0.23-beta.jar
2024-10-29 17:28:41 [mc-image-helper] 17:28:41.214 INFO  : Downloaded mod file mods/ScalableCatsForce-NeoForge-3.5.1-build-2-with-library.jar
2024-10-29 17:28:44 [mc-image-helper] 17:28:44.011 INFO  : Downloaded mod file mods/towntalk-1.2.0.jar
2024-10-29 17:28:44 [mc-image-helper] 17:28:44.603 INFO  : Downloaded mod file mods/the_bumblezone-7.7.3+1.21.1-neoforge.jar
2024-10-29 17:28:45 [mc-image-helper] 17:28:45.011 INFO  : Downloaded mod file mods/IntegratedScripting-1.21-neoforge-1.0.5.jar
2024-10-29 17:28:45 [mc-image-helper] 17:28:45.081 INFO  : Downloaded mod file mods/The_Undergarden-1.21.1-0.8.22.jar
2024-10-29 17:28:45 [mc-image-helper] 17:28:45.991 INFO  : Downloaded mod file mods/eternalstarlight-0.1.16+1.21.1+neoforge.jar
2024-10-29 17:28:46 [mc-image-helper] 17:28:46.873 INFO  : Downloaded mod file mods/minecolonies-1.1.726-1.21.1-snapshot.jar
2024-10-29 17:29:28 [init] 2024-10-29 17:29:28+00:00 Creating server properties in /data/server.properties
2024-10-29 17:29:28 [init] 2024-10-29 17:29:28+00:00 Disabling whitelist functionality
2024-10-29 17:29:29 [mc-image-helper] 17:29:29.783 INFO  : Created/updated 10 properties in /data/server.properties
2024-10-29 17:29:30 [init] 2024-10-29 17:29:30+00:00 Creating log4j2.xml in /data/log4j2.xml
2024-10-29 17:29:31 [init] 2024-10-29 17:29:31+00:00 Setting initial memory to 1G and max to 8G
2024-10-29 17:29:31 [init] 2024-10-29 17:29:31+00:00 Starting the Minecraft server...
2024-10-29 17:29:31 Error: Unable to access jarfile 
2024-10-29 17:29:31 2024-10-29T17:29:31.901ZWARNmc-server-runnerMinecraft server failed. Inspect logs above for errors that indicate cause. DO NOT report this line as an error.{"exitCode": 1}
2024-10-29 17:29:31 2024-10-29T17:29:31.901ZINFOmc-server-runnerDone

@itzg
Copy link
Owner

itzg commented Oct 29, 2024

@chris-ware maybe you need to temporarily set CF_FORCE_REINSTALL_MODLOADER env var to "true". Also make sure you have re-pulled the latest image. I'm quite certain it's the latter -- you're missing this line from your logs:

2024-10-29T18:10:36.814814376Z [mc-image-helper] 18:10:36.814 INFO  : NeoForge version 21.1.72 for minecraft version 1.21.1 is already installed

or similar logs about installing the modloader.

@chris-ware
Copy link

@itzg One of those sorted the issue, it's now continuing on, many thanks.

@yuri0r
Copy link

yuri0r commented Nov 9, 2024

seems like sodiumoptionsapi also needs to be excluded. updated exclude looks like

       CF_EXCLUDE_MODS: |
          986380
          dark-mode-everywhere
          iceberg
          just-enough-mekanism-multiblocks
          model-gap-fix
          packmenu
          reeses-sodium-options
          1103431
          sodium-extra
          toast-control

@rhullah
Copy link
Contributor

rhullah commented Nov 9, 2024

Yeah, I had already updated that locally. So I created a PR for an example. 1.17 also had some issues with the shaderpacks folder in the packs overrides folder. So my example shows that as well.

@itzg
Copy link
Owner

itzg commented Nov 9, 2024

And the merged example https://github.com/itzg/docker-minecraft-server/tree/master/examples/atm10

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

6 participants