itzg / docker-minecraft-server

Docker image that provides a Minecraft Server that will automatically download selected version at startup
https://docker-minecraft-server.readthedocs.io/
Apache License 2.0
9.18k stars 1.52k forks source link

Map loads, but the modpack does not #2323

Closed Gnuk935 closed 1 year ago

Gnuk935 commented 1 year ago

Describe the problem

I've been doing several tests for two days, from what I've seen in the documentation, the recommended thing is to use "AUTO_CURSEFORGE" but it doesn't even load the map. Right now I'm just referencing the files locally, but it doesn't load the mods. follow the prints and logs:

banned-ips.json banned-players.json config defaultconfigs eula.txt fabric-server-mc.1.19.2-loader.0.14.21-launcher.0.11.2.jar FeedTheBeast libraries logs manifest.txt mods MODS_NEED_DOWNLOAD.txt ops.json options.txt plugins resourcepacks run.bat run.sh saida saves server.properties shaderpacks usercache.json user_jvm_args.txt usernamecache.json whitelist.json world

  • MODS_NEED_DOWNLOAD.txt root@ccdae3dae801:/data# cat MODS_NEED_DOWNLOAD.txt Mod Slug Filename Download page
    ========= ========= ====================== ====================================================== Structory structory Structory 1.19 v1.2.0a https://www.curseforge.com/minecraft/mc-mods/structory
  • FeedTheBest

Container definition

version: "3.8"
services:
  minecraft:
    image: itzg/minecraft-server
    container_name: minetest
    volumes:
      - mineteste:/data
      - /home/.minecraft/modpacks:/modpacks:ro
      - /home/.minecraft/downloads:/downloads:ro
    ports:
      - 9350:25565
    environment:
      EULA: "true"
      VERSION: 1.19.2
      TYPE: FORGE
#       CF_API_KEY: ${CF_API_KEY}
#       CF_PAGE_URL: https://www.curseforge.com/minecraft/modpacks/better-mc-forge-bmc3/files/3975945
#       CF_DOWNLOADS_REPO: /downloads
      MODPAKC: /modpacks/better.zip
      CF_DOWNLOADS_REPO: /downloads       
#       REMOVE_OLD_MODS: "true"      
      OPS: "Gnuk"
      MOTD: "Sem choro papai"
      DIFFICULTY: "hard"
      ANNOUNCE_PLAYER_ACHIEVEMENTS: "true"
      LEVEL_TYPE: "amplified"      
      SERVER_NAME: "mine dos brodi"
      ENABLE_WHITELIST: "FALSE"
      ENFORCE_WHITELIST: "FALSE"
      MEMORY: 15G
      DEBUG: "true"
    tty: true
    stdin_open: true
    restart: unless-stopped
volumes:
  mineteste: {}

Container logs

[06Aug2023 19:00:28.977] [main/INFO] [cpw.mods.modlauncher.Launcher/MODLAUNCHER]: ModLauncher running: args [--launchTarget, forgeserver, --fml.forgeVersion, 43.2.0, --fml.mcVersion, 1.19.2, --fml.forgeGroup, net.minecraftforge, --fml.mcpVersion, 20220805.130853]
[06Aug2023 19:00:28.980] [main/INFO] [cpw.mods.modlauncher.Launcher/MODLAUNCHER]: ModLauncher 10.0.8+10.0.8+main.0ef7e830 starting: java version 17.0.8 by Eclipse Adoptium; OS Linux arch amd64 version 6.1.0-10-amd64
[06Aug2023 19:00:28.996] [main/DEBUG] [cpw.mods.modlauncher.LaunchServiceHandler/MODLAUNCHER]: Found launch services [fmlclientdev,forgeclient,minecraft,forgegametestserverdev,fmlserveruserdev,fmlclient,fmldatauserdev,forgeserverdev,forgeserveruserdev,forgeclientdev,forgeclientuserdev,forgeserver,forgedatadev,fmlserver,fmlclientuserdev,fmlserverdev,forgedatauserdev,testharness,forgegametestserveruserdev]
[06Aug2023 19:00:29.005] [main/DEBUG] [cpw.mods.modlauncher.NameMappingServiceHandler/MODLAUNCHER]: Found naming services : [srgtomcp]
[06Aug2023 19:00:29.015] [main/DEBUG] [cpw.mods.modlauncher.LaunchPluginHandler/MODLAUNCHER]: Found launch plugins: [mixin,eventbus,slf4jfixer,object_holder_definalize,runtime_enum_extender,capability_token_subclass,accesstransformer,runtimedistcleaner]
[06Aug2023 19:00:29.023] [main/DEBUG] [cpw.mods.modlauncher.TransformationServicesHandler/MODLAUNCHER]: Discovering transformation services
[06Aug2023 19:00:29.028] [main/DEBUG] [cpw.mods.modlauncher.TransformationServicesHandler/MODLAUNCHER]: Found additional transformation services from discovery services: 
[06Aug2023 19:00:29.035] [main/DEBUG] [cpw.mods.modlauncher.TransformationServicesHandler/MODLAUNCHER]: Found transformer services : [mixin,fml]
[06Aug2023 19:00:29.035] [main/DEBUG] [cpw.mods.modlauncher.TransformationServicesHandler/MODLAUNCHER]: Transformation services loading
[06Aug2023 19:00:29.036] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Loading service mixin
[06Aug2023 19:00:29.036] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Loaded service mixin
[06Aug2023 19:00:29.036] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Loading service fml
[06Aug2023 19:00:29.037] [main/DEBUG] [net.minecraftforge.fml.loading.LauncherVersion/CORE]: Found FMLLauncher version 1.0
[06Aug2023 19:00:29.037] [main/DEBUG] [net.minecraftforge.fml.loading.FMLLoader/CORE]: FML 1.0 loading
[06Aug2023 19:00:29.038] [main/DEBUG] [net.minecraftforge.fml.loading.FMLLoader/CORE]: FML found ModLauncher version : 10.0.8+10.0.8+main.0ef7e830
[06Aug2023 19:00:29.038] [main/DEBUG] [net.minecraftforge.fml.loading.FMLLoader/CORE]: FML found AccessTransformer version : 8.0.4+66+master.c09db6d7
[06Aug2023 19:00:29.038] [main/DEBUG] [net.minecraftforge.fml.loading.FMLLoader/CORE]: FML found EventBus version : 6.0.3+6.0.3+master.039e4ea9
[06Aug2023 19:00:29.038] [main/DEBUG] [net.minecraftforge.fml.loading.FMLLoader/CORE]: Found Runtime Dist Cleaner
[06Aug2023 19:00:29.039] [main/DEBUG] [net.minecraftforge.fml.loading.FMLLoader/CORE]: FML found CoreMod version : 5.0.1+15+master.dc5a2922
[06Aug2023 19:00:29.040] [main/DEBUG] [net.minecraftforge.fml.loading.FMLLoader/CORE]: Found ForgeSPI package implementation version 6.0.0+6.0.0+master.42474703
[06Aug2023 19:00:29.040] [main/DEBUG] [net.minecraftforge.fml.loading.FMLLoader/CORE]: Found ForgeSPI package specification 5
[06Aug2023 19:00:29.041] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Loaded service fml
[06Aug2023 19:00:29.041] [main/DEBUG] [cpw.mods.modlauncher.TransformationServicesHandler/MODLAUNCHER]: Configuring option handling for services
[06Aug2023 19:00:29.046] [main/DEBUG] [cpw.mods.modlauncher.TransformationServicesHandler/MODLAUNCHER]: Transformation services initializing
[06Aug2023 19:00:29.046] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Initializing transformation service mixin
[06Aug2023 19:00:29.055] [main/DEBUG] [mixin/]: MixinService [ModLauncher] was successfully booted in cpw.mods.cl.ModuleClassLoader@1f7030a6
[06Aug2023 19:00:29.066] [main/INFO] [mixin/]: SpongePowered MIXIN Subsystem Version=0.8.5 Source=union:/data/libraries/org/spongepowered/mixin/0.8.5/mixin-0.8.5.jar%2363!/ Service=ModLauncher Env=SERVER
[06Aug2023 19:00:29.069] [main/DEBUG] [mixin/]: Initialising Mixin Platform Manager
[06Aug2023 19:00:29.069] [main/DEBUG] [mixin/]: Adding mixin platform agents for container ModLauncher Root Container(ModLauncher:4f56a0a2)
[06Aug2023 19:00:29.070] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for ModLauncher Root Container(ModLauncher:4f56a0a2)
[06Aug2023 19:00:29.070] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container ModLauncher Root Container(ModLauncher:4f56a0a2)
[06Aug2023 19:00:29.070] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for ModLauncher Root Container(ModLauncher:4f56a0a2)
[06Aug2023 19:00:29.071] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container ModLauncher Root Container(ModLauncher:4f56a0a2)
[06Aug2023 19:00:29.072] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Initialized transformation service mixin
[06Aug2023 19:00:29.072] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Initializing transformation service fml
[06Aug2023 19:00:29.072] [main/DEBUG] [net.minecraftforge.fml.loading.FMLServiceProvider/CORE]: Setting up basic FML game directories
[06Aug2023 19:00:29.073] [main/DEBUG] [net.minecraftforge.fml.loading.FileUtils/CORE]: Found existing GAMEDIR directory : /data
[06Aug2023 19:00:29.073] [main/DEBUG] [net.minecraftforge.fml.loading.FMLPaths/CORE]: Path GAMEDIR is /data
[06Aug2023 19:00:29.073] [main/DEBUG] [net.minecraftforge.fml.loading.FileUtils/CORE]: Found existing MODSDIR directory : /data/mods
[06Aug2023 19:00:29.073] [main/DEBUG] [net.minecraftforge.fml.loading.FMLPaths/CORE]: Path MODSDIR is /data/mods
[06Aug2023 19:00:29.073] [main/DEBUG] [net.minecraftforge.fml.loading.FileUtils/CORE]: Found existing CONFIGDIR directory : /data/config
[06Aug2023 19:00:29.073] [main/DEBUG] [net.minecraftforge.fml.loading.FMLPaths/CORE]: Path CONFIGDIR is /data/config
[06Aug2023 19:00:29.074] [main/DEBUG] [net.minecraftforge.fml.loading.FMLPaths/CORE]: Path FMLCONFIG is /data/config/fml.toml
[06Aug2023 19:00:29.074] [main/DEBUG] [net.minecraftforge.fml.loading.FMLServiceProvider/CORE]: Loading configuration
[06Aug2023 19:00:29.104] [main/DEBUG] [net.minecraftforge.fml.loading.FileUtils/CORE]: Found existing default config directory directory : /data/defaultconfigs
[06Aug2023 19:00:29.104] [main/DEBUG] [net.minecraftforge.fml.loading.FMLServiceProvider/CORE]: Preparing ModFile
[06Aug2023 19:00:29.107] [main/DEBUG] [net.minecraftforge.fml.loading.FMLServiceProvider/CORE]: Preparing launch handler
[06Aug2023 19:00:29.107] [main/DEBUG] [net.minecraftforge.fml.loading.FMLLoader/CORE]: Using forgeserver as launch service
[06Aug2023 19:00:29.122] [main/DEBUG] [net.minecraftforge.fml.loading.FMLLoader/CORE]: Received command line version data  : VersionInfo[forgeVersion=43.2.0, mcVersion=1.19.2, mcpVersion=20220805.130853, forgeGroup=net.minecraftforge]
[06Aug2023 19:00:29.124] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Initialized transformation service fml
[06Aug2023 19:00:29.124] [main/DEBUG] [cpw.mods.modlauncher.NameMappingServiceHandler/MODLAUNCHER]: Current naming domain is 'srg'
[06Aug2023 19:00:29.125] [main/DEBUG] [cpw.mods.modlauncher.NameMappingServiceHandler/MODLAUNCHER]: Identified name mapping providers {}
[06Aug2023 19:00:29.125] [main/DEBUG] [cpw.mods.modlauncher.TransformationServicesHandler/MODLAUNCHER]: Transformation services begin scanning
[06Aug2023 19:00:29.125] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Beginning scan trigger - transformation service mixin
[06Aug2023 19:00:29.126] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: End scan trigger - transformation service mixin
[06Aug2023 19:00:29.126] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Beginning scan trigger - transformation service fml
[06Aug2023 19:00:29.126] [main/DEBUG] [net.minecraftforge.fml.loading.FMLServiceProvider/CORE]: Initiating mod scan
[06Aug2023 19:00:29.136] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModListHandler/CORE]: Found mod coordinates from lists: []
[06Aug2023 19:00:29.139] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModDiscoverer/CORE]: Found Mod Locators : (mods folder:null),(maven libs:null),(exploded directory:null),(minecraft:null),(userdev classpath:null)
[06Aug2023 19:00:29.140] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModDiscoverer/CORE]: Found Dependency Locators : (JarInJar:null)
[06Aug2023 19:00:29.301] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file server-1.19.2-20220805.130853-srg.jar with {minecraft} mods - versions {1.19.2}
[06Aug2023 19:00:29.304] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate /data/libraries/net/minecraftforge/fmlcore/1.19.2-43.2.0/fmlcore-1.19.2-43.2.0.jar
[06Aug2023 19:00:29.304] [main/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Mod file /data/libraries/net/minecraftforge/fmlcore/1.19.2-43.2.0/fmlcore-1.19.2-43.2.0.jar is missing mods.toml file
[06Aug2023 19:00:29.306] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate /data/libraries/net/minecraftforge/javafmllanguage/1.19.2-43.2.0/javafmllanguage-1.19.2-43.2.0.jar
[06Aug2023 19:00:29.306] [main/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Mod file /data/libraries/net/minecraftforge/javafmllanguage/1.19.2-43.2.0/javafmllanguage-1.19.2-43.2.0.jar is missing mods.toml file
[06Aug2023 19:00:29.307] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate /data/libraries/net/minecraftforge/lowcodelanguage/1.19.2-43.2.0/lowcodelanguage-1.19.2-43.2.0.jar
[06Aug2023 19:00:29.308] [main/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Mod file /data/libraries/net/minecraftforge/lowcodelanguage/1.19.2-43.2.0/lowcodelanguage-1.19.2-43.2.0.jar is missing mods.toml file
[06Aug2023 19:00:29.309] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate /data/libraries/net/minecraftforge/mclanguage/1.19.2-43.2.0/mclanguage-1.19.2-43.2.0.jar
[06Aug2023 19:00:29.309] [main/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Mod file /data/libraries/net/minecraftforge/mclanguage/1.19.2-43.2.0/mclanguage-1.19.2-43.2.0.jar is missing mods.toml file
[06Aug2023 19:00:29.343] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate /data/libraries/net/minecraftforge/forge/1.19.2-43.2.0/forge-1.19.2-43.2.0-universal.jar
[06Aug2023 19:00:29.348] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file forge-1.19.2-43.2.0-universal.jar with {forge} mods - versions {43.2.0}
[06Aug2023 19:00:29.360] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF/jarjar/metadata.json from server-1.19.2-20220805.130853-srg.jar, it does not contain dependency information.
[06Aug2023 19:00:29.360] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF/jarjar/metadata.json from forge-1.19.2-43.2.0-universal.jar, it does not contain dependency information.
[06Aug2023 19:00:29.360] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF/jarjar/metadata.json from mclanguage-1.19.2-43.2.0.jar, it does not contain dependency information.
[06Aug2023 19:00:29.361] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF/jarjar/metadata.json from javafmllanguage-1.19.2-43.2.0.jar, it does not contain dependency information.
[06Aug2023 19:00:29.361] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF/jarjar/metadata.json from fmlcore-1.19.2-43.2.0.jar, it does not contain dependency information.
[06Aug2023 19:00:29.361] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF/jarjar/metadata.json from lowcodelanguage-1.19.2-43.2.0.jar, it does not contain dependency information.
[06Aug2023 19:00:29.386] [main/INFO] [net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator/]: No dependencies to load found. Skipping!
[06Aug2023 19:00:29.388] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file server-1.19.2-20220805.130853-srg.jar with {minecraft} mods - versions {1.19.2}
[06Aug2023 19:00:29.391] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file /data/libraries/net/minecraft/server/1.19.2-20220805.130853/server-1.19.2-20220805.130853-srg.jar with languages [LanguageSpec[languageName=minecraft, acceptedVersions=1]]
[06Aug2023 19:00:29.392] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate /data/libraries/net/minecraftforge/forge/1.19.2-43.2.0/forge-1.19.2-43.2.0-universal.jar
[06Aug2023 19:00:29.393] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file forge-1.19.2-43.2.0-universal.jar with {forge} mods - versions {43.2.0}
[06Aug2023 19:00:29.393] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file /data/libraries/net/minecraftforge/forge/1.19.2-43.2.0/forge-1.19.2-43.2.0-universal.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[24,]]]
[06Aug2023 19:00:29.422] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Found coremod field_to_method with Javascript path coremods/field_to_method.js
[06Aug2023 19:00:29.422] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Found coremod field_to_instanceof with Javascript path coremods/field_to_instanceof.js
[06Aug2023 19:00:29.422] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Found coremod add_bouncer_method with Javascript path coremods/add_bouncer_method.js
[06Aug2023 19:00:29.422] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Found coremod coremods/field_to_method.js
[06Aug2023 19:00:29.422] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Found coremod coremods/field_to_instanceof.js
[06Aug2023 19:00:29.423] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Found coremod coremods/add_bouncer_method.js
[06Aug2023 19:00:29.424] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: End scan trigger - transformation service fml
[06Aug2023 19:00:29.435] [main/DEBUG] [net.minecraftforge.fml.loading.LanguageLoadingProvider/CORE]: Found 3 language providers
[06Aug2023 19:00:29.435] [main/DEBUG] [net.minecraftforge.fml.loading.LanguageLoadingProvider/CORE]: Found language provider minecraft, version 1.0
[06Aug2023 19:00:29.436] [main/DEBUG] [net.minecraftforge.fml.loading.LanguageLoadingProvider/CORE]: Found language provider lowcodefml, version 43
[06Aug2023 19:00:29.436] [main/DEBUG] [net.minecraftforge.fml.loading.LanguageLoadingProvider/CORE]: Found language provider javafml, version 43
[06Aug2023 19:00:29.440] [main/DEBUG] [net.minecraftforge.fml.loading.ModSorter/]: Configured system mods: [minecraft, forge]
[06Aug2023 19:00:29.441] [main/DEBUG] [net.minecraftforge.fml.loading.ModSorter/]: Found system mod: minecraft
[06Aug2023 19:00:29.441] [main/DEBUG] [net.minecraftforge.fml.loading.ModSorter/]: Found system mod: forge
[06Aug2023 19:00:29.443] [main/DEBUG] [net.minecraftforge.fml.loading.ModSorter/LOADING]: Found 0 mod requirements (0 mandatory, 0 optional)
[06Aug2023 19:00:29.443] [main/DEBUG] [net.minecraftforge.fml.loading.ModSorter/LOADING]: Found 0 mod requirements missing (0 mandatory, 0 optional)
[06Aug2023 19:00:29.825] [main/DEBUG] [cpw.mods.modlauncher.TransformationServicesHandler/MODLAUNCHER]: Transformation services loading transformers
[06Aug2023 19:00:29.825] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Initializing transformers for transformation service mixin
[06Aug2023 19:00:29.826] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Initialized transformers for transformation service mixin
[06Aug2023 19:00:29.826] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Initializing transformers for transformation service fml
[06Aug2023 19:00:29.826] [main/DEBUG] [net.minecraftforge.fml.loading.FMLServiceProvider/CORE]: Loading coremod transformers
[06Aug2023 19:00:29.826] [main/DEBUG] [net.minecraftforge.coremod.CoreModEngine/COREMOD]: Loading CoreMod from coremods/field_to_method.js
[06Aug2023 19:00:29.985] [main/DEBUG] [net.minecraftforge.coremod.CoreModEngine/COREMOD]: CoreMod loaded successfully
[06Aug2023 19:00:29.985] [main/DEBUG] [net.minecraftforge.coremod.CoreModEngine/COREMOD]: Loading CoreMod from coremods/field_to_instanceof.js
[06Aug2023 19:00:30.038] [main/DEBUG] [net.minecraftforge.coremod.CoreModEngine/COREMOD]: CoreMod loaded successfully
[06Aug2023 19:00:30.038] [main/DEBUG] [net.minecraftforge.coremod.CoreModEngine/COREMOD]: Loading CoreMod from coremods/add_bouncer_method.js
[06Aug2023 19:00:30.072] [main/DEBUG] [net.minecraftforge.coremod.CoreModEngine/COREMOD]: CoreMod loaded successfully
[06Aug2023 19:00:30.076] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@1bc776b7 to Target : CLASS {Lnet/minecraft/world/level/biome/Biome;} {} {V}
[06Aug2023 19:00:30.077] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@181e72d3 to Target : CLASS {Lnet/minecraft/world/level/levelgen/structure/Structure;} {} {V}
[06Aug2023 19:00:30.078] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@6ec7bce0 to Target : CLASS {Lnet/minecraft/world/effect/MobEffectInstance;} {} {V}
[06Aug2023 19:00:30.078] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@2d272b0d to Target : CLASS {Lnet/minecraft/world/level/block/LiquidBlock;} {} {V}
[06Aug2023 19:00:30.078] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@3727f0ee to Target : CLASS {Lnet/minecraft/world/item/BucketItem;} {} {V}
[06Aug2023 19:00:30.078] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@5c448433 to Target : CLASS {Lnet/minecraft/world/level/block/StairBlock;} {} {V}
[06Aug2023 19:00:30.078] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@fb713e7 to Target : CLASS {Lnet/minecraft/world/level/block/FlowerPotBlock;} {} {V}
[06Aug2023 19:00:30.078] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@1b5c3e5f to Target : CLASS {Lnet/minecraft/world/item/ItemStack;} {} {V}
[06Aug2023 19:00:30.078] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@13741d5a to Target : CLASS {Lnet/minecraft/network/play/client/CClientSettingsPacket;} {} {V}
[06Aug2023 19:00:30.079] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Initialized transformers for transformation service fml
[06Aug2023 19:00:30.359] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:ModLauncher Root Container(ModLauncher:4f56a0a2)]
[06Aug2023 19:00:30.359] [main/DEBUG] [mixin/]: Processing launch tasks for PlatformAgent[MixinPlatformAgentDefault:ModLauncher Root Container(ModLauncher:4f56a0a2)]
[06Aug2023 19:00:30.359] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(minecraft)
[06Aug2023 19:00:30.359] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(minecraft)
[06Aug2023 19:00:30.359] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(minecraft)
[06Aug2023 19:00:30.359] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(minecraft)
[06Aug2023 19:00:30.360] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(minecraft)
[06Aug2023 19:00:30.360] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(minecraft)]
[06Aug2023 19:00:30.360] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(forge)
[06Aug2023 19:00:30.360] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(forge)
[06Aug2023 19:00:30.360] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(forge)
[06Aug2023 19:00:30.360] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(forge)
[06Aug2023 19:00:30.360] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(forge)
[06Aug2023 19:00:30.360] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(forge)]
[06Aug2023 19:00:30.360] [main/DEBUG] [mixin/]: inject() running with 3 agents
[06Aug2023 19:00:30.361] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:ModLauncher Root Container(ModLauncher:4f56a0a2)]
[06Aug2023 19:00:30.361] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(minecraft)]
[06Aug2023 19:00:30.361] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(forge)]
[06Aug2023 19:00:30.361] [main/INFO] [cpw.mods.modlauncher.LaunchServiceHandler/MODLAUNCHER]: Launching target 'forgeserver' with arguments []
[06Aug2023 19:00:30.382] [main/DEBUG] [mixin/]: Error cleaning class output directory: .mixin.out
[06Aug2023 19:00:30.383] [main/DEBUG] [mixin/]: Preparing mixins for MixinEnvironment[DEFAULT]
[06Aug2023 19:00:30.423] [main/DEBUG] [io.netty.util.internal.logging.InternalLoggerFactory/]: Using SLF4J as the default logging framework
[06Aug2023 19:00:30.425] [main/DEBUG] [io.netty.util.ResourceLeakDetector/]: -Dio.netty.leakDetection.level: simple
[06Aug2023 19:00:30.425] [main/DEBUG] [io.netty.util.ResourceLeakDetector/]: -Dio.netty.leakDetection.targetRecords: 4
[06Aug2023 19:00:30.515] [main/DEBUG] [oshi.util.FileUtil/]: No oshi.properties file found from ClassLoader cpw.mods.modlauncher.TransformingClassLoader@50756c76
[06Aug2023 19:00:30.516] [main/DEBUG] [oshi.util.FileUtil/]: No oshi.properties file found from ClassLoader jdk.internal.loader.ClassLoaders$AppClassLoader@5a07e868
[06Aug2023 19:00:30.523] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /proc/cpuinfo
[06Aug2023 19:00:30.524] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /proc/cpuinfo
[06Aug2023 19:00:30.530] [main/DEBUG] [oshi.util.FileUtil/]: No oshi.architecture.properties file found from ClassLoader cpw.mods.modlauncher.TransformingClassLoader@50756c76
[06Aug2023 19:00:30.530] [main/DEBUG] [oshi.util.FileUtil/]: No oshi.architecture.properties file found from ClassLoader jdk.internal.loader.ClassLoaders$AppClassLoader@5a07e868
[06Aug2023 19:00:30.544] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /proc/meminfo
[06Aug2023 19:00:30.545] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /proc/meminfo
[06Aug2023 19:00:30.885] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/level/levelgen/structure/Structure
[06Aug2023 19:00:31.013] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/level/block/LiquidBlock
[06Aug2023 19:00:31.061] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/level/block/StairBlock
[06Aug2023 19:00:31.152] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/level/block/FlowerPotBlock
[06Aug2023 19:00:31.749] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/item/ItemStack
[06Aug2023 19:00:32.809] [main/INFO] [net.minecraft.util.datafix.DataFixers/]: Building unoptimized datafixer
[06Aug2023 19:00:33.263] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/level/biome/Biome
[06Aug2023 19:00:33.569] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/item/BucketItem
[06Aug2023 19:00:33.623] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/effect/MobEffectInstance
[06Aug2023 19:00:33.963] [main/DEBUG] [net.minecraftforge.common.ForgeI18n/CORE]: Loading I18N data entries: 5641
[06Aug2023 19:00:33.979] [main/DEBUG] [net.minecraftforge.fml.ModWorkManager/LOADING]: Using 8 threads for parallel mod-loading
[06Aug2023 19:00:33.986] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLJavaModLanguageProvider/LOADING]: Loading FMLModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@50756c76 - got cpw.mods.cl.ModuleClassLoader@42deb43a
[06Aug2023 19:00:33.986] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Creating FMLModContainer instance for net.minecraftforge.common.ForgeMod
[06Aug2023 19:00:34.013] [modloading-worker-0/DEBUG] [net.minecraftforge.versions.forge.ForgeVersion/CORE]: Forge Version package package net.minecraftforge.versions.forge, Forge, version 43.2 from cpw.mods.modlauncher.TransformingClassLoader@50756c76
[06Aug2023 19:00:34.013] [modloading-worker-0/DEBUG] [net.minecraftforge.versions.forge.ForgeVersion/CORE]: Found Forge version 43.2.0
[06Aug2023 19:00:34.013] [modloading-worker-0/DEBUG] [net.minecraftforge.versions.forge.ForgeVersion/CORE]: Found Forge spec 43.2
[06Aug2023 19:00:34.013] [modloading-worker-0/DEBUG] [net.minecraftforge.versions.forge.ForgeVersion/CORE]: Found Forge group net.minecraftforge
[06Aug2023 19:00:34.014] [modloading-worker-0/DEBUG] [net.minecraftforge.versions.mcp.MCPVersion/CORE]: MCP Version package package net.minecraftforge.versions.mcp, Minecraft, version 1.19.2 from cpw.mods.modlauncher.TransformingClassLoader@50756c76
[06Aug2023 19:00:34.014] [modloading-worker-0/DEBUG] [net.minecraftforge.versions.mcp.MCPVersion/CORE]: Found MC version information 1.19.2
[06Aug2023 19:00:34.014] [modloading-worker-0/DEBUG] [net.minecraftforge.versions.mcp.MCPVersion/CORE]: Found MCP version information 20220805.130853
[06Aug2023 19:00:34.014] [modloading-worker-0/INFO] [net.minecraftforge.common.ForgeMod/FORGEMOD]: Forge mod loading, version 43.2.0, for MC 1.19.2 with MCP 20220805.130853
[06Aug2023 19:00:34.016] [modloading-worker-0/INFO] [net.minecraftforge.common.MinecraftForge/FORGE]: MinecraftForge v43.2.0 Initialized
[06Aug2023 19:00:34.056] [modloading-worker-0/DEBUG] [io.netty.util.internal.PlatformDependent0/]: -Dio.netty.noUnsafe: false
[06Aug2023 19:00:34.056] [modloading-worker-0/DEBUG] [io.netty.util.internal.PlatformDependent0/]: Java version: 17
[06Aug2023 19:00:34.056] [modloading-worker-0/DEBUG] [io.netty.util.internal.PlatformDependent0/]: sun.misc.Unsafe.theUnsafe: available
[06Aug2023 19:00:34.057] [modloading-worker-0/DEBUG] [io.netty.util.internal.PlatformDependent0/]: sun.misc.Unsafe.copyMemory: available
[06Aug2023 19:00:34.057] [modloading-worker-0/DEBUG] [io.netty.util.internal.PlatformDependent0/]: sun.misc.Unsafe.storeFence: available
[06Aug2023 19:00:34.057] [modloading-worker-0/DEBUG] [io.netty.util.internal.PlatformDependent0/]: java.nio.Buffer.address: available
[06Aug2023 19:00:34.058] [modloading-worker-0/DEBUG] [io.netty.util.internal.PlatformDependent0/]: direct buffer constructor: unavailable
java.lang.UnsupportedOperationException: Reflective setAccessible(true) disabled
    at io.netty.util.internal.ReflectionUtil.trySetAccessible(ReflectionUtil.java:31) ~[netty-common-4.1.77.Final.jar%2381!/:4.1.77.Final]
    at io.netty.util.internal.PlatformDependent0$5.run(PlatformDependent0.java:287) ~[netty-common-4.1.77.Final.jar%2381!/:4.1.77.Final]
    at java.security.AccessController.doPrivileged(Unknown Source) ~[?:?]
    at io.netty.util.internal.PlatformDependent0.<clinit>(PlatformDependent0.java:281) ~[netty-common-4.1.77.Final.jar%2381!/:4.1.77.Final]
    at io.netty.util.internal.PlatformDependent.isAndroid(PlatformDependent.java:294) ~[netty-common-4.1.77.Final.jar%2381!/:4.1.77.Final]
    at io.netty.util.internal.PlatformDependent.<clinit>(PlatformDependent.java:88) ~[netty-common-4.1.77.Final.jar%2381!/:4.1.77.Final]
    at io.netty.util.ConstantPool.<init>(ConstantPool.java:34) ~[netty-common-4.1.77.Final.jar%2381!/:4.1.77.Final]
    at io.netty.util.AttributeKey$1.<init>(AttributeKey.java:27) ~[netty-common-4.1.77.Final.jar%2381!/:4.1.77.Final]
    at io.netty.util.AttributeKey.<clinit>(AttributeKey.java:27) ~[netty-common-4.1.77.Final.jar%2381!/:4.1.77.Final]
    at net.minecraftforge.network.NetworkConstants.<clinit>(NetworkConstants.java:34) ~[forge-1.19.2-43.2.0-universal.jar%23104!/:?]
    at net.minecraftforge.common.ForgeMod.<init>(ForgeMod.java:436) ~[forge-1.19.2-43.2.0-universal.jar%23104!/:?]
    at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) ~[?:?]
    at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance(Unknown Source) ~[?:?]
    at jdk.internal.reflect.DelegatingConstructorAccessorImpl.newInstance(Unknown Source) ~[?:?]
    at java.lang.reflect.Constructor.newInstanceWithCaller(Unknown Source) ~[?:?]
    at java.lang.reflect.Constructor.newInstance(Unknown Source) ~[?:?]
    at net.minecraftforge.fml.javafmlmod.FMLModContainer.constructMod(FMLModContainer.java:68) ~[javafmllanguage-1.19.2-43.2.0.jar%23101!/:?]
    at net.minecraftforge.fml.ModContainer.lambda$buildTransitionHandler$10(ModContainer.java:121) ~[fmlcore-1.19.2-43.2.0.jar%23100!/:?]
    at java.util.concurrent.CompletableFuture$AsyncRun.run(Unknown Source) [?:?]
    at java.util.concurrent.CompletableFuture$AsyncRun.exec(Unknown Source) [?:?]
    at java.util.concurrent.ForkJoinTask.doExec(Unknown Source) [?:?]
    at java.util.concurrent.ForkJoinPool$WorkQueue.topLevelExec(Unknown Source) [?:?]
    at java.util.concurrent.ForkJoinPool.scan(Unknown Source) [?:?]
    at java.util.concurrent.ForkJoinPool.runWorker(Unknown Source) [?:?]
    at java.util.concurrent.ForkJoinWorkerThread.run(Unknown Source) [?:?]
[06Aug2023 19:00:34.058] [modloading-worker-0/DEBUG] [io.netty.util.internal.PlatformDependent0/]: java.nio.Bits.unaligned: available, true
[06Aug2023 19:00:34.059] [modloading-worker-0/DEBUG] [io.netty.util.internal.PlatformDependent0/]: jdk.internal.misc.Unsafe.allocateUninitializedArray(int): unavailable
java.lang.IllegalAccessException: class io.netty.util.internal.PlatformDependent0$7 (in module io.netty.common) cannot access class jdk.internal.misc.Unsafe (in module java.base) because module java.base does not export jdk.internal.misc to module io.netty.common
    at jdk.internal.reflect.Reflection.newIllegalAccessException(Unknown Source) ~[?:?]
    at java.lang.reflect.AccessibleObject.checkAccess(Unknown Source) ~[?:?]
    at java.lang.reflect.Method.invoke(Unknown Source) ~[?:?]
    at io.netty.util.internal.PlatformDependent0$7.run(PlatformDependent0.java:409) ~[netty-common-4.1.77.Final.jar%2381!/:4.1.77.Final]
    at java.security.AccessController.doPrivileged(Unknown Source) ~[?:?]
    at io.netty.util.internal.PlatformDependent0.<clinit>(PlatformDependent0.java:400) ~[netty-common-4.1.77.Final.jar%2381!/:4.1.77.Final]
    at io.netty.util.internal.PlatformDependent.isAndroid(PlatformDependent.java:294) ~[netty-common-4.1.77.Final.jar%2381!/:4.1.77.Final]
    at io.netty.util.internal.PlatformDependent.<clinit>(PlatformDependent.java:88) ~[netty-common-4.1.77.Final.jar%2381!/:4.1.77.Final]
    at io.netty.util.ConstantPool.<init>(ConstantPool.java:34) ~[netty-common-4.1.77.Final.jar%2381!/:4.1.77.Final]
    at io.netty.util.AttributeKey$1.<init>(AttributeKey.java:27) ~[netty-common-4.1.77.Final.jar%2381!/:4.1.77.Final]
    at io.netty.util.AttributeKey.<clinit>(AttributeKey.java:27) ~[netty-common-4.1.77.Final.jar%2381!/:4.1.77.Final]
    at net.minecraftforge.network.NetworkConstants.<clinit>(NetworkConstants.java:34) ~[forge-1.19.2-43.2.0-universal.jar%23104!/:?]
    at net.minecraftforge.common.ForgeMod.<init>(ForgeMod.java:436) ~[forge-1.19.2-43.2.0-universal.jar%23104!/:?]
    at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) ~[?:?]
    at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance(Unknown Source) ~[?:?]
    at jdk.internal.reflect.DelegatingConstructorAccessorImpl.newInstance(Unknown Source) ~[?:?]
    at java.lang.reflect.Constructor.newInstanceWithCaller(Unknown Source) ~[?:?]
    at java.lang.reflect.Constructor.newInstance(Unknown Source) ~[?:?]
    at net.minecraftforge.fml.javafmlmod.FMLModContainer.constructMod(FMLModContainer.java:68) ~[javafmllanguage-1.19.2-43.2.0.jar%23101!/:?]
    at net.minecraftforge.fml.ModContainer.lambda$buildTransitionHandler$10(ModContainer.java:121) ~[fmlcore-1.19.2-43.2.0.jar%23100!/:?]
    at java.util.concurrent.CompletableFuture$AsyncRun.run(Unknown Source) [?:?]
    at java.util.concurrent.CompletableFuture$AsyncRun.exec(Unknown Source) [?:?]
    at java.util.concurrent.ForkJoinTask.doExec(Unknown Source) [?:?]
    at java.util.concurrent.ForkJoinPool$WorkQueue.topLevelExec(Unknown Source) [?:?]
    at java.util.concurrent.ForkJoinPool.scan(Unknown Source) [?:?]
    at java.util.concurrent.ForkJoinPool.runWorker(Unknown Source) [?:?]
    at java.util.concurrent.ForkJoinWorkerThread.run(Unknown Source) [?:?]
[06Aug2023 19:00:34.060] [modloading-worker-0/DEBUG] [io.netty.util.internal.PlatformDependent0/]: java.nio.DirectByteBuffer.<init>(long, int): unavailable
[06Aug2023 19:00:34.060] [modloading-worker-0/DEBUG] [io.netty.util.internal.PlatformDependent/]: sun.misc.Unsafe: available
[06Aug2023 19:00:34.060] [modloading-worker-0/DEBUG] [io.netty.util.internal.PlatformDependent/]: maxDirectMemory: 16106127360 bytes (maybe)
[06Aug2023 19:00:34.060] [modloading-worker-0/DEBUG] [io.netty.util.internal.PlatformDependent/]: -Dio.netty.tmpdir: /tmp (java.io.tmpdir)
[06Aug2023 19:00:34.060] [modloading-worker-0/DEBUG] [io.netty.util.internal.PlatformDependent/]: -Dio.netty.bitMode: 64 (sun.arch.data.model)
[06Aug2023 19:00:34.061] [modloading-worker-0/DEBUG] [io.netty.util.internal.PlatformDependent/]: -Dio.netty.maxDirectMemory: -1 bytes
[06Aug2023 19:00:34.061] [modloading-worker-0/DEBUG] [io.netty.util.internal.PlatformDependent/]: -Dio.netty.uninitializedArrayAllocationThreshold: -1
[06Aug2023 19:00:34.061] [modloading-worker-0/DEBUG] [io.netty.util.internal.CleanerJava9/]: java.nio.ByteBuffer.cleaner(): available
[06Aug2023 19:00:34.061] [modloading-worker-0/DEBUG] [io.netty.util.internal.PlatformDependent/]: -Dio.netty.noPreferDirect: false
[06Aug2023 19:00:34.078] [modloading-worker-0/DEBUG] [net.minecraftforge.common.ForgeMod/FORGEMOD]: Loading Network data for FML net version: FML3
[06Aug2023 19:00:34.104] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.config.ConfigTracker/CONFIG]: Config file forge-client.toml for forge tracking
[06Aug2023 19:00:34.104] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.config.ConfigTracker/CONFIG]: Config file forge-server.toml for forge tracking
[06Aug2023 19:00:34.104] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.config.ConfigTracker/CONFIG]: Config file forge-common.toml for forge tracking
[06Aug2023 19:00:34.124] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Attempting to inject @EventBusSubscriber classes into the eventbus for forge
[06Aug2023 19:00:34.125] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing net.minecraftforge.common.ForgeSpawnEggItem$CommonHandler to MOD
[06Aug2023 19:00:34.158] [main/DEBUG] [net.minecraftforge.common.capabilities.CapabilityManager/CAPABILITIES]: Attempting to automatically register: Lnet/minecraftforge/energy/IEnergyStorage;
[06Aug2023 19:00:34.159] [main/DEBUG] [net.minecraftforge.common.capabilities.CapabilityManager/CAPABILITIES]: Attempting to automatically register: Lnet/minecraftforge/fluids/capability/IFluidHandler;
[06Aug2023 19:00:34.159] [main/DEBUG] [net.minecraftforge.common.capabilities.CapabilityManager/CAPABILITIES]: Attempting to automatically register: Lnet/minecraftforge/fluids/capability/IFluidHandlerItem;
[06Aug2023 19:00:34.159] [main/DEBUG] [net.minecraftforge.common.capabilities.CapabilityManager/CAPABILITIES]: Attempting to automatically register: Lnet/minecraftforge/items/IItemHandler;
[06Aug2023 19:00:34.307] [main/DEBUG] [net.minecraftforge.fml.config.ConfigTracker/CONFIG]: Loading configs type COMMON
[06Aug2023 19:00:34.308] [main/DEBUG] [net.minecraftforge.fml.config.ConfigFileTypeHandler/CONFIG]: Built TOML config for /data/config/forge-common.toml
[06Aug2023 19:00:34.309] [main/DEBUG] [net.minecraftforge.fml.config.ConfigFileTypeHandler/CONFIG]: Loaded TOML config file /data/config/forge-common.toml
[06Aug2023 19:00:34.309] [main/DEBUG] [net.minecraftforge.fml.config.ConfigFileTypeHandler/CONFIG]: Watching TOML config file /data/config/forge-common.toml for changes
[06Aug2023 19:00:34.311] [main/DEBUG] [net.minecraftforge.common.ForgeConfig/FORGEMOD]: Loaded forge config file forge-common.toml
[06Aug2023 19:00:34.311] [Thread-0/DEBUG] [net.minecraftforge.fml.config.ConfigFileTypeHandler/CONFIG]: Config file forge-common.toml changed, sending notifies
[06Aug2023 19:00:34.311] [Thread-0/DEBUG] [net.minecraftforge.common.ForgeConfig/FORGEMOD]: Forge config just got changed on the file system!
[06Aug2023 19:00:34.312] [Thread-0/DEBUG] [net.minecraftforge.fml.config.ConfigFileTypeHandler/CONFIG]: Config file forge-common.toml changed, sending notifies
[06Aug2023 19:00:34.312] [Thread-0/DEBUG] [net.minecraftforge.common.ForgeConfig/FORGEMOD]: Forge config just got changed on the file system!
[06Aug2023 19:00:34.313] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: Global Forge version check system disabled, no further processing.
[06Aug2023 19:00:35.071] [main/INFO] [com.mojang.authlib.yggdrasil.YggdrasilAuthenticationService/]: Environment: authHost='https://authserver.mojang.com', accountsHost='https://api.mojang.com', sessionHost='https://sessionserver.mojang.com', servicesHost='https://api.minecraftservices.com', name='PROD'
[06Aug2023 19:00:35.485] [main/WARN] [net.minecraft.server.packs.VanillaPackResources/]: Assets URL 'union:/data/libraries/net/minecraft/server/1.19.2-20220805.130853/server-1.19.2-20220805.130853-srg.jar%2399!/assets/.mcassetsroot' uses unexpected schema
[06Aug2023 19:00:35.485] [main/WARN] [net.minecraft.server.packs.VanillaPackResources/]: Assets URL 'union:/data/libraries/net/minecraft/server/1.19.2-20220805.130853/server-1.19.2-20220805.130853-srg.jar%2399!/data/.mcassetsroot' uses unexpected schema
[06Aug2023 19:00:35.513] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:forge for mod file /data/libraries/net/minecraftforge/forge/1.19.2-43.2.0/forge-1.19.2-43.2.0-universal.jar
[06Aug2023 19:00:36.727] [main/INFO] [net.minecraft.world.item.crafting.RecipeManager/]: Loaded 7 recipes
[06Aug2023 19:00:36.993] [main/INFO] [net.minecraft.advancements.AdvancementList/]: Loaded 1179 advancements
[06Aug2023 19:00:37.291] [main/DEBUG] [net.minecraftforge.common.ForgeHooks/WP]: Gathering id map for writing to world save world
[06Aug2023 19:00:37.297] [main/DEBUG] [net.minecraftforge.common.ForgeHooks/WP]: ID Map collection complete world
[06Aug2023 19:00:37.324] [Server thread/INFO] [net.minecraft.server.dedicated.DedicatedServer/]: Starting minecraft server version 1.19.2
[06Aug2023 19:00:37.324] [Server thread/INFO] [net.minecraft.server.dedicated.DedicatedServer/]: Loading properties
[06Aug2023 19:00:37.325] [Server thread/INFO] [net.minecraft.server.dedicated.DedicatedServer/]: Default game type: CREATIVE
[06Aug2023 19:00:37.325] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Generating keypair
[06Aug2023 19:00:37.396] [Server thread/INFO] [net.minecraft.server.dedicated.DedicatedServer/]: Starting Minecraft server on *:25565
[06Aug2023 19:00:37.405] [Server thread/DEBUG] [io.netty.util.internal.NativeLibraryLoader/]: -Dio.netty.native.workdir: /tmp (io.netty.tmpdir)
[06Aug2023 19:00:37.405] [Server thread/DEBUG] [io.netty.util.internal.NativeLibraryLoader/]: -Dio.netty.native.deleteLibAfterLoading: true
[06Aug2023 19:00:37.405] [Server thread/DEBUG] [io.netty.util.internal.NativeLibraryLoader/]: -Dio.netty.native.tryPatchShadedId: true
[06Aug2023 19:00:37.405] [Server thread/DEBUG] [io.netty.util.internal.NativeLibraryLoader/]: -Dio.netty.native.detectNativeLibraryDuplicates: true
[06Aug2023 19:00:37.409] [Server thread/DEBUG] [io.netty.util.internal.NativeLibraryLoader/]: Successfully loaded the library /tmp/libnetty_transport_native_epoll_x86_6417093234386668649613.so
[06Aug2023 19:00:37.411] [Server thread/DEBUG] [io.netty.util.NetUtil/]: -Djava.net.preferIPv4Stack: true
[06Aug2023 19:00:37.411] [Server thread/DEBUG] [io.netty.util.NetUtil/]: -Djava.net.preferIPv6Addresses: false
[06Aug2023 19:00:37.412] [Server thread/DEBUG] [io.netty.util.NetUtilInitializations/]: Loopback interface: lo (lo, 127.0.0.1)
[06Aug2023 19:00:37.413] [Server thread/DEBUG] [io.netty.util.NetUtil/]: /proc/sys/net/core/somaxconn: 4096
[06Aug2023 19:00:37.415] [Server thread/INFO] [net.minecraft.server.network.ServerConnectionListener/]: Using epoll channel type
[06Aug2023 19:00:37.425] [Server thread/DEBUG] [io.netty.channel.MultithreadEventLoopGroup/]: -Dio.netty.eventLoopThreads: 16
[06Aug2023 19:00:37.437] [Server thread/DEBUG] [io.netty.util.internal.InternalThreadLocalMap/]: -Dio.netty.threadLocalMap.stringBuilder.initialSize: 1024
[06Aug2023 19:00:37.437] [Server thread/DEBUG] [io.netty.util.internal.InternalThreadLocalMap/]: -Dio.netty.threadLocalMap.stringBuilder.maxSize: 4096
[06Aug2023 19:00:37.446] [Server thread/DEBUG] [io.netty.util.internal.PlatformDependent/]: org.jctools-core.MpscChunkedArrayQueue: available
[06Aug2023 19:00:37.454] [Server thread/DEBUG] [io.netty.channel.DefaultChannelId/]: -Dio.netty.processId: 519 (auto-detected)
[06Aug2023 19:00:37.455] [Server thread/DEBUG] [io.netty.channel.DefaultChannelId/]: -Dio.netty.machineId: 02:42:ac:ff:fe:12:00:02 (auto-detected)
[06Aug2023 19:00:37.471] [Server thread/DEBUG] [io.netty.buffer.PooledByteBufAllocator/]: -Dio.netty.allocator.numHeapArenas: 16
[06Aug2023 19:00:37.471] [Server thread/DEBUG] [io.netty.buffer.PooledByteBufAllocator/]: -Dio.netty.allocator.numDirectArenas: 16
[06Aug2023 19:00:37.471] [Server thread/DEBUG] [io.netty.buffer.PooledByteBufAllocator/]: -Dio.netty.allocator.pageSize: 8192
[06Aug2023 19:00:37.471] [Server thread/DEBUG] [io.netty.buffer.PooledByteBufAllocator/]: -Dio.netty.allocator.maxOrder: 9
[06Aug2023 19:00:37.471] [Server thread/DEBUG] [io.netty.buffer.PooledByteBufAllocator/]: -Dio.netty.allocator.chunkSize: 4194304
[06Aug2023 19:00:37.471] [Server thread/DEBUG] [io.netty.buffer.PooledByteBufAllocator/]: -Dio.netty.allocator.smallCacheSize: 256
[06Aug2023 19:00:37.471] [Server thread/DEBUG] [io.netty.buffer.PooledByteBufAllocator/]: -Dio.netty.allocator.normalCacheSize: 64
[06Aug2023 19:00:37.471] [Server thread/DEBUG] [io.netty.buffer.PooledByteBufAllocator/]: -Dio.netty.allocator.maxCachedBufferCapacity: 32768
[06Aug2023 19:00:37.471] [Server thread/DEBUG] [io.netty.buffer.PooledByteBufAllocator/]: -Dio.netty.allocator.cacheTrimInterval: 8192
[06Aug2023 19:00:37.471] [Server thread/DEBUG] [io.netty.buffer.PooledByteBufAllocator/]: -Dio.netty.allocator.cacheTrimIntervalMillis: 0
[06Aug2023 19:00:37.471] [Server thread/DEBUG] [io.netty.buffer.PooledByteBufAllocator/]: -Dio.netty.allocator.useCacheForAllThreads: false
[06Aug2023 19:00:37.471] [Server thread/DEBUG] [io.netty.buffer.PooledByteBufAllocator/]: -Dio.netty.allocator.maxCachedByteBuffersPerChunk: 1023
[06Aug2023 19:00:37.477] [Server thread/DEBUG] [io.netty.buffer.ByteBufUtil/]: -Dio.netty.allocator.type: pooled
[06Aug2023 19:00:37.477] [Server thread/DEBUG] [io.netty.buffer.ByteBufUtil/]: -Dio.netty.threadLocalDirectBufferSize: 0
[06Aug2023 19:00:37.477] [Server thread/DEBUG] [io.netty.buffer.ByteBufUtil/]: -Dio.netty.maxThreadLocalCharBufferSize: 16384
[06Aug2023 19:00:37.482] [Server thread/WARN] [net.minecraft.server.dedicated.DedicatedServer/]: **** SERVER IS RUNNING IN OFFLINE/INSECURE MODE!
[06Aug2023 19:00:37.482] [Server thread/WARN] [net.minecraft.server.dedicated.DedicatedServer/]: The server will make no attempt to authenticate usernames. Beware.
[06Aug2023 19:00:37.482] [Server thread/WARN] [net.minecraft.server.dedicated.DedicatedServer/]: While this makes the game possible to play without internet access, it also opens up the ability for hackers to connect with any username they choose.
[06Aug2023 19:00:37.482] [Server thread/WARN] [net.minecraft.server.dedicated.DedicatedServer/]: To change this, set "online-mode" to "true" in the server.properties file.
[06Aug2023 19:00:37.490] [Server thread/DEBUG] [net.minecraftforge.fml.loading.FileUtils/CORE]: Found existing serverconfig directory : ./world/serverconfig
[06Aug2023 19:00:37.490] [Server thread/DEBUG] [net.minecraftforge.fml.config.ConfigTracker/CONFIG]: Loading configs type SERVER
[06Aug2023 19:00:37.490] [Server thread/DEBUG] [net.minecraftforge.fml.config.ConfigFileTypeHandler/CONFIG]: Built TOML config for ./world/serverconfig/forge-server.toml
[06Aug2023 19:00:37.491] [Server thread/DEBUG] [net.minecraftforge.fml.config.ConfigFileTypeHandler/CONFIG]: Loaded TOML config file ./world/serverconfig/forge-server.toml
[06Aug2023 19:00:37.491] [Server thread/DEBUG] [net.minecraftforge.fml.config.ConfigFileTypeHandler/CONFIG]: Watching TOML config file ./world/serverconfig/forge-server.toml for changes
[06Aug2023 19:00:37.491] [Server thread/DEBUG] [net.minecraftforge.common.ForgeConfig/FORGEMOD]: Loaded forge config file forge-server.toml
[06Aug2023 19:00:37.492] [Thread-0/DEBUG] [net.minecraftforge.fml.config.ConfigFileTypeHandler/CONFIG]: Config file forge-server.toml changed, sending notifies
[06Aug2023 19:00:37.492] [Thread-0/DEBUG] [net.minecraftforge.common.ForgeConfig/FORGEMOD]: Forge config just got changed on the file system!
[06Aug2023 19:00:37.492] [Thread-0/DEBUG] [net.minecraftforge.fml.config.ConfigFileTypeHandler/CONFIG]: Config file forge-server.toml changed, sending notifies
[06Aug2023 19:00:37.492] [Thread-0/DEBUG] [net.minecraftforge.common.ForgeConfig/FORGEMOD]: Forge config just got changed on the file system!
[06Aug2023 19:00:37.506] [Server thread/INFO] [net.minecraft.server.dedicated.DedicatedServer/]: Preparing level "world"
[06Aug2023 19:00:37.653] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Preparing start region for dimension minecraft:overworld
[06Aug2023 19:00:40.161] [Worker-Main-5/INFO] [net.minecraft.server.level.progress.LoggerChunkProgressListener/]: Preparing spawn area: 0%
[06Aug2023 19:00:40.162] [Worker-Main-7/INFO] [net.minecraft.server.level.progress.LoggerChunkProgressListener/]: Preparing spawn area: 0%
[06Aug2023 19:00:40.163] [Worker-Main-2/INFO] [net.minecraft.server.level.progress.LoggerChunkProgressListener/]: Preparing spawn area: 0%
[06Aug2023 19:00:40.164] [Worker-Main-4/INFO] [net.minecraft.server.level.progress.LoggerChunkProgressListener/]: Preparing spawn area: 0%
[06Aug2023 19:00:40.167] [Worker-Main-1/INFO] [net.minecraft.server.level.progress.LoggerChunkProgressListener/]: Preparing spawn area: 0%
[06Aug2023 19:00:40.168] [Worker-Main-5/INFO] [net.minecraft.server.level.progress.LoggerChunkProgressListener/]: Preparing spawn area: 0%
[06Aug2023 19:00:40.391] [Netty Epoll Server IO #1/DEBUG] [io.netty.util.Recycler/]: -Dio.netty.recycler.maxCapacityPerThread: 4096
[06Aug2023 19:00:40.391] [Netty Epoll Server IO #1/DEBUG] [io.netty.util.Recycler/]: -Dio.netty.recycler.ratio: 8
[06Aug2023 19:00:40.391] [Netty Epoll Server IO #1/DEBUG] [io.netty.util.Recycler/]: -Dio.netty.recycler.chunkSize: 32
[06Aug2023 19:00:40.391] [Netty Epoll Server IO #1/DEBUG] [io.netty.util.Recycler/]: -Dio.netty.recycler.blocking: false
[06Aug2023 19:00:40.397] [Netty Epoll Server IO #1/DEBUG] [io.netty.buffer.AbstractByteBuf/]: -Dio.netty.buffer.checkAccessible: true
[06Aug2023 19:00:40.397] [Netty Epoll Server IO #1/DEBUG] [io.netty.buffer.AbstractByteBuf/]: -Dio.netty.buffer.checkBounds: true
[06Aug2023 19:00:40.399] [Netty Epoll Server IO #1/DEBUG] [io.netty.util.ResourceLeakDetectorFactory/]: Loaded default ResourceLeakDetector: io.netty.util.ResourceLeakDetector@5a3154c2
[06Aug2023 19:00:40.414] [Netty Epoll Server IO #1/INFO] [net.minecraftforge.server.ServerLifecycleHooks/SERVERHOOKS]: Disconnecting Player (server is still starting): literal{Server is still starting! Please wait before reconnecting.}
[06Aug2023 19:00:45.517] [Netty Epoll Server IO #2/INFO] [net.minecraftforge.server.ServerLifecycleHooks/SERVERHOOKS]: Disconnecting Player (server is still starting): literal{Server is still starting! Please wait before reconnecting.}
[06Aug2023 19:00:49.300] [Worker-Main-4/INFO] [net.minecraft.server.level.progress.LoggerChunkProgressListener/]: Preparing spawn area: 0%
[06Aug2023 19:00:49.301] [Worker-Main-4/INFO] [net.minecraft.server.level.progress.LoggerChunkProgressListener/]: Preparing spawn area: 0%
[06Aug2023 19:00:49.301] [Worker-Main-6/INFO] [net.minecraft.server.level.progress.LoggerChunkProgressListener/]: Preparing spawn area: 0%
[06Aug2023 19:00:49.301] [Worker-Main-4/INFO] [net.minecraft.server.level.progress.LoggerChunkProgressListener/]: Preparing spawn area: 0%
[06Aug2023 19:00:49.301] [Worker-Main-2/INFO] [net.minecraft.server.level.progress.LoggerChunkProgressListener/]: Preparing spawn area: 0%
[06Aug2023 19:00:49.302] [Worker-Main-6/INFO] [net.minecraft.server.level.progress.LoggerChunkProgressListener/]: Preparing spawn area: 0%
[06Aug2023 19:00:49.302] [Worker-Main-6/INFO] [net.minecraft.server.level.progress.LoggerChunkProgressListener/]: Preparing spawn area: 0%
[06Aug2023 19:00:49.302] [Worker-Main-4/INFO] [net.minecraft.server.level.progress.LoggerChunkProgressListener/]: Preparing spawn area: 0%
[06Aug2023 19:00:49.302] [Worker-Main-6/INFO] [net.minecraft.server.level.progress.LoggerChunkProgressListener/]: Preparing spawn area: 0%
[06Aug2023 19:00:49.302] [Worker-Main-6/INFO] [net.minecraft.server.level.progress.LoggerChunkProgressListener/]: Preparing spawn area: 0%
[06Aug2023 19:00:49.302] [Worker-Main-4/INFO] [net.minecraft.server.level.progress.LoggerChunkProgressListener/]: Preparing spawn area: 0%
[06Aug2023 19:00:49.302] [Worker-Main-6/INFO] [net.minecraft.server.level.progress.LoggerChunkProgressListener/]: Preparing spawn area: 0%
[06Aug2023 19:00:49.302] [Worker-Main-6/INFO] [net.minecraft.server.level.progress.LoggerChunkProgressListener/]: Preparing spawn area: 0%
[06Aug2023 19:00:49.302] [Worker-Main-7/INFO] [net.minecraft.server.level.progress.LoggerChunkProgressListener/]: Preparing spawn area: 0%
[06Aug2023 19:00:49.303] [Worker-Main-7/INFO] [net.minecraft.server.level.progress.LoggerChunkProgressListener/]: Preparing spawn area: 0%
[06Aug2023 19:00:49.303] [Worker-Main-7/INFO] [net.minecraft.server.level.progress.LoggerChunkProgressListener/]: Preparing spawn area: 0%
[06Aug2023 19:00:49.303] [Worker-Main-4/INFO] [net.minecraft.server.level.progress.LoggerChunkProgressListener/]: Preparing spawn area: 0%
[06Aug2023 19:00:49.303] [Worker-Main-4/INFO] [net.minecraft.server.level.progress.LoggerChunkProgressListener/]: Preparing spawn area: 0%
[06Aug2023 19:00:49.654] [Worker-Main-6/INFO] [net.minecraft.server.level.progress.LoggerChunkProgressListener/]: Preparing spawn area: 28%
[06Aug2023 19:00:50.154] [Worker-Main-4/INFO] [net.minecraft.server.level.progress.LoggerChunkProgressListener/]: Preparing spawn area: 82%
[06Aug2023 19:00:50.577] [Server thread/INFO] [net.minecraft.server.level.progress.LoggerChunkProgressListener/]: Time elapsed: 12924 ms
[06Aug2023 19:00:50.577] [Server thread/INFO] [net.minecraft.server.dedicated.DedicatedServer/]: Done (13.088s)! For help, type "help"
[06Aug2023 19:00:50.577] [Server thread/INFO] [net.minecraft.server.dedicated.DedicatedServer/]: Starting remote control listener
[06Aug2023 19:00:50.583] [Server thread/INFO] [net.minecraft.server.rcon.thread.GenericThread/]: Thread RCON Listener started
[06Aug2023 19:00:50.584] [Server thread/INFO] [net.minecraft.server.rcon.thread.RconThread/]: RCON running on 0.0.0.0:25575
[06Aug2023 19:00:50.587] [Server thread/DEBUG] [net.minecraftforge.common.ForgeI18n/CORE]: Loading I18N data entries: 208
[06Aug2023 19:00:50.589] [Server thread/INFO] [net.minecraftforge.server.permission.PermissionAPI/]: Successfully initialized permission handler forge:default_handler
[06Aug2023 19:01:39.794] [Netty Epoll Server IO #13/DEBUG] [net.minecraftforge.network.NetworkRegistry/NETREGISTRY]: Channel 'fml:loginwrapper' : Vanilla acceptance test: ACCEPTED
[06Aug2023 19:01:39.794] [Netty Epoll Server IO #13/DEBUG] [net.minecraftforge.network.NetworkRegistry/NETREGISTRY]: Channel 'forge:tier_sorting' : Vanilla acceptance test: ACCEPTED
[06Aug2023 19:01:39.794] [Netty Epoll Server IO #13/DEBUG] [net.minecraftforge.network.NetworkRegistry/NETREGISTRY]: Channel 'fml:handshake' : Vanilla acceptance test: ACCEPTED
[06Aug2023 19:01:39.794] [Netty Epoll Server IO #13/DEBUG] [net.minecraftforge.network.NetworkRegistry/NETREGISTRY]: Channel 'minecraft:unregister' : Vanilla acceptance test: ACCEPTED
[06Aug2023 19:01:39.794] [Netty Epoll Server IO #13/DEBUG] [net.minecraftforge.network.NetworkRegistry/NETREGISTRY]: Channel 'fml:play' : Vanilla acceptance test: ACCEPTED
[06Aug2023 19:01:39.794] [Netty Epoll Server IO #13/DEBUG] [net.minecraftforge.network.NetworkRegistry/NETREGISTRY]: Channel 'minecraft:register' : Vanilla acceptance test: ACCEPTED
[06Aug2023 19:01:39.794] [Netty Epoll Server IO #13/DEBUG] [net.minecraftforge.network.NetworkRegistry/NETREGISTRY]: Channel 'forge:split' : Vanilla acceptance test: ACCEPTED
[06Aug2023 19:01:39.794] [Netty Epoll Server IO #13/DEBUG] [net.minecraftforge.network.NetworkRegistry/NETREGISTRY]: Accepting channel list from vanilla
[06Aug2023 19:01:39.795] [Netty Epoll Server IO #13/DEBUG] [net.minecraftforge.network.HandshakeHandler/FMLHANDSHAKE]: Starting new vanilla impl connection.
[06Aug2023 19:01:39.839] [Server thread/DEBUG] [net.minecraftforge.network.HandshakeHandler/FMLHANDSHAKE]: Handshake complete!
[06Aug2023 19:01:39.910] [Server thread/INFO] [net.minecraftforge.common.AdvancementLoadFix/]: Using new advancement loading for net.minecraft.server.PlayerAdvancements@5b631ac
[06Aug2023 19:01:39.918] [Server thread/INFO] [net.minecraft.server.players.PlayerList/]: Gnuk[/192.168.1.6:52786] logged in with entity id 151 at (154.19588728337501, 39.0, -109.78831242299614)
[06Aug2023 19:01:39.928] [Server thread/DEBUG] [net.minecraftforge.network.filters.NetworkFilters/]: Injected net.minecraftforge.network.filters.VanillaConnectionNetworkFilter@54b4d67e into net.minecraft.network.Connection@37bd3ec5
[06Aug2023 19:01:39.939] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Gnuk joined the game
[06Aug2023 19:01:41.292] [Server thread/DEBUG] [io.netty.util.internal.ThreadLocalRandom/]: -Dio.netty.initialSeedUniquifier: 0x6516d7a3cebef0cb
[06Aug2023 19:01:54.194] [Server thread/INFO] [net.minecraft.server.network.ServerGamePacketListenerImpl/]: Gnuk lost connection: Disconnected
[06Aug2023 19:01:54.194] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Gnuk left the game
[06Aug2023 19:04:24.300] [Netty Epoll Server IO #0/DEBUG] [net.minecraftforge.network.HandshakeHandler/FMLHANDSHAKE]: Starting new modded impl connection. Found 21 messages to dispatch.
[06Aug2023 19:04:24.339] [Server thread/DEBUG] [net.minecraftforge.network.HandshakeHandler/FMLHANDSHAKE]: Sending ticking packet info 'net.minecraftforge.network.HandshakeMessages$S2CModData' to 'fml:handshake' sequence 0
[06Aug2023 19:04:24.389] [Server thread/DEBUG] [net.minecraftforge.network.HandshakeHandler/FMLHANDSHAKE]: Sending ticking packet info 'net.minecraftforge.network.HandshakeMessages$S2CModList' to 'fml:handshake' sequence 1
[06Aug2023 19:04:24.443] [Server thread/INFO] [net.minecraft.server.network.ServerLoginPacketListenerImpl/]: com.mojang.authlib.GameProfile@436505f6[id=<null>,name=Gnuk,properties={},legacy=false] (/192.168.1.6:52256) lost connection: Disconnected
[06Aug2023 19:05:50.547] [Server thread/DEBUG] [net.minecraftforge.common.ForgeHooks/WP]: Gathering id map for writing to world save world
[06Aug2023 19:05:50.550] [Server thread/DEBUG] [net.minecraftforge.common.ForgeHooks/WP]: ID Map collection complete world
[06Aug2023 19:10:50.545] [Server thread/DEBUG] [net.minecraftforge.common.ForgeHooks/WP]: Gathering id map for writing to world save world
[06Aug2023 19:10:50.547] [Server thread/DEBUG] [net.minecraftforge.common.ForgeHooks/WP]: ID Map collection complete world
[06Aug2023 19:15:50.544] [Server thread/DEBUG] [net.minecraftforge.common.ForgeHooks/WP]: Gathering id map for writing to world save world
[06Aug2023 19:15:50.546] [Server thread/DEBUG] [net.minecraftforge.common.ForgeHooks/WP]: ID Map collection complete world
[06Aug2023 19:20:50.575] [Server thread/DEBUG] [net.minecraftforge.common.ForgeHooks/WP]: Gathering id map for writing to world save world
[06Aug2023 19:20:50.578] [Server thread/DEBUG] [net.minecraftforge.common.ForgeHooks/WP]: ID Map collection complete world
[06Aug2023 19:25:50.543] [Server thread/DEBUG] [net.minecraftforge.common.ForgeHooks/WP]: Gathering id map for writing to world save world
[06Aug2023 19:25:50.545] [Server thread/DEBUG] [net.minecraftforge.common.ForgeHooks/WP]: ID Map collection complete world
[06Aug2023 19:30:50.544] [Server thread/DEBUG] [net.minecraftforge.common.ForgeHooks/WP]: Gathering id map for writing to world save world
[06Aug2023 19:30:50.548] [Server thread/DEBUG] [net.minecraftforge.common.ForgeHooks/WP]: ID Map collection complete world
root@ccdae3dae801:/data/logs# 
root@ccdae3dae801:/data/logs# exit
exit
➜  .minecraft sudo docker container logs -f minetest      
+ export HOME=/data
+ HOME=/data
++ id -u
++ id -g
++ ls -lnd /data
+ log 'Running as uid=1000 gid=1000 with /data as '\''drwxrwxr-x 1 1000 1000 924 Aug  6 18:54 /data'\'''
+ local oldState
++ shopt -po xtrace
+ oldState='set -o xtrace'
+ shopt -u -o xtrace
[init] 2023-08-06 19:00:19+00:00 Running as uid=1000 gid=1000 with /data as 'drwxrwxr-x 1 1000 1000 924 Aug  6 18:54 /data'
+ '[' '!' -e /data/eula.txt ']'
+ isTrue false
+ case "${1,,}" in
+ return 1
+ isTrue false
+ case "${1,,}" in
+ return 1
+ [[ -n '' ]]
+ [[ -n '' ]]
+ echo password=603e356ae2b89e8fe714ea48
+ fixJavaPath
+ which java
+ cd /data
+ export ORIGINAL_TYPE=FORGE
+ ORIGINAL_TYPE=FORGE
+ isTrue false
+ case "${1,,}" in
+ return 1
+ isTrue false
+ case "${1,,}" in
+ return 1
+ [[ -n '' ]]
+ [[ -n '' ]]
+ [[ -n '' ]]
+ [[ -n '' ]]
+ [[ -n '' ]]
+ : ''
+ case "${TYPE^^}" in
+ [[ -n '' ]]
+ log 'Resolving type given FORGE'
+ local oldState
++ shopt -po xtrace
+ oldState='set -o xtrace'
+ shopt -u -o xtrace
[init] 2023-08-06 19:00:19+00:00 Resolving type given FORGE
+ case "${TYPE^^}" in
+ exec /start-deployForge
+ [[ -n '' ]]
+ mc-image-helper install-forge --output-directory=/data --results-file=/data/.run-forge.env --minecraft-version=1.19.2 --forge-version=RECOMMENDED --force-reinstall=false
[mc-image-helper] 19:00:21.314 DEBUG : JSON FETCH: uri=https://files.minecraftforge.net/maven/net/minecraftforge/forge/promotions_slim.json headers=[user-agent: itzg/mc-image-helper/1.32.9 (cmd=forge), x-fetch-session: 3de38eb7-6887-47c5-b6b9-d7d39278e9ff, accept: application/json, host: files.minecraftforge.net]
[mc-image-helper] 19:00:22.077 DEBUG : JSON FETCH: uri=https://files.minecraftforge.net/net/minecraftforge/forge/promotions_slim.json headers=[user-agent: itzg/mc-image-helper/1.32.9 (cmd=forge), x-fetch-session: 3de38eb7-6887-47c5-b6b9-d7d39278e9ff, accept: application/json, host: files.minecraftforge.net]
[mc-image-helper] 19:00:22.305 DEBUG : Narrowed forge versions to {recommended=43.2.0, latest=43.2.21} and looking for recommended
[mc-image-helper] 19:00:22.305 INFO  : Forge version 43.2.0 for minecraft version 1.19.2 is already installed
[mc-image-helper] 19:00:22.305 DEBUG : Populating results file /data/.run-forge.env
[mc-image-helper] 19:00:22.305 DEBUG : Writing SERVER=/data/./run.sh to results file
[mc-image-helper] 19:00:22.305 DEBUG : Writing FAMILY=FORGE to results file
[mc-image-helper] 19:00:22.305 DEBUG : Writing VERSION=1.19.2 to results file
[mc-image-helper] 19:00:22.306 DEBUG : Writing TYPE=FORGE to results file
+ set -a
+ source /data/.run-forge.env
++ SERVER=/data/./run.sh
++ FAMILY=FORGE
++ VERSION=1.19.2
++ TYPE=FORGE
+ set +a
+ export FAMILY=FORGE
+ FAMILY=FORGE
+ exec /start-setupWorld
+ '[' FORGE = CURSEFORGE ']'
+ worldDest=/data/world
+ [[ -n '' ]]
+ exec /start-setupDatapack
+ out_dir=/data/world/datapacks
+ isTrue false
+ case "${1,,}" in
+ return 1
+ [[ -n '' ]]
+ [[ -n '' ]]
+ [[ -n '' ]]
+ [[ -n '' ]]
+ exec /start-setupForgeApiMods
+ isTrue false
+ case "${1,,}" in
+ return 1
+ '[' '' ']'
+ '[' '' ']'
+ exec /start-setupModpack
+ CURSE_URL_BASE=https://minecraft.curseforge.com/projects
+ isTrue false
+ case "${1,,}" in
+ return 1
+ handlePackwiz
+ [[ -n '' ]]
+ handleModpackZip
+ [[ -n '' ]]
+ handleListings
+ usesMods
+ case "$FAMILY" in
+ return 0
+ usesPlugins
+ case "$FAMILY" in
+ return 1
+ usesPlugins
+ case "$FAMILY" in
+ return 1
+ usesMods
+ case "$FAMILY" in
+ return 0
+ outDir=/data/mods
+ usesPlugins
+ case "$FAMILY" in
+ return 1
+ [[ -n '' ]]
+ [[ -n '' ]]
+ [[ -n '' ]]
+ [[ -n '' ]]
+ handleCurseForgeManifest
+ [[ -n '' ]]
+ handleGenericPacks
+ : ''
+ : ''
+ : ''
+ [[ -n '' ]]
+ handleModrinthProjects
+ : ''
+ : true
+ : release
+ [[ -n '' ]]
+ exec /start-setupModconfig
+ isTrue true
+ case "${1,,}" in
+ return 0
+ updateArg=--skip-newer-in-destination
+ isTrue true
+ case "${1,,}" in
+ return 0
+ subcommand=sync-and-interpolate
+ : /plugins
+ : /data/plugins
+ usesPlugins
+ case "$FAMILY" in
+ return 1
+ : /mods
+ : /data/mods
+ usesMods
+ case "$FAMILY" in
+ return 0
+ '[' -d /mods ']'
+ : /config
+ : /data/config
+ '[' -d /config ']'
+ exec /start-setupServerProperties
[init] 2023-08-06 19:00:22+00:00 Disabling whitelist functionality
[init] 2023-08-06 19:00:22+00:00 DEBUG: Setting white-list to 'false' in /data/server.properties
[init] 2023-08-06 19:00:22+00:00 DEBUG: Setting enforce-whitelist to 'false' in /data/server.properties
[init] 2023-08-06 19:00:22+00:00 DEBUG: Setting server-name to 'mine dos brodi' in /data/server.properties
[init] 2023-08-06 19:00:22+00:00 DEBUG: Adding announce-player-achievements with 'true' in /data/server.properties
[init] 2023-08-06 19:00:22+00:00 DEBUG: Setting enable-rcon to 'true' in /data/server.properties
[init] 2023-08-06 19:00:22+00:00 DEBUG: Setting rcon.password to '*****' in /data/server.properties
[init] 2023-08-06 19:00:22+00:00 DEBUG: Setting rcon.port to '25575' in /data/server.properties
[init] 2023-08-06 19:00:23+00:00 DEBUG: Setting motd to 'Sem choro papai' in /data/server.properties
[init] 2023-08-06 19:00:23+00:00 DEBUG: Setting level-type to 'AMPLIFIED' in /data/server.properties
[init] 2023-08-06 19:00:23+00:00 DEBUG: Setting difficulty to 'hard' in /data/server.properties
+ versionLessThan 1.7.6
+ mc-image-helper compare-versions 1.19.2 lt 1.7.6
+ return 1
+ opsFile=ops.json
+ whitelistFile=whitelist.json
+ isTrue ''
+ case "${1,,}" in
+ return 1
+ '[' -n '' ']'
+ '[' -n Gnuk ']'
+ process_user_csv ops.json Gnuk
+ local output=ops.json
+ local list=Gnuk
+ local playerDataList
+ [[ ops.json == *\o\p\s* ]]
+ userData='{"uuid": .id, "name": .username, "level": 4}'
+ log 'Updating ops'
+ local oldState
++ shopt -po xtrace
+ oldState='set -o xtrace'
+ shopt -u -o xtrace
[init] 2023-08-06 19:00:23+00:00 Updating ops
+ for i in ${list//,/ }
+ '[' -e ops.json ']'
+ grep -q Gnuk ops.json
++ get https://playerdb.co/api/player/minecraft/Gnuk
++ mc-image-helper get https://playerdb.co/api/player/minecraft/Gnuk
++ jq -re .data.player
[mc-image-helper] 19:00:24.647 DEBUG : Getting uri=https://playerdb.co/api/player/minecraft/Gnuk
[mc-image-helper] 19:00:24.649 DEBUG : Executing GET /api/player/minecraft/Gnuk with headers=[]
[mc-image-helper] 19:00:24.653 DEBUG : Intercepting request uri=https://playerdb.co/api/player/minecraft/Gnuk
[mc-image-helper] 19:00:25.014 DEBUG : Post-request capturing redirectLocations=[]
[mc-image-helper] 19:00:25.014 DEBUG : Response: status=200, reason=OK, headers=[Date: Sun, 06 Aug 2023 19:00:24 GMT, Content-Type: application/json; charset=utf-8, Transfer-Encoding: chunked, Connection: keep-alive, CF-Ray: 7f2985c7fe6ea511-GRU, CF-Cache-Status: HIT, Access-Control-Allow-Origin: *, Age: 67576, Cache-Control: public, max-age=2678400, Last-Modified: Sun, 06 Aug 2023 00:14:08 GMT, Strict-Transport-Security: max-age=31536000; includeSubDomains; preload, access-control-allow-methods: GET, OPTIONS, X-Content-Type-Options: nosniff, X-Worker-Cache: true, Report-To: {"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=KNz2sbaPKoa5EzCukU1sezZqIq%2FnP2mYzJs45dsJwwCcdgeTwgTUiIgZg%2FSbKa2C49sq3D2hq5lbSvNirs0he4fSYxiIsk%2FJ3wvcHCusNbY0XZentCWC7sXT0rSoNA%3D%3D"}],"group":"cf-nel","max_age":604800}, NEL: {"success_fraction":0,"report_to":"cf-nel","max_age":604800}, Vary: Accept-Encoding, Server: cloudflare, alt-svc: h3=":443"; ma=86400]
+ playerData='{
  "meta": {
    "cached_at": 1691280793
  },
  "username": "GNUK",
  "id": "2f827fa0-09fc-41c8-858a-9512e6267bf8",
  "raw_id": "2f827fa009fc41c8858a9512e6267bf8",
  "avatar": "https://crafthead.net/avatar/2f827fa009fc41c8858a9512e6267bf8",
  "name_history": []
}'
++ echo '{
  "meta": {
    "cached_at": 1691280793
  },
  "username": "GNUK",
  "id": "2f827fa0-09fc-41c8-858a-9512e6267bf8",
  "raw_id": "2f827fa009fc41c8858a9512e6267bf8",
  "avatar": "https://crafthead.net/avatar/2f827fa009fc41c8858a9512e6267bf8",
  "name_history": []
}'
++ jq -r '{"uuid": .id, "name": .username, "level": 4}'
+ playerDataList='{
  "uuid": "2f827fa0-09fc-41c8-858a-9512e6267bf8",
  "name": "GNUK",
  "level": 4
}'
++ echo '{
  "uuid": "2f827fa0-09fc-41c8-858a-9512e6267bf8",
  "name": "GNUK",
  "level": 4
}'
++ jq -s .
+ local 'newUsers=[
  {
    "uuid": "2f827fa0-09fc-41c8-858a-9512e6267bf8",
    "name": "GNUK",
    "level": 4
  }
]'
+ [[ ops.json =~ .*\.txt ]]
+ '[' -e /data/ops.json ']'
++ cat /data/ops.json
+ local 'currentUsers=[
  {
    "uuid": "2f827fa0-09fc-41c8-858a-9512e6267bf8",
    "name": "GNUK",
    "level": 4,
    "bypassesPlayerLimit": false
  }
]'
+ jq --argjson current '[
  {
    "uuid": "2f827fa0-09fc-41c8-858a-9512e6267bf8",
    "name": "GNUK",
    "level": 4,
    "bypassesPlayerLimit": false
  }
]' --argjson new '[
  {
    "uuid": "2f827fa0-09fc-41c8-858a-9512e6267bf8",
    "name": "GNUK",
    "level": 4
  }
]' -n '$new + $current | unique_by(.uuid)'
+ isTrue ''
+ case "${1,,}" in
+ return 1
+ '[' -n '' ']'
+ '[' -n '' ']'
+ exec /start-finalExec
+ '[' -n '' ']'
+ canUseRollingLogs=true
+ useFallbackJvmFlag=false
+ versionLessThan 1.7
+ mc-image-helper compare-versions 1.19.2 lt 1.7
+ return 1
+ isFamily VANILLA
+ for f in "${@}"
+ [[ FORGE == \V\A\N\I\L\L\A ]]
+ return 1
+ isFamily VANILLA
+ for f in "${@}"
+ [[ FORGE == \V\A\N\I\L\L\A ]]
+ return 1
+ isType PURPUR
+ for t in "${@}"
+ [[ FORGE == \P\U\R\P\U\R ]]
+ return 1
+ isType PURPUR
+ for t in "${@}"
+ [[ FORGE == \P\U\R\P\U\R ]]
+ return 1
+ versionLessThan 1.18.1
+ mc-image-helper compare-versions 1.19.2 lt 1.18.1
+ return 1
+ false
+ versionLessThan 1.7
+ mc-image-helper compare-versions 1.19.2 lt 1.7
+ return 1
+ versionLessThan 1.18.1
+ mc-image-helper compare-versions 1.19.2 lt 1.18.1
+ return 1
+ isTrue false
+ case "${1,,}" in
+ return 1
+ versionLessThan 1.14
+ mc-image-helper compare-versions 1.19.2 lt 1.14
+ return 1
+ [[ '' = false ]]
+ expandedDOpts=
+ '[' -n '' ']'
+ isTrue ''
+ case "${1,,}" in
+ return 1
+ isTrue ''
+ case "${1,,}" in
+ return 1
+ isTrue ''
+ case "${1,,}" in
+ return 1
+ isTrue ''
+ case "${1,,}" in
+ return 1
+ isTrue ''
+ case "${1,,}" in
+ return 1
+ [[ -n 15G ]]
+ log 'Setting initial memory to 15G and max to 15G'
+ local oldState
++ shopt -po xtrace
+ oldState='set -o xtrace'
+ shopt -u -o xtrace
[init] 2023-08-06 19:00:27+00:00 Setting initial memory to 15G and max to 15G
+ [[ -n 15G ]]
+ JVM_OPTS='-Xms15G '
+ [[ -n 15G ]]
+ JVM_OPTS='-Xmx15G -Xms15G '
+ versionLessThan 1.7
+ mc-image-helper compare-versions 1.19.2 lt 1.7
+ return 1
+ rm -f /data/.mc-health.env
+ mcServerRunnerArgs=(--stop-duration "${STOP_DURATION:-60}s" --named-pipe "${CONSOLE_IN_NAMED_PIPE:-/tmp/minecraft-console-in}")
+ [[ -n '' ]]
+ [[ FORGE == \C\U\R\S\E\F\O\R\G\E ]]
+ [[ FORGE == \C\U\R\S\E\F\O\R\G\E ]]
+ [[ /data/./run.sh =~ run.sh ]]
+ log 'Using Forge supplied run.sh script...'
+ local oldState
++ shopt -po xtrace
+ oldState='set -o xtrace'
+ shopt -u -o xtrace
[init] 2023-08-06 19:00:27+00:00 Using Forge supplied run.sh script...
+ echo -Xmx15G -Xms15G
+ isTrue false
+ case "${1,,}" in
+ return 1
+ exec mc-server-runner --stop-duration 60s --named-pipe /tmp/minecraft-console-in --shell bash /data/./run.sh
2023-08-06 19:00:28,883 main WARN Advanced terminal features are not available in this environment
[19:00:28] [main/INFO] [cp.mo.mo.Launcher/MODLAUNCHER]: ModLauncher running: args [--launchTarget, forgeserver, --fml.forgeVersion, 43.2.0, --fml.mcVersion, 1.19.2, --fml.forgeGroup, net.minecraftforge, --fml.mcpVersion, 20220805.130853]
[19:00:28] [main/INFO] [cp.mo.mo.Launcher/MODLAUNCHER]: ModLauncher 10.0.8+10.0.8+main.0ef7e830 starting: java version 17.0.8 by Eclipse Adoptium; OS Linux arch amd64 version 6.1.0-10-amd64
[19:00:29] [main/INFO] [mixin/]: SpongePowered MIXIN Subsystem Version=0.8.5 Source=union:/data/libraries/org/spongepowered/mixin/0.8.5/mixin-0.8.5.jar%2363!/ Service=ModLauncher Env=SERVER
[19:00:29] [main/WARN] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Mod file /data/libraries/net/minecraftforge/fmlcore/1.19.2-43.2.0/fmlcore-1.19.2-43.2.0.jar is missing mods.toml file
[19:00:29] [main/WARN] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Mod file /data/libraries/net/minecraftforge/javafmllanguage/1.19.2-43.2.0/javafmllanguage-1.19.2-43.2.0.jar is missing mods.toml file
[19:00:29] [main/WARN] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Mod file /data/libraries/net/minecraftforge/lowcodelanguage/1.19.2-43.2.0/lowcodelanguage-1.19.2-43.2.0.jar is missing mods.toml file
[19:00:29] [main/WARN] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Mod file /data/libraries/net/minecraftforge/mclanguage/1.19.2-43.2.0/mclanguage-1.19.2-43.2.0.jar is missing mods.toml file
[19:00:29] [main/INFO] [ne.mi.fm.lo.mo.JarInJarDependencyLocator/]: No dependencies to load found. Skipping!
[19:00:30] [main/INFO] [cp.mo.mo.LaunchServiceHandler/MODLAUNCHER]: Launching target 'forgeserver' with arguments []
[19:00:32] [main/INFO] [minecraft/DataFixers]: Building unoptimized datafixer
[19:00:34] [modloading-worker-0/INFO] [ne.mi.co.ForgeMod/FORGEMOD]: Forge mod loading, version 43.2.0, for MC 1.19.2 with MCP 20220805.130853
[19:00:34] [modloading-worker-0/INFO] [ne.mi.co.MinecraftForge/FORGE]: MinecraftForge v43.2.0 Initialized
[19:00:34] [Forge Version Check/INFO] [ne.mi.fm.VersionChecker/]: Global Forge version check system disabled, no further processing.
[19:00:35] [main/INFO] [mojang/YggdrasilAuthenticationService]: Environment: authHost='https://authserver.mojang.com', accountsHost='https://api.mojang.com', sessionHost='https://sessionserver.mojang.com', servicesHost='https://api.minecraftservices.com', name='PROD'
[19:00:35] [main/WARN] [minecraft/VanillaPackResources]: Assets URL 'union:/data/libraries/net/minecraft/server/1.19.2-20220805.130853/server-1.19.2-20220805.130853-srg.jar%2399!/assets/.mcassetsroot' uses unexpected schema
[19:00:35] [main/WARN] [minecraft/VanillaPackResources]: Assets URL 'union:/data/libraries/net/minecraft/server/1.19.2-20220805.130853/server-1.19.2-20220805.130853-srg.jar%2399!/data/.mcassetsroot' uses unexpected schema
[19:00:36] [main/INFO] [minecraft/RecipeManager]: Loaded 7 recipes
[19:00:36] [main/INFO] [minecraft/AdvancementList]: Loaded 1179 advancements
[19:00:37] [Server thread/INFO] [minecraft/DedicatedServer]: Starting minecraft server version 1.19.2
[19:00:37] [Server thread/INFO] [minecraft/DedicatedServer]: Loading properties
[19:00:37] [Server thread/INFO] [minecraft/DedicatedServer]: Default game type: CREATIVE
[19:00:37] [Server thread/INFO] [minecraft/MinecraftServer]: Generating keypair
[19:00:37] [Server thread/INFO] [minecraft/DedicatedServer]: Starting Minecraft server on *:25565
[19:00:37] [Server thread/INFO] [minecraft/ServerConnectionListener]: Using epoll channel type
[19:00:37] [Server thread/WARN] [minecraft/DedicatedServer]: **** SERVER IS RUNNING IN OFFLINE/INSECURE MODE!
[19:00:37] [Server thread/WARN] [minecraft/DedicatedServer]: The server will make no attempt to authenticate usernames. Beware.
[19:00:37] [Server thread/WARN] [minecraft/DedicatedServer]: While this makes the game possible to play without internet access, it also opens up the ability for hackers to connect with any username they choose.
[19:00:37] [Server thread/WARN] [minecraft/DedicatedServer]: To change this, set "online-mode" to "true" in the server.properties file.
[19:00:37] [Server thread/INFO] [minecraft/DedicatedServer]: Preparing level "world"
[19:00:37] [Server thread/INFO] [minecraft/MinecraftServer]: Preparing start region for dimension minecraft:overworld
[19:00:40] [Worker-Main-5/INFO] [minecraft/LoggerChunkProgressListener]: Preparing spawn area: 0%
[19:00:40] [Worker-Main-7/INFO] [minecraft/LoggerChunkProgressListener]: Preparing spawn area: 0%
[19:00:40] [Worker-Main-2/INFO] [minecraft/LoggerChunkProgressListener]: Preparing spawn area: 0%
[19:00:40] [Worker-Main-4/INFO] [minecraft/LoggerChunkProgressListener]: Preparing spawn area: 0%
[19:00:40] [Worker-Main-1/INFO] [minecraft/LoggerChunkProgressListener]: Preparing spawn area: 0%
[19:00:40] [Worker-Main-5/INFO] [minecraft/LoggerChunkProgressListener]: Preparing spawn area: 0%
[19:00:40] [Netty Epoll Server IO #1/INFO] [ne.mi.se.ServerLifecycleHooks/SERVERHOOKS]: Disconnecting Player (server is still starting): literal{Server is still starting! Please wait before reconnecting.}
[19:00:45] [Netty Epoll Server IO #2/INFO] [ne.mi.se.ServerLifecycleHooks/SERVERHOOKS]: Disconnecting Player (server is still starting): literal{Server is still starting! Please wait before reconnecting.}
[19:00:49] [Worker-Main-4/INFO] [minecraft/LoggerChunkProgressListener]: Preparing spawn area: 0%
[19:00:49] [Worker-Main-4/INFO] [minecraft/LoggerChunkProgressListener]: Preparing spawn area: 0%
[19:00:49] [Worker-Main-6/INFO] [minecraft/LoggerChunkProgressListener]: Preparing spawn area: 0%
[19:00:49] [Worker-Main-4/INFO] [minecraft/LoggerChunkProgressListener]: Preparing spawn area: 0%
[19:00:49] [Worker-Main-2/INFO] [minecraft/LoggerChunkProgressListener]: Preparing spawn area: 0%
[19:00:49] [Worker-Main-6/INFO] [minecraft/LoggerChunkProgressListener]: Preparing spawn area: 0%
[19:00:49] [Worker-Main-6/INFO] [minecraft/LoggerChunkProgressListener]: Preparing spawn area: 0%
[19:00:49] [Worker-Main-4/INFO] [minecraft/LoggerChunkProgressListener]: Preparing spawn area: 0%
[19:00:49] [Worker-Main-6/INFO] [minecraft/LoggerChunkProgressListener]: Preparing spawn area: 0%
[19:00:49] [Worker-Main-6/INFO] [minecraft/LoggerChunkProgressListener]: Preparing spawn area: 0%
[19:00:49] [Worker-Main-4/INFO] [minecraft/LoggerChunkProgressListener]: Preparing spawn area: 0%
[19:00:49] [Worker-Main-6/INFO] [minecraft/LoggerChunkProgressListener]: Preparing spawn area: 0%
[19:00:49] [Worker-Main-6/INFO] [minecraft/LoggerChunkProgressListener]: Preparing spawn area: 0%
[19:00:49] [Worker-Main-7/INFO] [minecraft/LoggerChunkProgressListener]: Preparing spawn area: 0%
[19:00:49] [Worker-Main-7/INFO] [minecraft/LoggerChunkProgressListener]: Preparing spawn area: 0%
[19:00:49] [Worker-Main-7/INFO] [minecraft/LoggerChunkProgressListener]: Preparing spawn area: 0%
[19:00:49] [Worker-Main-4/INFO] [minecraft/LoggerChunkProgressListener]: Preparing spawn area: 0%
[19:00:49] [Worker-Main-4/INFO] [minecraft/LoggerChunkProgressListener]: Preparing spawn area: 0%
[19:00:49] [Worker-Main-6/INFO] [minecraft/LoggerChunkProgressListener]: Preparing spawn area: 28%
[19:00:50] [Worker-Main-4/INFO] [minecraft/LoggerChunkProgressListener]: Preparing spawn area: 82%
[19:00:50] [Server thread/INFO] [minecraft/LoggerChunkProgressListener]: Time elapsed: 12924 ms
[19:00:50] [Server thread/INFO] [minecraft/DedicatedServer]: Done (13.088s)! For help, type "help"
[19:00:50] [Server thread/INFO] [minecraft/DedicatedServer]: Starting remote control listener
[19:00:50] [Server thread/INFO] [minecraft/GenericThread]: Thread RCON Listener started
[19:00:50] [Server thread/INFO] [minecraft/RconThread]: RCON running on 0.0.0.0:25575
[19:00:50] [Server thread/INFO] [ne.mi.se.pe.PermissionAPI/]: Successfully initialized permission handler forge:default_handler
[19:01:39] [Server thread/INFO] [ne.mi.co.AdvancementLoadFix/]: Using new advancement loading for net.minecraft.server.PlayerAdvancements@5b631ac
[19:01:39] [Server thread/INFO] [minecraft/PlayerList]: Gnuk[/192.168.1.6:52786] logged in with entity id 151 at (154.19588728337501, 39.0, -109.78831242299614)
[19:01:39] [Server thread/INFO] [minecraft/MinecraftServer]: Gnuk joined the game
[19:01:54] [Server thread/INFO] [minecraft/ServerGamePacketListenerImpl]: Gnuk lost connection: Disconnected
[19:01:54] [Server thread/INFO] [minecraft/MinecraftServer]: Gnuk left the game
[19:04:24] [Server thread/INFO] [minecraft/ServerLoginPacketListenerImpl]: com.mojang.authlib.GameProfile@436505f6[id=<null>,name=Gnuk,properties={},legacy=false] (/192.168.1.6:52256) lost connection: Disconnected
itzg commented 1 year ago

You're using

TYPE: FORGE

You need to use TYPE or MOD_PLATFORM set to "AUTO_CURSEFORGE" if you want to make use of CF_PAGE_URL. The logs you provided confirm that you're using just Forge. So with your Forge usage you have a typo in the variable name that should be MODPACK:

      MODPAKC: /modpacks/better.zip

So, that is getting ignored.

itzg commented 1 year ago

FWIW, the following compose file seems to work

version: "3.8"

services:
  mc:
    image: itzg/minecraft-server
    environment:
      EULA: true
      MOD_PLATFORM: AUTO_CURSEFORGE
      CF_API_KEY: ${CF_API_KEY}
      CF_PAGE_URL: https://www.curseforge.com/minecraft/modpacks/better-mc-forge-bmc3/files/3975945
      MEMORY: 4G
    volumes:
      - ../downloads:/downloads
    ports:
      - "25565:25565"

where the file contents are

downloads
├── .gitignore
└── mods
    ├── Structory-1.19-1.2.jar
    ├── cataclysm+delight+0.1.0.jar
    ├── hexerei-0.3.0.jar
    ├── snow-under-trees-fabric-1.0.0+1.19.2.jar
    ├── takesapillage-1.19-1.0.4.jar
    └── wolf-armor-compat-1.0.3-1.19.2.jar
bmc3
├── .env
└── docker-compose.yml

There's extra mods there for other examples.

Gnuk935 commented 1 year ago

I'm still having problems when I get the latest version of the mod, the error says that my api key is invalid, but if I get another version everything is fine.

Gnuk935 commented 1 year ago

Segue o log

[init] Running as uid=1000 gid=1000 with /data as 'drwxrwxr-x 1 1000 1000 0 Aug  3 18:19 /data'
[mc-image-helper] 04:54:39.134 INFO  : Processing modpack ' Better MC [FORGE] 1.19.2 v17' (better-mc-forge-bmc3) @ 550864:4674465
[mc-image-helper] 04:54:39.586 INFO  : Excluding mod file 'Cherished Worlds (Fabric/Forge/Quilt)' (cherished-worlds) due to configuration
[mc-image-helper] 04:54:39.757 INFO  : Excluding mod file 'TexTrue's Rubidium Options' (textrues-rubidium-options) due to configuration
[mc-image-helper] 04:54:40.191 INFO  : Excluding mod file 'Just Enough Resources (JER)' (just-enough-resources-jer) due to configuration
[mc-image-helper] 04:54:40.210 INFO  : Downloaded mod file mods/corpse-1.19.2-1.0.0.jar
[mc-image-helper] 04:54:40.337 INFO  : Downloaded mod file mods/villagernames-1.19.2-5.2.jar
[mc-image-helper] 04:54:40.644 INFO  : Downloaded mod file mods/windswept-1.19.2-2.2.2.jar
[mc-image-helper] 04:54:40.677 INFO  : Downloaded mod file mods/AttributeFix-Forge-1.19.2-17.2.7.jar
[mc-image-helper] 04:54:40.733 INFO  : Downloaded mod file mods/revampedwolf-1.19.2-4.0.0.jar
[mc-image-helper] 04:54:40.758 INFO  : Downloaded mod file mods/starterkit-1.19.2-5.2.jar
[mc-image-helper] 04:54:40.795 INFO  : Downloaded mod file mods/visuality-forge-2.0.1.jar
[mc-image-helper] 04:54:40.813 INFO  : Downloaded mod file mods/BarteringStation-v4.0.3-1.19.2-Forge.jar
[mc-image-helper] 04:54:40.821 INFO  : Downloaded mod file mods/ShieldExpansion-1.19.2-1.1.6.jar
[mc-image-helper] 04:54:40.852 INFO  : Downloaded mod file mods/defaultoptions-forge-1.19-15.0.1.jar
[mc-image-helper] 04:54:40.865 INFO  : Downloaded mod file mods/AutoRegLib-1.8.2-55.jar
[mc-image-helper] 04:54:40.866 INFO  : Downloaded mod file mods/resourcefullib-forge-1.19.2-1.1.24.jar
[mc-image-helper] 04:54:40.889 INFO  : Downloaded mod file mods/snowundertrees-1.19.2-1.3.1.jar
[mc-image-helper] 04:54:40.908 INFO  : Downloaded mod file mods/VisualWorkbench-v4.2.4-1.19.2-Forge.jar
[mc-image-helper] 04:54:40.969 INFO  : Excluding mod file 'Neko's Enchanted Books' (nekos-enchanted-books) due to configuration
[mc-image-helper] 04:54:40.969 WARN  : The authors of the mod 'ImmediatelyFast Reforged (Unofficial)' have disallowed project distribution. Manually download the file 'ImmediatelyFastReforged-1.19.2-1.1.12' from https://www.curseforge.com/minecraft/mc-mods/immediatelyfast-reforged and supply via downloads repo or separately.
[mc-image-helper] 04:54:40.969 WARN  : The authors of the mod 'Exquisito' have disallowed project distribution. Manually download the file 'Exquisito-1.19.2-1.2.0' from https://www.curseforge.com/minecraft/mc-mods/exquisito and supply via downloads repo or separately.
[mc-image-helper] 04:54:40.985 INFO  : Downloaded mod file mods/BetterCompatibilityChecker-1.0.10-build.50+mc1.19.2.jar
[mc-image-helper] 04:54:41.014 INFO  : Downloaded mod file mods/upgradedcore-1.19.2-4.1.0.1-release.jar
[mc-image-helper] 04:54:41.024 INFO  : Downloaded mod file mods/Iceberg-1.19.2-forge-1.1.4.jar
[mc-image-helper] 04:54:41.090 INFO  : Downloaded mod file mods/Raided-1.19.2-0.1.3.jar
[mc-image-helper] 04:54:41.133 INFO  : Downloaded mod file mods/hunterillager-1.19.2-8.0.0.jar
[mc-image-helper] 04:54:41.134 INFO  : Downloaded mod file mods/caelus-forge-1.19.2-3.0.0.6.jar
[mc-image-helper] 04:54:41.137 INFO  : Downloaded mod file mods/BambooEverything-forge-2.2.4-build.33+mc1.19.2.jar
[mc-image-helper] 04:54:41.143 INFO  : Downloaded mod file mods/kotlinforforge-3.12.0-all.jar
[mc-image-helper] 04:54:41.187 INFO  : Downloaded mod file mods/Highlighter-1.19.1-1.1.4.jar
[mc-image-helper] 04:54:41.240 INFO  : Downloaded mod file mods/konkrete_forge_1.6.1_MC_1.19-1.19.2.jar
[mc-image-helper] 04:54:41.267 INFO  : Downloaded mod file mods/jei-1.19.2-forge-11.6.0.1016.jar
[mc-image-helper] 04:54:41.267 INFO  : Downloaded mod file mods/incubation-1.19-3.0.0.jar
[mc-image-helper] 04:54:41.290 INFO  : Excluding mod file 'Tips' (tips) due to configuration
[mc-image-helper] 04:54:41.307 INFO  : Downloaded mod file mods/PickUpNotifier-v4.2.4-1.19.2-Forge.jar
[mc-image-helper] 04:54:41.480 INFO  : Downloaded mod file mods/FallingTree-1.19.2-3.10.0.jar
[mc-image-helper] 04:54:41.492 INFO  : Downloaded mod file mods/ftb-teams-forge-1902.2.14-build.123.jar
[mc-image-helper] 04:54:41.501 INFO  : Downloaded mod file mods/geckolib-forge-1.19-3.1.40.jar
[mc-image-helper] 04:54:41.504 INFO  : Downloaded mod file mods/savage_and_ravage-1.19.2-5.0.4.jar
[mc-image-helper] 04:54:41.650 INFO  : Downloaded mod file mods/abundant_atmosphere-1.19.2-1.0.2.jar
[mc-image-helper] 04:54:41.670 INFO  : Downloaded mod file mods/xlpackets-1.18.2-2.1.jar
[mc-image-helper] 04:54:41.674 INFO  : Downloaded mod file mods/open-parties-and-claims-forge-1.19.2-0.19.1.jar
[mc-image-helper] 04:54:41.711 INFO  : Downloaded mod file mods/kleeslabs-forge-1.19.2-12.3.0.jar
[mc-image-helper] 04:54:41.739 INFO  : Downloaded mod file mods/v_slab_compat-1.19.2-1.4.jar
[mc-image-helper] 04:54:41.833 INFO  : Downloaded mod file mods/BoatBreakFix-Universal-1.0.11.jar
[mc-image-helper] 04:54:41.926 INFO  : Downloaded mod file mods/Rex's-AdditionalStructures-1.19.x-(v.4.0.3).jar
[mc-image-helper] 04:54:41.936 INFO  : Downloaded mod file mods/Delightful-1.19.2-3.3.jar
[mc-image-helper] 04:54:41.940 INFO  : Downloaded mod file mods/excavated_variants-forge-1.19.2-1.0.3.jar
[mc-image-helper] 04:54:42.025 INFO  : Downloaded mod file mods/YungsApi-1.19.2-Forge-3.8.9.jar
[mc-image-helper] 04:54:42.075 INFO  : Downloaded mod file mods/structure_gel-1.19.2-2.7.2.jar
[mc-image-helper] 04:54:42.080 INFO  : Downloaded mod file mods/CreativeCore_FORGE_v2.9.4_mc1.19.2.jar
[mc-image-helper] 04:54:42.128 INFO  : Downloaded mod file mods/L_Enders_Cataclysm-1.26-1.19.2.jar
[mc-image-helper] 04:54:42.148 INFO  : Downloaded mod file mods/MagnumTorch-v4.2.3-1.19.2-Forge.jar
[mc-image-helper] 04:54:42.180 INFO  : Downloaded mod file mods/BetterTridents-v4.0.2-1.19.2-Forge.jar
[mc-image-helper] 04:54:42.193 INFO  : Downloaded mod file mods/Entity_Collision_FPS_Fix-forge-1.19-2.0.0.0.jar
[mc-image-helper] 04:54:42.243 INFO  : Downloaded mod file mods/neapolitan-1.19.2-4.0.2.jar
[mc-image-helper] 04:54:42.245 INFO  : Downloaded mod file mods/neruina-1.1.0-forge+1.19.jar
[mc-image-helper] 04:54:42.259 INFO  : Downloaded mod file mods/fastpaintings-1.19-1.1.1.jar
[mc-image-helper] 04:54:42.286 INFO  : Downloaded mod file mods/CorgiLib-forge-1.19.2-1.0.0.34.jar
[mc-image-helper] 04:54:42.333 INFO  : Downloaded mod file mods/drippyloadingscreen_forge_2.2.2_MC_1.19.1-1.19.2.jar
[mc-image-helper] 04:54:42.333 INFO  : Downloaded mod file mods/MindfulDarkness-v4.0.9-1.19.2-Forge.jar
[mc-image-helper] 04:54:42.402 INFO  : Downloaded mod file mods/DarkPaintings-Forge-1.19.2-13.1.5.jar
[mc-image-helper] 04:54:42.402 INFO  : Downloaded mod file mods/TerraBlender-forge-1.19.2-2.0.1.166.jar
[mc-image-helper] 04:54:42.431 INFO  : Downloaded mod file mods/plushies-1.2-1.19.2.jar
[mc-image-helper] 04:54:42.482 INFO  : Downloaded mod file mods/alternate-current-mc1.19-1.7.0.jar
[mc-image-helper] 04:54:42.652 INFO  : Downloaded mod file mods/End's Phantasm - BETAv1.2.10.5 - 1.19.2.jar
[mc-image-helper] 04:54:42.653 INFO  : Downloaded mod file mods/YungsBetterWitchHuts-1.19.2-Forge-2.1.0.jar
[mc-image-helper] 04:54:42.670 INFO  : Downloaded mod file mods/environmental-1.19.2-3.0.0.jar
[mc-image-helper] 04:54:42.687 INFO  : Downloaded mod file mods/modernfix-forge-5.4.1+mc1.19.2.jar
[mc-image-helper] 04:54:42.821 INFO  : Downloaded mod file mods/TradingPost-v4.2.0-1.19.2-Forge.jar
[mc-image-helper] 04:54:42.841 INFO  : Downloaded mod file mods/canary-mc1.19.2-0.2.8.jar
[mc-image-helper] 04:54:42.858 INFO  : Downloaded mod file mods/supplementaries-1.19.2-2.3.20.jar
[mc-image-helper] 04:54:42.860 INFO  : Downloaded mod file mods/spark-1.10.37-forge.jar
[mc-image-helper] 04:54:42.953 INFO  : Downloaded mod file mods/charmofundying-forge-6.2.1+1.19.2.jar
[mc-image-helper] 04:54:42.998 INFO  : Excluding mod file '[ETF] Entity Texture Features - [Fabric & Forge]' (entity-texture-features-fabric) due to configuration
[mc-image-helper] 04:54:43.147 INFO  : Downloaded mod file mods/Quark-3.4-405.jar
[mc-image-helper] 04:54:43.276 INFO  : Downloaded mod file mods/another_furniture-forge-1.19.2-2.1.3.jar
[mc-image-helper] 04:54:43.323 INFO  : Downloaded mod file mods/twilightforest-1.19.2-4.2.1518-universal.jar
[mc-image-helper] 04:54:43.546 INFO  : Downloaded mod file mods/letmedespawn-1.18.x-1.19.x-forge-1.0.3.jar
[mc-image-helper] 04:54:43.744 INFO  : Downloaded mod file mods/gardens-of-the-dead-forge-2.0.1.jar
[mc-image-helper] 04:54:43.776 INFO  : Excluding mod file 'Not Enough Animations' (not-enough-animations) due to configuration
[mc-image-helper] 04:54:44.173 INFO  : Downloaded mod file mods/balm-forge-1.19.2-4.5.7.jar
[mc-image-helper] 04:54:44.199 INFO  : Downloaded mod file mods/dynamic_asset_generator-forge-1.19.2-1.2.0.jar
[mc-image-helper] 04:54:44.199 INFO  : Downloaded mod file mods/personality-1.19-3.0.1.jar
[mc-image-helper] 04:54:44.237 INFO  : Downloaded mod file mods/Xaeros_Minimap_23.6.0_Forge_1.19.1.jar
[mc-image-helper] 04:54:44.243 INFO  : Downloaded mod file mods/elevatorid-1.19.2-1.8.9.jar
[mc-image-helper] 04:54:44.247 INFO  : Downloaded mod file mods/lootintegrations-1.19.2-3.1.jar
[mc-image-helper] 04:54:44.261 INFO  : Downloaded mod file mods/LeavesBeGone-v4.0.1-1.19.2-Forge.jar
[mc-image-helper] 04:54:44.276 INFO  : Downloaded mod file mods/geophilic-1.19-2.0.0c.jar
[mc-image-helper] 04:54:44.352 INFO  : Downloaded mod file mods/JER-Integration-4.4.0.jar
[mc-image-helper] 04:54:44.366 INFO  : Downloaded mod file mods/Fallingleaves-1.19.1-1.3.1.jar
[mc-image-helper] 04:54:44.369 INFO  : Downloaded mod file mods/smarterfarmers-1.19.2-1.7.1.jar
[mc-image-helper] 04:54:44.377 INFO  : Downloaded mod file mods/EndlessBiomes 1.4s - 1.19.2 (Server-friendly).jar
[mc-image-helper] 04:54:44.380 INFO  : Downloaded mod file mods/starlight-1.1.1+forge.cf5b10b.jar
[mc-image-helper] 04:54:44.399 INFO  : Downloaded mod file mods/carryon-forge-1.19.2-2.0.5.17.jar
[mc-image-helper] 04:54:44.418 INFO  : Downloaded mod file mods/moonlight-1.19.2-2.2.43-forge.jar
[mc-image-helper] 04:54:44.426 INFO  : Downloaded mod file mods/Patchouli-1.19.2-77.jar
[mc-image-helper] 04:54:44.432 INFO  : Downloaded mod file mods/PuzzlesLib-v4.4.3-1.19.2-Forge.jar
[mc-image-helper] 04:54:44.436 INFO  : Downloaded mod file mods/architectury-6.5.85-forge.jar
[mc-image-helper] 04:54:44.485 INFO  : Downloaded mod file mods/Decorative Blocks-forge-1.19.2-3.0.0.jar
[mc-image-helper] 04:54:44.488 WARN  : The authors of the mod 'Lightspeed - Launch optimizations' have disallowed project distribution. Manually download the file 'lightspeed-1.19.2-1.0.5' from https://www.curseforge.com/minecraft/mc-mods/lightspeedmod and supply via downloads repo or separately.
[mc-image-helper] 04:54:44.500 INFO  : Downloaded mod file mods/Good Ending-1.19.2-1.0.2-forge.jar
[mc-image-helper] 04:54:44.530 INFO  : Downloaded mod file mods/dragonmounts-1.19.2-1.1.4a.jar
[mc-image-helper] 04:54:44.533 INFO  : Downloaded mod file mods/Jade-1.19.1-forge-8.8.1.jar
[mc-image-helper] 04:54:44.546 INFO  : Downloaded mod file mods/spirit-forge-1.19.2-2.2.6.jar
[mc-image-helper] 04:54:44.548 INFO  : Downloaded mod file mods/ecologics-forge-1.19.2-2.1.11.jar
[mc-image-helper] 04:54:44.551 INFO  : Downloaded mod file mods/BetterModsButton-v4.2.4-1.19.2-Forge.jar
[mc-image-helper] 04:54:44.552 WARN  : The authors of the mod 'Redirectionor' have disallowed project distribution. Manually download the file 'redirectionor-forge-1.19.2-3.0.3.jar' from https://www.curseforge.com/minecraft/mc-mods/redirectionor and supply via downloads repo or separately.
[mc-image-helper] 04:54:44.596 INFO  : Downloaded mod file mods/transparent-5.1.2+1.19-forge.jar
[mc-image-helper] 04:54:44.600 INFO  : Downloaded mod file mods/soundphysics-forge-1.19.2-1.0.18.jar
[mc-image-helper] 04:54:44.604 INFO  : Downloaded mod file mods/comforts-forge-6.0.5+1.19.2.jar
[mc-image-helper] 04:54:44.655 INFO  : Downloaded mod file mods/VillagersPlus_1.2_(FORGE)_for_1.19.2.jar
[mc-image-helper] 04:54:44.659 INFO  : Downloaded mod file mods/NethersDelight-1.19-3.0.jar
[mc-image-helper] 04:54:44.661 INFO  : Downloaded mod file mods/upgradednetherite-1.19.2-5.1.0.9-release.jar
[mc-image-helper] 04:54:44.672 INFO  : Downloaded mod file mods/ftb-quests-forge-1902.5.3-build.258.jar
[mc-image-helper] 04:54:44.738 INFO  : Downloaded mod file mods/BetterAdvancements-1.19.2-0.2.2.147.jar
[mc-image-helper] 04:54:44.740 INFO  : Downloaded mod file mods/fancymenu_forge_2.14.9_MC_1.19-1.19.2.jar
[mc-image-helper] 04:54:44.747 INFO  : Downloaded mod file mods/collective-1.19.2-6.65.jar
[mc-image-helper] 04:54:44.758 INFO  : Downloaded mod file mods/OverflowingBars-v4.0.1-1.19.2-Forge.jar
[mc-image-helper] 04:54:44.814 INFO  : Downloaded mod file mods/NightConfigFixes-v4.0.7-1.19.2-Forge.jar
[mc-image-helper] 04:54:44.818 INFO  : Downloaded mod file mods/FarmersDelight-1.19.2-1.2.2.jar
[mc-image-helper] 04:54:44.887 INFO  : Downloaded mod file mods/everycomp-1.19.2-2.4.12.jar
[mc-image-helper] 04:54:44.892 INFO  : Downloaded mod file mods/hearths-v1.0.0-mc1.19u1.19.3.jar
[mc-image-helper] 04:54:44.895 INFO  : Downloaded mod file mods/bygonenether-1.3.0-1.19.2.jar
[mc-image-helper] 04:54:44.897 INFO  : Downloaded mod file mods/lazydfu-1.19-1.0.2.jar
[mc-image-helper] 04:54:44.897 INFO  : Downloaded mod file mods/DiagonalFences-v4.2.6-1.19.2-Forge.jar
[mc-image-helper] 04:54:44.900 INFO  : Downloaded mod file mods/Stoneworks-v4.0.1-1.19.2-Forge.jar
[mc-image-helper] 04:54:44.905 INFO  : Downloaded mod file mods/memoryleakfix-forge-1.17+-1.0.0.jar
[mc-image-helper] 04:54:44.912 INFO  : Downloaded mod file mods/connectivity-1.19.2-4.4.jar
[mc-image-helper] 04:54:44.934 INFO  : Excluding mod file 'Entity Culling Fabric/Forge' (entityculling) due to configuration
[mc-image-helper] 04:54:44.964 INFO  : Downloaded mod file mods/woodworks-1.19.2-2.2.1.jar
[mc-image-helper] 04:54:45.031 INFO  : Downloaded mod file mods/curios-forge-1.19.2-5.1.4.1.jar
[mc-image-helper] 04:54:45.046 INFO  : Downloaded mod file mods/Kiwi-1.19.1-forge-8.3.4.jar
[mc-image-helper] 04:54:45.096 INFO  : Downloaded mod file mods/UnusualEnd1.19.2_V1.4.3.jar
[mc-image-helper] 04:54:45.125 INFO  : Downloaded mod file mods/explorations-forge-1.19.2-1.5.2.jar
[mc-image-helper] 04:54:45.137 INFO  : Downloaded mod file mods/friendsandfoes-forge-mc1.19.2-1.8.5.jar
[mc-image-helper] 04:54:45.159 INFO  : Downloaded mod file mods/XaerosWorldMap_1.31.0_Forge_1.19.1.jar
[mc-image-helper] 04:54:45.166 INFO  : Downloaded mod file mods/stalwart-dungeons-1.19.2-1.2.8.jar
[mc-image-helper] 04:54:45.232 INFO  : Downloaded mod file mods/EasyAnvils-v4.0.11-1.19.2-Forge.jar
[mc-image-helper] 04:54:45.281 INFO  : Downloaded mod file mods/waystones-forge-1.19.2-11.4.1.jar
[mc-image-helper] 04:54:45.286 INFO  : Downloaded mod file mods/takesapillage-1.0.3-1.19.2.jar
[mc-image-helper] 04:54:45.292 INFO  : Downloaded mod file mods/YungsBetterMineshafts-1.19.2-Forge-3.2.0.jar
[mc-image-helper] 04:54:45.389 INFO  : Downloaded mod file mods/SnowRealMagic-1.19.2-forge-6.5.3.jar
[mc-image-helper] 04:54:45.425 INFO  : Downloaded mod file mods/pluto-mc1.19.2-0.0.9.jar
[mc-image-helper] 04:54:45.440 INFO  : Downloaded mod file mods/twigs-forge-1.19.2-3.0.1.jar
[mc-image-helper] 04:54:45.455 INFO  : Downloaded mod file mods/snowyspirit-1.19.2-2.1.10.jar
[mc-image-helper] 04:54:45.466 INFO  : Excluding mod file 'Magnesium/Rubidium Dynamic Lights' (dynamiclights-reforged) due to configuration
[mc-image-helper] 04:54:45.472 INFO  : Downloaded mod file mods/NetherChested-v4.0.4-1.19.2-Forge.jar
[mc-image-helper] 04:54:45.510 INFO  : Downloaded mod file mods/Public GUI Announcement-forge-1.19.2-4.3.3.jar
[mc-image-helper] 04:54:45.537 INFO  : Downloaded mod file mods/BadMobs-1.19.2-16.1.3.jar
[mc-image-helper] 04:54:45.541 INFO  : Downloaded mod file mods/Sculked V1.4.1.jar
[mc-image-helper] 04:54:45.547 INFO  : Downloaded mod file mods/netherportalfix-forge-1.19-10.0.1.jar
[mc-image-helper] 04:54:45.558 INFO  : Downloaded mod file mods/NaturesCompass-1.19.2-1.10.0-forge.jar
[mc-image-helper] 04:54:45.572 INFO  : Downloaded mod file mods/NoChatReports-FORGE-1.19.2-v1.5.1.jar
[mc-image-helper] 04:54:45.581 INFO  : Downloaded mod file mods/polymorph-forge-0.46.4+1.19.2.jar
[mc-image-helper] 04:54:45.587 INFO  : Downloaded mod file mods/yeetusexperimentus-1.0.1-build.2+mc1.19.1.jar
[mc-image-helper] 04:54:45.590 INFO  : Downloaded mod file mods/dolt_compat-1.19.2-1.1.2.jar
[mc-image-helper] 04:54:45.590 INFO  : Excluding mod file 'Mouse Tweaks' (mouse-tweaks) due to configuration
[mc-image-helper] 04:54:45.646 INFO  : Excluding mod file 'Skin Layers 3D (Fabric/Forge)' (skin-layers-3d) due to configuration
[mc-image-helper] 04:54:45.718 INFO  : Downloaded mod file mods/structureessentials-1.19.2-2.9.jar
[mc-image-helper] 04:54:45.728 INFO  : Downloaded mod file mods/memorysettings-1.19.2-5.2.jar
[mc-image-helper] 04:54:45.741 INFO  : Downloaded mod file mods/farsight-1.19.2-2.1.jar
[mc-image-helper] 04:54:45.804 INFO  : Downloaded mod file mods/smoothchunk-1.19.1-2.0.jar
[mc-image-helper] 04:54:45.807 INFO  : Downloaded mod file mods/chunksending-forge-1.19-2.5.jar
[mc-image-helper] 04:54:45.823 INFO  : Downloaded mod file mods/clayworks-1.19.2-2.0.1.jar
[mc-image-helper] 04:54:45.826 INFO  : Downloaded mod file mods/atmospheric-1.19.2-5.0.0.jar
[mc-image-helper] 04:54:45.851 INFO  : Downloaded mod file mods/netherdepthsupgrade-3.0.0-1.19.2.jar
[mc-image-helper] 04:54:45.881 INFO  : Downloaded mod file mods/frosted-friends-1.19.2-1.0.7.jar
[mc-image-helper] 04:54:46.065 INFO  : Downloaded mod file mods/whatareyouvotingfor2022-1.19.2-1.9.jar
[mc-image-helper] 04:54:46.073 INFO  : Downloaded mod file mods/rottencreatures-forge-1.19.2-1.0.1.jar
[mc-image-helper] 04:54:46.209 INFO  : Downloaded mod file mods/modpack-update-checker-1.19.2-forge-0.7.1.jar
[mc-image-helper] 04:54:46.236 INFO  : Downloaded mod file mods/SereneSeasons-1.19.2-8.1.0.24.jar
[mc-image-helper] 04:54:46.331 INFO  : Downloaded mod file mods/EasyMagic-v4.3.3-1.19.2-Forge.jar
[mc-image-helper] 04:54:46.379 INFO  : Downloaded mod file mods/dungeons_plus-1.19.2-1.3.1.jar
[mc-image-helper] 04:54:46.389 INFO  : Downloaded mod file mods/YungsBetterDungeons-1.19.2-Forge-3.2.2.jar
[mc-image-helper] 04:54:46.398 INFO  : Downloaded mod file mods/Paxi-1.19.2-Forge-3.0.1.jar
[mc-image-helper] 04:54:46.398 INFO  : Downloaded mod file mods/YungsBridges-1.19.2-Forge-3.1.0.jar
[mc-image-helper] 04:54:46.413 INFO  : Downloaded mod file mods/the-conjurer-1.19.2-1.1.5.jar
[mc-image-helper] 04:54:46.414 INFO  : Downloaded mod file mods/Grass_Overhaul-Forge-23.05.28_MC1.19.2.jar
[mc-image-helper] 04:54:46.430 INFO  : Downloaded mod file mods/DungeonsArise-1.19.2-2.1.56-beta.jar
[mc-image-helper] 04:54:46.511 INFO  : Downloaded mod file mods/swingthroughgrass-1.19.2-1.10.0.jar
[mc-image-helper] 04:54:46.526 INFO  : Downloaded mod file mods/letsdo-api-forge-1.1.0.jar
[mc-image-helper] 04:54:46.562 INFO  : Downloaded mod file mods/biomemakeover-FORGE-1.19.2-1.6.4.jar
[mc-image-helper] 04:54:46.575 INFO  : Downloaded mod file mods/letsdo-vinery-forge-1.3.7.jar
[mc-image-helper] 04:54:46.631 INFO  : Downloaded mod file mods/fullstackwatchdog-1.0.1+1.19.2-forge.jar
[mc-image-helper] 04:54:46.725 INFO  : Downloaded mod file mods/buzzier_bees-1.19-5.0.1.jar
[mc-image-helper] 04:54:46.801 INFO  : Downloaded mod file mods/xptome-1.19-2.1.7.jar
[mc-image-helper] 04:54:47.027 INFO  : Downloaded mod file mods/citadel-2.1.4-1.19.jar
[mc-image-helper] 04:54:47.028 INFO  : Excluding mod file 'Oculus' (oculus) due to configuration
[mc-image-helper] 04:54:47.035 INFO  : Downloaded mod file mods/deeperdarker-forge-1.1.6-forge.jar
[mc-image-helper] 04:54:47.075 INFO  : Excluding mod file 'Controlling' (controlling) due to configuration
[mc-image-helper] 04:54:47.130 INFO  : Excluding mod file 'Enchantment Descriptions' (enchantment-descriptions) due to configuration
[mc-image-helper] 04:54:47.177 INFO  : Downloaded mod file mods/YungsBetterNetherFortresses-1.19.2-Forge-1.0.6.jar
[mc-image-helper] 04:54:47.197 INFO  : Downloaded mod file mods/skinned_lanterns-1.19.2-1.3.4.jar
[mc-image-helper] 04:54:47.240 INFO  : Downloaded mod file mods/backpacked-2.1.12-1.19.2.jar
[mc-image-helper] 04:54:47.312 INFO  : Downloaded mod file mods/ResourcePackOverrides-v4.0.4-1.19.2-Forge.jar
[mc-image-helper] 04:54:47.351 INFO  : Downloaded mod file mods/Galosphere-1.19.2-1.3.0-Forge.jar
[mc-image-helper] 04:54:47.378 INFO  : Downloaded mod file mods/item-filters-forge-1902.2.9-build.51.jar
[mc-image-helper] 04:54:47.383 INFO  : Excluding mod file 'Magnesium/Rubidium Extras' (magnesium-extras) due to configuration
[mc-image-helper] 04:54:47.476 INFO  : Excluding mod file 'Rubidium' (rubidium) due to configuration
[mc-image-helper] 04:54:47.507 INFO  : Downloaded mod file mods/elytraslot-forge-6.1.1+1.19.2.jar
[mc-image-helper] 04:54:47.511 INFO  : Downloaded mod file mods/Bookshelf-Forge-1.19.2-16.3.20.jar
[mc-image-helper] 04:54:47.570 INFO  : Downloaded mod file mods/SimpleStorageNetwork-1.19.2-1.7.0.jar
[mc-image-helper] 04:54:47.577 INFO  : Downloaded mod file mods/Clumps-forge-1.19.2-9.0.0+14.jar
[mc-image-helper] 04:54:47.609 INFO  : Downloaded mod file mods/cloth-config-8.3.103-forge.jar
[mc-image-helper] 04:54:47.699 INFO  : Downloaded mod file mods/chefs-delight-1.0.2-forge-1.19.2.jar
[mc-image-helper] 04:54:47.770 INFO  : Downloaded mod file mods/veinmining-forge-1.1.1+1.19.2.jar
[mc-image-helper] 04:54:47.909 INFO  : Downloaded mod file mods/YungsBetterStrongholds-1.19.2-Forge-3.2.0.jar
[mc-image-helper] 04:54:47.910 INFO  : Downloaded mod file mods/repurposed_structures_forge-6.3.24+1.19.2.jar
[mc-image-helper] 04:54:47.961 INFO  : Downloaded mod file mods/blueprint-1.19.2-6.1.2.jar
[mc-image-helper] 04:54:47.985 INFO  : Downloaded mod file mods/guardvillagers-1.19.2-1.5.6.jar
[mc-image-helper] 04:54:47.987 INFO  : Downloaded mod file mods/ferritecore-5.0.3-forge.jar
[mc-image-helper] 04:54:47.987 WARN  : The authors of the mod 'Structory' have disallowed project distribution. Manually download the file 'Structory 1.19.3 v1.3.1a' from https://www.curseforge.com/minecraft/mc-mods/structory and supply via downloads repo or separately.
[mc-image-helper] 04:54:48.104 INFO  : Downloaded mod file mods/goblintraders-1.8.0-1.19.2.jar
[mc-image-helper] 04:54:48.135 INFO  : Downloaded mod file mods/does_potato_tick-1.19.2-3.6.1.jar
[mc-image-helper] 04:54:48.201 INFO  : Downloaded mod file mods/illagersweararmor-1.2.6-1.19.2.jar
[mc-image-helper] 04:54:48.264 INFO  : Downloaded mod file mods/deuf-1.19.2-1.3.jar
[mc-image-helper] 04:54:48.288 WARN  : The authors of the mod 'Structory: Towers' have disallowed project distribution. Manually download the file 'Structory Towers 1.19.3 v1.0.2' from https://www.curseforge.com/minecraft/mc-mods/structory-towers and supply via downloads repo or separately.
[mc-image-helper] 04:54:48.288 INFO  : Downloaded mod file mods/upgradednetherite_items-1.19.2-4.1.0.1-release.jar
[mc-image-helper] 04:54:48.315 INFO  : Downloaded mod file mods/Paintings-forge-1.19.2-10.2.4.0.jar
[mc-image-helper] 04:54:48.397 INFO  : Downloaded mod file mods/Philips-Ruins1.19.2-6.8.jar
[mc-image-helper] 04:54:48.593 INFO  : Downloaded mod file mods/YungsBetterOceanMonuments-1.19.2-Forge-2.1.0.jar
[mc-image-helper] 04:54:48.594 INFO  : Downloaded mod file mods/upgradednetherite_ultimate-1.19.2-4.1.0.4-release.jar
[mc-image-helper] 04:54:48.599 INFO  : Downloaded mod file mods/servercore-forge-1.3.5+1.19.2.jar
[mc-image-helper] 04:54:48.600 INFO  : Downloaded mod file mods/culturaldelights-1.19.2-0.15.4.jar
[mc-image-helper] 04:54:48.721 INFO  : Downloaded mod file mods/upgrade_aquatic-1.19.2-5.0.0.jar
[mc-image-helper] 04:54:48.841 INFO  : Downloaded mod file mods/immersive_weathering-1.19.2-1.2.9-forge.jar
[mc-image-helper] 04:54:48.909 INFO  : Downloaded mod file mods/explorify-forge-1.19-1.3.0.jar
[mc-image-helper] 04:54:48.922 INFO  : Downloaded mod file mods/SimpleDiscordRichPresence-forge-3.0.4-build.27+mc1.19.2.jar
[mc-image-helper] 04:54:48.937 INFO  : Downloaded mod file mods/handcrafted-forge-1.19.2-2.0.6.jar
[mc-image-helper] 04:54:49.028 INFO  : Downloaded mod file mods/pet_cemetery-1.19.2-1.0.3.jar
[mc-image-helper] 04:54:49.038 INFO  : Downloaded mod file mods/xaeros_waystones_compability-1.0.jar
[mc-image-helper] 04:54:49.049 INFO  : Downloaded mod file mods/Oh_The_Biomes_You'll_Go-forge-1.19.2-2.0.1.4.jar
[mc-image-helper] 04:54:49.117 INFO  : Downloaded mod file mods/ftb-library-forge-1902.4.1-build.236.jar
[mc-image-helper] 04:54:49.364 INFO  : Downloaded mod file mods/twilightdelight-1.3.1.jar
[mc-image-helper] 04:54:50.048 INFO  : Downloaded mod file mods/alexsmobs-1.21.1.jar
[mc-image-helper] 04:54:50.778 INFO  : Downloaded mod file mods/blue_skies-1.19.2-1.3.20.jar
[mc-image-helper] 04:54:53.570 INFO  : Downloading Forge installer 43.2.19 for Minecraft 1.19.2
[mc-image-helper] 04:55:18.155 INFO  : Running Forge installer. This might take a while...

Some mod authors disallow automated downloads.
The following need to be manually downloaded into the repo or excluded:
(Also written to ./MODS_NEED_DOWNLOAD.txt)

Mod                                    Slug                      Filename                               Download page                                                        
=====================================  ========================  =====================================  =====================================================================
Exquisito                              exquisito                 Exquisito-1.19.2-1.2.0                 https://www.curseforge.com/minecraft/mc-mods/exquisito               
ImmediatelyFast Reforged (Unofficial)  immediatelyfast-reforged  ImmediatelyFastReforged-1.19.2-1.1.12  https://www.curseforge.com/minecraft/mc-mods/immediatelyfast-reforged
Lightspeed - Launch optimizations      lightspeedmod             lightspeed-1.19.2-1.0.5                https://www.curseforge.com/minecraft/mc-mods/lightspeedmod           
Redirectionor                          redirectionor             redirectionor-forge-1.19.2-3.0.3.jar   https://www.curseforge.com/minecraft/mc-mods/redirectionor           
Structory                              structory                 Structory 1.19.3 v1.3.1a               https://www.curseforge.com/minecraft/mc-mods/structory               
Structory: Towers                      structory-towers          Structory Towers 1.19.3 v1.0.2         https://www.curseforge.com/minecraft/mc-mods/structory-towers        
[init] ERROR failed to auto-install CurseForge modpack
[init] Running as uid=1000 gid=1000 with /data as 'drwxrwxr-x 1 1000 1000 462 Aug  7 04:55 /data'
[mc-image-helper] 05:00:48.095 WARN  : Some files from modpack file Better MC [FORGE] - 1.19.2 v17.zip were missing. Proceeding with a re-install
[mc-image-helper] 05:00:51.904 INFO  : Processing modpack ' Better MC [FORGE] 1.19.2 v17' (better-mc-forge-bmc3) @ 550864:4674465
[mc-image-helper] 05:00:53.145 INFO  : Mod file mods/villagernames-1.19.2-5.2.jar already exists
[mc-image-helper] 05:00:53.145 INFO  : Mod file mods/another_furniture-forge-1.19.2-2.1.3.jar already exists
[mc-image-helper] 05:00:53.146 INFO  : Mod file mods/corpse-1.19.2-1.0.0.jar already exists
[mc-image-helper] 05:00:53.147 INFO  : Mod file mods/defaultoptions-forge-1.19-15.0.1.jar already exists
[mc-image-helper] 05:00:53.147 INFO  : Mod file mods/modernfix-forge-5.4.1+mc1.19.2.jar already exists
[mc-image-helper] 05:00:53.149 INFO  : Mod file mods/kotlinforforge-3.12.0-all.jar already exists
[mc-image-helper] 05:00:53.150 INFO  : Mod file mods/visuality-forge-2.0.1.jar already exists
[mc-image-helper] 05:00:53.150 INFO  : Mod file mods/upgradedcore-1.19.2-4.1.0.1-release.jar already exists
[mc-image-helper] 05:00:53.241 INFO  : Mod file mods/windswept-1.19.2-2.2.2.jar already exists
[mc-image-helper] 05:00:53.280 INFO  : Mod file mods/resourcefullib-forge-1.19.2-1.1.24.jar already exists
[mc-image-helper] 05:00:53.282 INFO  : Mod file mods/ShieldExpansion-1.19.2-1.1.6.jar already exists
[mc-image-helper] 05:00:53.283 INFO  : Mod file mods/BarteringStation-v4.0.3-1.19.2-Forge.jar already exists
[mc-image-helper] 05:00:53.296 INFO  : Mod file mods/Iceberg-1.19.2-forge-1.1.4.jar already exists
[mc-image-helper] 05:00:53.455 INFO  : Excluding mod file 'Cherished Worlds (Fabric/Forge/Quilt)' (cherished-worlds) due to configuration
[mc-image-helper] 05:00:53.716 INFO  : Excluding mod file 'TexTrue's Rubidium Options' (textrues-rubidium-options) due to configuration
[mc-image-helper] 05:00:53.753 INFO  : Mod file mods/revampedwolf-1.19.2-4.0.0.jar already exists
[mc-image-helper] 05:00:53.755 INFO  : Mod file mods/environmental-1.19.2-3.0.0.jar already exists
[mc-image-helper] 05:00:53.756 INFO  : Mod file mods/L_Enders_Cataclysm-1.26-1.19.2.jar already exists
[mc-image-helper] 05:00:53.757 INFO  : Mod file mods/incubation-1.19-3.0.0.jar already exists
[mc-image-helper] 05:00:53.767 INFO  : Mod file mods/CreativeCore_FORGE_v2.9.4_mc1.19.2.jar already exists
[mc-image-helper] 05:00:54.289 INFO  : Mod file mods/TerraBlender-forge-1.19.2-2.0.1.166.jar already exists
[mc-image-helper] 05:00:54.297 INFO  : Mod file mods/ImmediatelyFastReforged-1.19.2-1.1.12.jar obtained from downloads repo
[mc-image-helper] 05:00:54.319 INFO  : Mod file mods/starterkit-1.19.2-5.2.jar already exists
[mc-image-helper] 05:00:54.324 INFO  : Mod file mods/geckolib-forge-1.19-3.1.40.jar already exists
[mc-image-helper] 05:00:54.327 INFO  : Mod file mods/AutoRegLib-1.8.2-55.jar already exists
[mc-image-helper] 05:00:54.331 INFO  : Mod file mods/AttributeFix-Forge-1.19.2-17.2.7.jar already exists
[mc-image-helper] 05:00:54.334 INFO  : Mod file mods/Good Ending-1.19.2-1.0.2-forge.jar already exists
[mc-image-helper] 05:00:54.358 INFO  : Mod file mods/supplementaries-1.19.2-2.3.20.jar already exists
[mc-image-helper] 05:00:54.364 INFO  : Mod file mods/Raided-1.19.2-0.1.3.jar already exists
[mc-image-helper] 05:00:54.364 INFO  : Mod file mods/konkrete_forge_1.6.1_MC_1.19-1.19.2.jar already exists
[mc-image-helper] 05:00:54.368 INFO  : Mod file mods/VisualWorkbench-v4.2.4-1.19.2-Forge.jar already exists
[mc-image-helper] 05:00:54.370 INFO  : Mod file mods/snowundertrees-1.19.2-1.3.1.jar already exists
[mc-image-helper] 05:00:54.373 INFO  : Mod file mods/hunterillager-1.19.2-8.0.0.jar already exists
[mc-image-helper] 05:00:54.374 INFO  : Mod file mods/neruina-1.1.0-forge+1.19.jar already exists
[mc-image-helper] 05:00:54.375 INFO  : Mod file mods/jei-1.19.2-forge-11.6.0.1016.jar already exists
[mc-image-helper] 05:00:54.380 INFO  : Mod file mods/BambooEverything-forge-2.2.4-build.33+mc1.19.2.jar already exists
[mc-image-helper] 05:00:54.380 INFO  : Mod file mods/v_slab_compat-1.19.2-1.4.jar already exists
[mc-image-helper] 05:00:54.402 INFO  : Mod file mods/neapolitan-1.19.2-4.0.2.jar already exists
[mc-image-helper] 05:00:54.404 INFO  : Mod file mods/PickUpNotifier-v4.2.4-1.19.2-Forge.jar already exists
[mc-image-helper] 05:00:54.405 INFO  : Mod file mods/DarkPaintings-Forge-1.19.2-13.1.5.jar already exists
[mc-image-helper] 05:00:54.411 INFO  : Mod file mods/MagnumTorch-v4.2.3-1.19.2-Forge.jar already exists
[mc-image-helper] 05:00:54.412 INFO  : Mod file mods/xlpackets-1.18.2-2.1.jar already exists
[mc-image-helper] 05:00:54.413 INFO  : Mod file mods/YungsApi-1.19.2-Forge-3.8.9.jar already exists
[mc-image-helper] 05:00:54.414 INFO  : Mod file mods/BetterCompatibilityChecker-1.0.10-build.50+mc1.19.2.jar already exists
[mc-image-helper] 05:00:54.415 INFO  : Mod file mods/exquisito-1.19.2-1.2.0.jar obtained from downloads repo
[mc-image-helper] 05:00:54.418 INFO  : Mod file mods/Quark-3.4-405.jar already exists
[mc-image-helper] 05:00:54.428 INFO  : Excluding mod file 'Just Enough Resources (JER)' (just-enough-resources-jer) due to configuration
[mc-image-helper] 05:00:54.430 INFO  : Mod file mods/savage_and_ravage-1.19.2-5.0.4.jar already exists
[mc-image-helper] 05:00:54.435 INFO  : Mod file mods/Entity_Collision_FPS_Fix-forge-1.19-2.0.0.0.jar already exists
[mc-image-helper] 05:00:54.439 INFO  : Mod file mods/ftb-teams-forge-1902.2.14-build.123.jar already exists
[mc-image-helper] 05:00:54.440 INFO  : Mod file mods/canary-mc1.19.2-0.2.8.jar already exists
[mc-image-helper] 05:00:54.442 INFO  : Mod file mods/plushies-1.2-1.19.2.jar already exists
[mc-image-helper] 05:00:54.445 INFO  : Mod file mods/caelus-forge-1.19.2-3.0.0.6.jar already exists
[mc-image-helper] 05:00:54.455 INFO  : Mod file mods/End's Phantasm - BETAv1.2.10.5 - 1.19.2.jar already exists
[mc-image-helper] 05:00:54.459 INFO  : Mod file mods/Highlighter-1.19.1-1.1.4.jar already exists
[mc-image-helper] 05:00:54.637 INFO  : Excluding mod file 'Neko's Enchanted Books' (nekos-enchanted-books) due to configuration
[mc-image-helper] 05:00:54.647 INFO  : Mod file mods/BetterTridents-v4.0.2-1.19.2-Forge.jar already exists
[mc-image-helper] 05:00:54.649 INFO  : Mod file mods/Delightful-1.19.2-3.3.jar already exists
[mc-image-helper] 05:00:54.652 INFO  : Mod file mods/FallingTree-1.19.2-3.10.0.jar already exists
[mc-image-helper] 05:00:54.653 INFO  : Mod file mods/kleeslabs-forge-1.19.2-12.3.0.jar already exists
[mc-image-helper] 05:00:54.656 INFO  : Mod file mods/open-parties-and-claims-forge-1.19.2-0.19.1.jar already exists
[mc-image-helper] 05:00:54.657 INFO  : Mod file mods/twilightforest-1.19.2-4.2.1518-universal.jar already exists
[mc-image-helper] 05:00:54.659 INFO  : Mod file mods/ftb-quests-forge-1902.5.3-build.258.jar already exists
[mc-image-helper] 05:00:54.659 INFO  : Mod file mods/abundant_atmosphere-1.19.2-1.0.2.jar already exists
[mc-image-helper] 05:00:54.659 INFO  : Mod file mods/Rex's-AdditionalStructures-1.19.x-(v.4.0.3).jar already exists
[mc-image-helper] 05:00:54.661 INFO  : Mod file mods/structure_gel-1.19.2-2.7.2.jar already exists
[mc-image-helper] 05:00:54.662 INFO  : Mod file mods/CorgiLib-forge-1.19.2-1.0.0.34.jar already exists
[mc-image-helper] 05:00:54.669 INFO  : Mod file mods/drippyloadingscreen_forge_2.2.2_MC_1.19.1-1.19.2.jar already exists
[mc-image-helper] 05:00:54.729 INFO  : Mod file mods/excavated_variants-forge-1.19.2-1.0.3.jar already exists
[mc-image-helper] 05:00:54.771 INFO  : Mod file mods/BoatBreakFix-Universal-1.0.11.jar already exists
[mc-image-helper] 05:00:54.843 INFO  : Excluding mod file 'Tips' (tips) due to configuration
[mc-image-helper] 05:00:54.855 INFO  : Mod file mods/spark-1.10.37-forge.jar already exists
[mc-image-helper] 05:00:54.870 INFO  : Mod file mods/gardens-of-the-dead-forge-2.0.1.jar already exists
[mc-image-helper] 05:00:54.870 INFO  : Mod file mods/bygonenether-1.3.0-1.19.2.jar already exists
[mc-image-helper] 05:00:54.876 INFO  : Mod file mods/YungsBetterWitchHuts-1.19.2-Forge-2.1.0.jar already exists
[mc-image-helper] 05:00:54.877 INFO  : Mod file mods/letmedespawn-1.18.x-1.19.x-forge-1.0.3.jar already exists
[mc-image-helper] 05:00:54.878 INFO  : Mod file mods/TradingPost-v4.2.0-1.19.2-Forge.jar already exists
[mc-image-helper] 05:00:54.878 INFO  : Mod file mods/fastpaintings-1.19-1.1.1.jar already exists
[mc-image-helper] 05:00:54.880 INFO  : Mod file mods/alternate-current-mc1.19-1.7.0.jar already exists
[mc-image-helper] 05:00:54.884 INFO  : Mod file mods/MindfulDarkness-v4.0.9-1.19.2-Forge.jar already exists
[mc-image-helper] 05:00:54.884 INFO  : Mod file mods/charmofundying-forge-6.2.1+1.19.2.jar already exists
[mc-image-helper] 05:00:55.033 INFO  : Excluding mod file '[ETF] Entity Texture Features - [Fabric & Forge]' (entity-texture-features-fabric) due to configuration
[mc-image-helper] 05:00:56.105 INFO  : Mod file mods/lootintegrations-1.19.2-3.1.jar already exists
[mc-image-helper] 05:00:56.107 INFO  : Mod file mods/citadel-2.1.4-1.19.jar already exists
[mc-image-helper] 05:00:56.143 INFO  : Mod file mods/personality-1.19-3.0.1.jar already exists
[mc-image-helper] 05:00:56.145 INFO  : Mod file mods/fancymenu_forge_2.14.9_MC_1.19-1.19.2.jar already exists
[mc-image-helper] 05:00:56.146 INFO  : Mod file mods/woodworks-1.19.2-2.2.1.jar already exists
[mc-image-helper] 05:00:56.152 INFO  : Mod file mods/smarterfarmers-1.19.2-1.7.1.jar already exists
[mc-image-helper] 05:00:56.154 INFO  : Mod file mods/geophilic-1.19-2.0.0c.jar already exists
[mc-image-helper] 05:00:56.163 INFO  : Mod file mods/FarmersDelight-1.19.2-1.2.2.jar already exists
[mc-image-helper] 05:00:56.170 INFO  : Mod file mods/starlight-1.1.1+forge.cf5b10b.jar already exists
[mc-image-helper] 05:00:56.172 INFO  : Mod file mods/comforts-forge-6.0.5+1.19.2.jar already exists
[mc-image-helper] 05:00:56.176 INFO  : Mod file mods/Xaeros_Minimap_23.6.0_Forge_1.19.1.jar already exists
[mc-image-helper] 05:00:56.178 INFO  : Mod file mods/balm-forge-1.19.2-4.5.7.jar already exists
[mc-image-helper] 05:00:56.181 INFO  : Mod file mods/LeavesBeGone-v4.0.1-1.19.2-Forge.jar already exists
[mc-image-helper] 05:00:56.184 INFO  : Mod file mods/architectury-6.5.85-forge.jar already exists
[mc-image-helper] 05:00:56.185 INFO  : Mod file mods/EndlessBiomes 1.4s - 1.19.2 (Server-friendly).jar already exists
[mc-image-helper] 05:00:56.192 INFO  : Mod file mods/elevatorid-1.19.2-1.8.9.jar already exists
[mc-image-helper] 05:00:56.200 INFO  : Mod file mods/soundphysics-forge-1.19.2-1.0.18.jar already exists
[mc-image-helper] 05:00:56.200 INFO  : Mod file mods/JER-Integration-4.4.0.jar already exists
[mc-image-helper] 05:00:56.204 INFO  : Mod file mods/carryon-forge-1.19.2-2.0.5.17.jar already exists
[mc-image-helper] 05:00:56.204 INFO  : Mod file mods/clayworks-1.19.2-2.0.1.jar already exists
[mc-image-helper] 05:00:56.214 INFO  : Mod file mods/dynamic_asset_generator-forge-1.19.2-1.2.0.jar already exists
[mc-image-helper] 05:00:56.214 INFO  : Mod file mods/Fallingleaves-1.19.1-1.3.1.jar already exists
[mc-image-helper] 05:00:56.218 INFO  : Mod file mods/VillagersPlus_1.2_(FORGE)_for_1.19.2.jar already exists
[mc-image-helper] 05:00:56.219 INFO  : Mod file mods/everycomp-1.19.2-2.4.12.jar already exists
[mc-image-helper] 05:00:56.221 INFO  : Mod file mods/UnusualEnd1.19.2_V1.4.3.jar already exists
[mc-image-helper] 05:00:56.223 INFO  : Mod file mods/Patchouli-1.19.2-77.jar already exists
[mc-image-helper] 05:00:56.223 INFO  : Mod file mods/spirit-forge-1.19.2-2.2.6.jar already exists
[mc-image-helper] 05:00:56.227 INFO  : Excluding mod file 'Not Enough Animations' (not-enough-animations) due to configuration
[mc-image-helper] 05:00:56.229 INFO  : Mod file mods/Stoneworks-v4.0.1-1.19.2-Forge.jar already exists
[mc-image-helper] 05:00:56.236 INFO  : Mod file mods/Decorative Blocks-forge-1.19.2-3.0.0.jar already exists
[mc-image-helper] 05:00:56.239 INFO  : Mod file mods/NethersDelight-1.19-3.0.jar already exists
[mc-image-helper] 05:00:56.241 INFO  : Mod file mods/Jade-1.19.1-forge-8.8.1.jar already exists
[mc-image-helper] 05:00:56.242 INFO  : Mod file mods/rottencreatures-forge-1.19.2-1.0.1.jar already exists
[mc-image-helper] 05:00:56.252 INFO  : Mod file mods/BetterModsButton-v4.2.4-1.19.2-Forge.jar already exists
[mc-image-helper] 05:00:56.253 INFO  : Mod file mods/dragonmounts-1.19.2-1.1.4a.jar already exists
[mc-image-helper] 05:00:56.254 INFO  : Mod file mods/XaerosWorldMap_1.31.0_Forge_1.19.1.jar already exists
[mc-image-helper] 05:00:56.257 INFO  : Mod file mods/OverflowingBars-v4.0.1-1.19.2-Forge.jar already exists
[mc-image-helper] 05:00:56.258 INFO  : Mod file mods/moonlight-1.19.2-2.2.43-forge.jar already exists
[mc-image-helper] 05:00:56.259 INFO  : Mod file mods/connectivity-1.19.2-4.4.jar already exists
[mc-image-helper] 05:00:56.263 INFO  : Mod file mods/NightConfigFixes-v4.0.7-1.19.2-Forge.jar already exists
[mc-image-helper] 05:00:56.264 INFO  : Mod file mods/PuzzlesLib-v4.4.3-1.19.2-Forge.jar already exists
[mc-image-helper] 05:00:56.266 INFO  : Mod file mods/lightspeed-1.19.2-1.0.5.jar obtained from downloads repo
[mc-image-helper] 05:00:56.274 INFO  : Mod file mods/transparent-5.1.2+1.19-forge.jar already exists
[mc-image-helper] 05:00:56.277 INFO  : Mod file mods/DiagonalFences-v4.2.6-1.19.2-Forge.jar already exists
[mc-image-helper] 05:00:56.278 INFO  : Mod file mods/hearths-v1.0.0-mc1.19u1.19.3.jar already exists
[mc-image-helper] 05:00:56.278 INFO  : Mod file mods/memoryleakfix-forge-1.17+-1.0.0.jar already exists
[mc-image-helper] 05:00:56.287 INFO  : Mod file mods/friendsandfoes-forge-mc1.19.2-1.8.5.jar already exists
[mc-image-helper] 05:00:56.288 INFO  : Mod file mods/collective-1.19.2-6.65.jar already exists
[mc-image-helper] 05:00:56.292 INFO  : Mod file mods/BetterAdvancements-1.19.2-0.2.2.147.jar already exists
[mc-image-helper] 05:00:56.297 WARN  : The authors of the mod 'Redirectionor' have disallowed project distribution. Manually download the file 'redirectionor-forge-1.19.2-3.0.3.jar' from https://www.curseforge.com/minecraft/mc-mods/redirectionor and supply via downloads repo or separately.
[mc-image-helper] 05:00:56.298 INFO  : Mod file mods/YungsBetterMineshafts-1.19.2-Forge-3.2.0.jar already exists
[mc-image-helper] 05:00:56.299 INFO  : Mod file mods/upgradednetherite-1.19.2-5.1.0.9-release.jar already exists
[mc-image-helper] 05:00:56.301 INFO  : Mod file mods/Galosphere-1.19.2-1.3.0-Forge.jar already exists
[mc-image-helper] 05:00:56.303 INFO  : Mod file mods/pluto-mc1.19.2-0.0.9.jar already exists
[mc-image-helper] 05:00:56.304 INFO  : Mod file mods/lazydfu-1.19-1.0.2.jar already exists
[mc-image-helper] 05:00:56.305 INFO  : Mod file mods/takesapillage-1.0.3-1.19.2.jar already exists
[mc-image-helper] 05:00:56.312 INFO  : Mod file mods/twigs-forge-1.19.2-3.0.1.jar already exists
[mc-image-helper] 05:00:56.317 INFO  : Mod file mods/stalwart-dungeons-1.19.2-1.2.8.jar already exists
[mc-image-helper] 05:00:56.323 INFO  : Mod file mods/explorations-forge-1.19.2-1.5.2.jar already exists
[mc-image-helper] 05:00:56.323 INFO  : Mod file mods/EasyAnvils-v4.0.11-1.19.2-Forge.jar already exists
[mc-image-helper] 05:00:56.331 INFO  : Mod file mods/ecologics-forge-1.19.2-2.1.11.jar already exists
[mc-image-helper] 05:00:56.332 INFO  : Mod file mods/NetherChested-v4.0.4-1.19.2-Forge.jar already exists
[mc-image-helper] 05:00:56.337 INFO  : Mod file mods/SnowRealMagic-1.19.2-forge-6.5.3.jar already exists
[mc-image-helper] 05:00:56.341 INFO  : Mod file mods/snowyspirit-1.19.2-2.1.10.jar already exists
[mc-image-helper] 05:00:56.341 INFO  : Mod file mods/Kiwi-1.19.1-forge-8.3.4.jar already exists
[mc-image-helper] 05:00:56.343 INFO  : Mod file mods/Public GUI Announcement-forge-1.19.2-4.3.3.jar already exists
[mc-image-helper] 05:00:56.344 INFO  : Mod file mods/waystones-forge-1.19.2-11.4.1.jar already exists
[mc-image-helper] 05:00:56.348 INFO  : Mod file mods/Sculked V1.4.1.jar already exists
[mc-image-helper] 05:00:56.350 INFO  : Mod file mods/memorysettings-1.19.2-5.2.jar already exists
[mc-image-helper] 05:00:56.352 INFO  : Mod file mods/deeperdarker-forge-1.1.6-forge.jar already exists
[mc-image-helper] 05:00:56.545 INFO  : Mod file mods/blue_skies-1.19.2-1.3.20.jar already exists
[mc-image-helper] 05:00:56.550 INFO  : Mod file mods/curios-forge-1.19.2-5.1.4.1.jar already exists
[mc-image-helper] 05:00:56.554 INFO  : Mod file mods/netherportalfix-forge-1.19-10.0.1.jar already exists
[mc-image-helper] 05:00:56.554 INFO  : Mod file mods/dolt_compat-1.19.2-1.1.2.jar already exists
[mc-image-helper] 05:00:56.556 INFO  : Mod file mods/yeetusexperimentus-1.0.1-build.2+mc1.19.1.jar already exists
[mc-image-helper] 05:00:56.557 INFO  : Mod file mods/SereneSeasons-1.19.2-8.1.0.24.jar already exists
[mc-image-helper] 05:00:56.559 INFO  : Mod file mods/structureessentials-1.19.2-2.9.jar already exists
[mc-image-helper] 05:00:56.560 INFO  : Mod file mods/BadMobs-1.19.2-16.1.3.jar already exists
[mc-image-helper] 05:00:56.565 INFO  : Mod file mods/atmospheric-1.19.2-5.0.0.jar already exists
[mc-image-helper] 05:00:56.566 INFO  : Mod file mods/NaturesCompass-1.19.2-1.10.0-forge.jar already exists
[mc-image-helper] 05:00:56.581 INFO  : Mod file mods/whatareyouvotingfor2022-1.19.2-1.9.jar already exists
[mc-image-helper] 05:00:56.589 INFO  : Mod file mods/NoChatReports-FORGE-1.19.2-v1.5.1.jar already exists
[mc-image-helper] 05:00:56.591 INFO  : Mod file mods/DungeonsArise-1.19.2-2.1.56-beta.jar already exists
[mc-image-helper] 05:00:56.594 INFO  : Mod file mods/polymorph-forge-0.46.4+1.19.2.jar already exists
[mc-image-helper] 05:00:56.676 INFO  : Excluding mod file 'Entity Culling Fabric/Forge' (entityculling) due to configuration
[mc-image-helper] 05:00:56.703 INFO  : Mod file mods/netherdepthsupgrade-3.0.0-1.19.2.jar already exists
[mc-image-helper] 05:00:56.710 INFO  : Mod file mods/smoothchunk-1.19.1-2.0.jar already exists
[mc-image-helper] 05:00:56.716 INFO  : Mod file mods/chunksending-forge-1.19-2.5.jar already exists
[mc-image-helper] 05:00:56.794 INFO  : Mod file mods/farsight-1.19.2-2.1.jar already exists
[mc-image-helper] 05:00:56.796 INFO  : Mod file mods/modpack-update-checker-1.19.2-forge-0.7.1.jar already exists
[mc-image-helper] 05:00:56.856 INFO  : Excluding mod file 'Magnesium/Rubidium Dynamic Lights' (dynamiclights-reforged) due to configuration
[mc-image-helper] 05:00:56.901 INFO  : Mod file mods/frosted-friends-1.19.2-1.0.7.jar already exists
[mc-image-helper] 05:00:56.902 INFO  : Mod file mods/swingthroughgrass-1.19.2-1.10.0.jar already exists
[mc-image-helper] 05:00:56.904 INFO  : Mod file mods/the-conjurer-1.19.2-1.1.5.jar already exists
[mc-image-helper] 05:00:56.907 INFO  : Mod file mods/letsdo-api-forge-1.1.0.jar already exists
[mc-image-helper] 05:00:57.051 INFO  : Excluding mod file 'Mouse Tweaks' (mouse-tweaks) due to configuration
[mc-image-helper] 05:00:57.073 INFO  : Mod file mods/YungsBetterNetherFortresses-1.19.2-Forge-1.0.6.jar already exists
[mc-image-helper] 05:00:57.081 INFO  : Mod file mods/YungsBetterDungeons-1.19.2-Forge-3.2.2.jar already exists
[mc-image-helper] 05:00:57.084 INFO  : Mod file mods/buzzier_bees-1.19-5.0.1.jar already exists
[mc-image-helper] 05:00:57.084 INFO  : Mod file mods/blueprint-1.19.2-6.1.2.jar already exists
[mc-image-helper] 05:00:57.085 INFO  : Mod file mods/YungsBridges-1.19.2-Forge-3.1.0.jar already exists
[mc-image-helper] 05:00:57.086 INFO  : Mod file mods/dungeons_plus-1.19.2-1.3.1.jar already exists
[mc-image-helper] 05:00:57.087 INFO  : Mod file mods/backpacked-2.1.12-1.19.2.jar already exists
[mc-image-helper] 05:00:57.091 INFO  : Mod file mods/fullstackwatchdog-1.0.1+1.19.2-forge.jar already exists
[mc-image-helper] 05:00:57.093 INFO  : Mod file mods/Paxi-1.19.2-Forge-3.0.1.jar already exists
[mc-image-helper] 05:00:57.190 INFO  : Mod file mods/Philips-Ruins1.19.2-6.8.jar already exists
[mc-image-helper] 05:00:57.235 INFO  : Excluding mod file 'Skin Layers 3D (Fabric/Forge)' (skin-layers-3d) due to configuration
[mc-image-helper] 05:00:57.274 INFO  : Mod file mods/biomemakeover-FORGE-1.19.2-1.6.4.jar already exists
[mc-image-helper] 05:00:57.275 INFO  : Mod file mods/xptome-1.19-2.1.7.jar already exists
[mc-image-helper] 05:00:57.283 INFO  : Mod file mods/Grass_Overhaul-Forge-23.05.28_MC1.19.2.jar already exists
[mc-image-helper] 05:00:57.422 INFO  : Excluding mod file 'Oculus' (oculus) due to configuration
[mc-image-helper] 05:00:57.453 INFO  : Mod file mods/skinned_lanterns-1.19.2-1.3.4.jar already exists
[mc-image-helper] 05:00:57.458 INFO  : Mod file mods/ResourcePackOverrides-v4.0.4-1.19.2-Forge.jar already exists
[mc-image-helper] 05:00:57.464 INFO  : Mod file mods/EasyMagic-v4.3.3-1.19.2-Forge.jar already exists
[mc-image-helper] 05:00:57.476 INFO  : Mod file mods/letsdo-vinery-forge-1.3.7.jar already exists
[mc-image-helper] 05:00:57.476 INFO  : Mod file mods/Oh_The_Biomes_You'll_Go-forge-1.19.2-2.0.1.4.jar already exists
[mc-image-helper] 05:00:57.501 INFO  : Mod file mods/item-filters-forge-1902.2.9-build.51.jar already exists
[mc-image-helper] 05:00:57.635 INFO  : Excluding mod file 'Controlling' (controlling) due to configuration
[mc-image-helper] 05:00:57.645 INFO  : Mod file mods/does_potato_tick-1.19.2-3.6.1.jar already exists
[mc-image-helper] 05:00:57.647 INFO  : Mod file mods/veinmining-forge-1.1.1+1.19.2.jar already exists
[mc-image-helper] 05:00:57.647 INFO  : Mod file mods/chefs-delight-1.0.2-forge-1.19.2.jar already exists
[mc-image-helper] 05:00:57.648 INFO  : Mod file mods/YungsBetterOceanMonuments-1.19.2-Forge-2.1.0.jar already exists
[mc-image-helper] 05:00:57.649 INFO  : Mod file mods/SimpleStorageNetwork-1.19.2-1.7.0.jar already exists
[mc-image-helper] 05:00:57.649 INFO  : Mod file mods/Bookshelf-Forge-1.19.2-16.3.20.jar already exists
[mc-image-helper] 05:00:57.650 INFO  : Mod file mods/cloth-config-8.3.103-forge.jar already exists
[mc-image-helper] 05:00:57.652 INFO  : Mod file mods/elytraslot-forge-6.1.1+1.19.2.jar already exists
[mc-image-helper] 05:00:57.663 INFO  : Mod file mods/repurposed_structures_forge-6.3.24+1.19.2.jar already exists
[mc-image-helper] 05:00:57.674 INFO  : Mod file mods/Clumps-forge-1.19.2-9.0.0+14.jar already exists
[mc-image-helper] 05:00:57.824 INFO  : Excluding mod file 'Enchantment Descriptions' (enchantment-descriptions) due to configuration
[mc-image-helper] 05:00:57.862 INFO  : Mod file mods/Paintings-forge-1.19.2-10.2.4.0.jar already exists
[mc-image-helper] 05:00:58.017 INFO  : Excluding mod file 'Magnesium/Rubidium Extras' (magnesium-extras) due to configuration
[mc-image-helper] 05:00:58.055 INFO  : Mod file mods/goblintraders-1.8.0-1.19.2.jar already exists
[mc-image-helper] 05:00:58.160 INFO  : Mod file mods/YungsBetterStrongholds-1.19.2-Forge-3.2.0.jar already exists
[mc-image-helper] 05:00:58.238 INFO  : Mod file mods/explorify-forge-1.19-1.3.0.jar already exists
[mc-image-helper] 05:00:58.241 INFO  : Mod file mods/xaeros_waystones_compability-1.0.jar already exists
[mc-image-helper] 05:00:58.241 INFO  : Mod file mods/guardvillagers-1.19.2-1.5.6.jar already exists
[mc-image-helper] 05:00:58.244 INFO  : Mod file mods/handcrafted-forge-1.19.2-2.0.6.jar already exists
[mc-image-helper] 05:00:58.246 INFO  : Mod file mods/deuf-1.19.2-1.3.jar already exists
[mc-image-helper] 05:00:58.250 INFO  : Mod file mods/pet_cemetery-1.19.2-1.0.3.jar already exists
[mc-image-helper] 05:00:58.266 INFO  : Mod file mods/ftb-library-forge-1902.4.1-build.236.jar already exists
[mc-image-helper] 05:00:58.273 INFO  : Mod file mods/culturaldelights-1.19.2-0.15.4.jar already exists
[mc-image-helper] 05:00:58.273 INFO  : Mod file mods/illagersweararmor-1.2.6-1.19.2.jar already exists
[mc-image-helper] 05:00:58.274 INFO  : Mod file mods/twilightdelight-1.3.1.jar already exists
[mc-image-helper] 05:00:58.275 INFO  : Mod file mods/SimpleDiscordRichPresence-forge-3.0.4-build.27+mc1.19.2.jar already exists
[mc-image-helper] 05:00:58.275 INFO  : Mod file mods/Structory_1.19.3_v1.3.1a.jar obtained from downloads repo
[mc-image-helper] 05:00:58.276 INFO  : Mod file mods/ferritecore-5.0.3-forge.jar already exists
[mc-image-helper] 05:00:58.342 INFO  : Excluding mod file 'Rubidium' (rubidium) due to configuration
[mc-image-helper] 05:00:58.560 INFO  : Mod file mods/immersive_weathering-1.19.2-1.2.9-forge.jar already exists
[mc-image-helper] 05:00:58.564 INFO  : Mod file mods/upgradednetherite_ultimate-1.19.2-4.1.0.4-release.jar already exists
[mc-image-helper] 05:00:58.567 INFO  : Mod file mods/Structory_Towers_1.19.3_v1.0.2.jar obtained from downloads repo
[mc-image-helper] 05:00:58.570 INFO  : Mod file mods/upgrade_aquatic-1.19.2-5.0.0.jar already exists
[mc-image-helper] 05:00:58.571 INFO  : Mod file mods/servercore-forge-1.3.5+1.19.2.jar already exists
[mc-image-helper] 05:00:58.571 INFO  : Mod file mods/upgradednetherite_items-1.19.2-4.1.0.1-release.jar already exists
[mc-image-helper] 05:00:58.571 INFO  : Mod file mods/alexsmobs-1.21.1.jar already exists
[mc-image-helper] 05:01:01.297 INFO  : Forge version 43.2.19 for minecraft version 1.19.2 is already installed

Some mod authors disallow automated downloads.
The following need to be manually downloaded into the repo or excluded:
(Also written to ./MODS_NEED_DOWNLOAD.txt)

Mod            Slug           Filename                              Download page                                             
=============  =============  ====================================  ==========================================================
Redirectionor  redirectionor  redirectionor-forge-1.19.2-3.0.3.jar  https://www.curseforge.com/minecraft/mc-mods/redirectionor
[init] ERROR failed to auto-install CurseForge modpack
[init] Running as uid=1000 gid=1000 with /data as 'drwxrwxr-x 1 1000 1000 462 Aug  7 05:00 /data'
[mc-image-helper] 05:02:01.164 WARN  : Some files from modpack file Better MC [FORGE] - 1.19.2 v17.zip were missing. Proceeding with a re-install
[mc-image-helper] 05:02:04.600 INFO  : Processing modpack ' Better MC [FORGE] 1.19.2 v17' (better-mc-forge-bmc3) @ 550864:4674465
[mc-image-helper] 05:02:05.126 INFO  : Excluding mod file 'Cherished Worlds (Fabric/Forge/Quilt)' (cherished-worlds) due to configuration
[mc-image-helper] 05:02:05.157 INFO  : Mod file mods/ShieldExpansion-1.19.2-1.1.6.jar already exists
[mc-image-helper] 05:02:05.157 INFO  : Mod file mods/visuality-forge-2.0.1.jar already exists
[mc-image-helper] 05:02:05.158 INFO  : Mod file mods/resourcefullib-forge-1.19.2-1.1.24.jar already exists
[mc-image-helper] 05:02:05.158 INFO  : Mod file mods/upgradedcore-1.19.2-4.1.0.1-release.jar already exists
[mc-image-helper] 05:02:05.160 INFO  : Mod file mods/windswept-1.19.2-2.2.2.jar already exists
[mc-image-helper] 05:02:05.160 INFO  : Mod file mods/another_furniture-forge-1.19.2-2.1.3.jar already exists
[mc-image-helper] 05:02:05.162 INFO  : Mod file mods/corpse-1.19.2-1.0.0.jar already exists
[mc-image-helper] 05:02:05.163 INFO  : Mod file mods/modernfix-forge-5.4.1+mc1.19.2.jar already exists
[mc-image-helper] 05:02:05.166 INFO  : Mod file mods/defaultoptions-forge-1.19-15.0.1.jar already exists
[mc-image-helper] 05:02:05.167 INFO  : Mod file mods/kotlinforforge-3.12.0-all.jar already exists
[mc-image-helper] 05:02:05.168 INFO  : Mod file mods/Iceberg-1.19.2-forge-1.1.4.jar already exists
[mc-image-helper] 05:02:05.174 INFO  : Mod file mods/BarteringStation-v4.0.3-1.19.2-Forge.jar already exists
[mc-image-helper] 05:02:05.201 INFO  : Excluding mod file 'TexTrue's Rubidium Options' (textrues-rubidium-options) due to configuration
[mc-image-helper] 05:02:05.204 INFO  : Mod file mods/villagernames-1.19.2-5.2.jar already exists
[mc-image-helper] 05:02:05.212 INFO  : Mod file mods/revampedwolf-1.19.2-4.0.0.jar already exists
[mc-image-helper] 05:02:05.213 INFO  : Mod file mods/L_Enders_Cataclysm-1.26-1.19.2.jar already exists
[mc-image-helper] 05:02:05.218 INFO  : Mod file mods/incubation-1.19-3.0.0.jar already exists
[mc-image-helper] 05:02:05.234 INFO  : Mod file mods/environmental-1.19.2-3.0.0.jar already exists
[mc-image-helper] 05:02:05.240 INFO  : Mod file mods/CreativeCore_FORGE_v2.9.4_mc1.19.2.jar already exists
[mc-image-helper] 05:02:05.330 INFO  : Mod file mods/Good Ending-1.19.2-1.0.2-forge.jar already exists
[mc-image-helper] 05:02:05.337 INFO  : Mod file mods/ImmediatelyFastReforged-1.19.2-1.1.12.jar already exists
[mc-image-helper] 05:02:05.337 INFO  : Mod file mods/Raided-1.19.2-0.1.3.jar already exists
[mc-image-helper] 05:02:05.339 INFO  : Excluding mod file 'Just Enough Resources (JER)' (just-enough-resources-jer) due to configuration
[mc-image-helper] 05:02:05.353 INFO  : Mod file mods/TerraBlender-forge-1.19.2-2.0.1.166.jar already exists
[mc-image-helper] 05:02:05.359 INFO  : Mod file mods/starterkit-1.19.2-5.2.jar already exists
[mc-image-helper] 05:02:05.362 INFO  : Mod file mods/AttributeFix-Forge-1.19.2-17.2.7.jar already exists
[mc-image-helper] 05:02:05.363 INFO  : Mod file mods/DarkPaintings-Forge-1.19.2-13.1.5.jar already exists
[mc-image-helper] 05:02:05.364 INFO  : Mod file mods/geckolib-forge-1.19-3.1.40.jar already exists
[mc-image-helper] 05:02:05.365 INFO  : Mod file mods/supplementaries-1.19.2-2.3.20.jar already exists
[mc-image-helper] 05:02:05.367 INFO  : Mod file mods/AutoRegLib-1.8.2-55.jar already exists
[mc-image-helper] 05:02:05.368 INFO  : Mod file mods/konkrete_forge_1.6.1_MC_1.19-1.19.2.jar already exists
[mc-image-helper] 05:02:05.370 INFO  : Mod file mods/snowundertrees-1.19.2-1.3.1.jar already exists
[mc-image-helper] 05:02:05.372 INFO  : Mod file mods/VisualWorkbench-v4.2.4-1.19.2-Forge.jar already exists
[mc-image-helper] 05:02:05.372 INFO  : Mod file mods/hunterillager-1.19.2-8.0.0.jar already exists
[mc-image-helper] 05:02:05.376 INFO  : Mod file mods/neapolitan-1.19.2-4.0.2.jar already exists
[mc-image-helper] 05:02:05.385 INFO  : Mod file mods/PickUpNotifier-v4.2.4-1.19.2-Forge.jar already exists
[mc-image-helper] 05:02:05.389 INFO  : Mod file mods/xlpackets-1.18.2-2.1.jar already exists
[mc-image-helper] 05:02:05.395 INFO  : Mod file mods/neruina-1.1.0-forge+1.19.jar already exists
[mc-image-helper] 05:02:05.398 INFO  : Mod file mods/jei-1.19.2-forge-11.6.0.1016.jar already exists
[mc-image-helper] 05:02:05.398 INFO  : Mod file mods/BetterCompatibilityChecker-1.0.10-build.50+mc1.19.2.jar already exists
[mc-image-helper] 05:02:05.399 INFO  : Mod file mods/BambooEverything-forge-2.2.4-build.33+mc1.19.2.jar already exists
[mc-image-helper] 05:02:05.400 INFO  : Mod file mods/MagnumTorch-v4.2.3-1.19.2-Forge.jar already exists
[mc-image-helper] 05:02:05.405 INFO  : Mod file mods/YungsApi-1.19.2-Forge-3.8.9.jar already exists
[mc-image-helper] 05:02:05.406 INFO  : Mod file mods/v_slab_compat-1.19.2-1.4.jar already exists
[mc-image-helper] 05:02:05.407 INFO  : Mod file mods/canary-mc1.19.2-0.2.8.jar already exists
[mc-image-helper] 05:02:05.408 INFO  : Mod file mods/savage_and_ravage-1.19.2-5.0.4.jar already exists
[mc-image-helper] 05:02:05.410 INFO  : Mod file mods/Entity_Collision_FPS_Fix-forge-1.19-2.0.0.0.jar already exists
[mc-image-helper] 05:02:05.411 INFO  : Mod file mods/plushies-1.2-1.19.2.jar already exists
[mc-image-helper] 05:02:05.414 INFO  : Mod file mods/Quark-3.4-405.jar already exists
[mc-image-helper] 05:02:05.416 INFO  : Mod file mods/caelus-forge-1.19.2-3.0.0.6.jar already exists
[mc-image-helper] 05:02:05.420 INFO  : Mod file mods/Highlighter-1.19.1-1.1.4.jar already exists
[mc-image-helper] 05:02:05.420 INFO  : Mod file mods/exquisito-1.19.2-1.2.0.jar already exists
[mc-image-helper] 05:02:05.426 INFO  : Mod file mods/ftb-teams-forge-1902.2.14-build.123.jar already exists
[mc-image-helper] 05:02:05.432 INFO  : Mod file mods/End's Phantasm - BETAv1.2.10.5 - 1.19.2.jar already exists
[mc-image-helper] 05:02:05.432 INFO  : Mod file mods/excavated_variants-forge-1.19.2-1.0.3.jar already exists
[mc-image-helper] 05:02:05.469 INFO  : Excluding mod file 'Neko's Enchanted Books' (nekos-enchanted-books) due to configuration
[mc-image-helper] 05:02:05.474 INFO  : Mod file mods/BoatBreakFix-Universal-1.0.11.jar already exists
[mc-image-helper] 05:02:05.478 INFO  : Mod file mods/FallingTree-1.19.2-3.10.0.jar already exists
[mc-image-helper] 05:02:05.480 INFO  : Mod file mods/BetterTridents-v4.0.2-1.19.2-Forge.jar already exists
[mc-image-helper] 05:02:05.483 INFO  : Mod file mods/Delightful-1.19.2-3.3.jar already exists
[mc-image-helper] 05:02:05.486 INFO  : Mod file mods/kleeslabs-forge-1.19.2-12.3.0.jar already exists
[mc-image-helper] 05:02:05.487 INFO  : Mod file mods/abundant_atmosphere-1.19.2-1.0.2.jar already exists
[mc-image-helper] 05:02:05.489 INFO  : Mod file mods/open-parties-and-claims-forge-1.19.2-0.19.1.jar already exists
[mc-image-helper] 05:02:05.491 INFO  : Mod file mods/Rex's-AdditionalStructures-1.19.x-(v.4.0.3).jar already exists
[mc-image-helper] 05:02:05.494 INFO  : Mod file mods/ftb-quests-forge-1902.5.3-build.258.jar already exists
[mc-image-helper] 05:02:05.497 INFO  : Mod file mods/CorgiLib-forge-1.19.2-1.0.0.34.jar already exists
[mc-image-helper] 05:02:05.497 INFO  : Mod file mods/twilightforest-1.19.2-4.2.1518-universal.jar already exists
[mc-image-helper] 05:02:05.501 INFO  : Mod file mods/structure_gel-1.19.2-2.7.2.jar already exists
[mc-image-helper] 05:02:05.504 INFO  : Mod file mods/drippyloadingscreen_forge_2.2.2_MC_1.19.1-1.19.2.jar already exists
[mc-image-helper] 05:02:05.534 INFO  : Excluding mod file 'Tips' (tips) due to configuration
[mc-image-helper] 05:02:05.548 INFO  : Mod file mods/spark-1.10.37-forge.jar already exists
[mc-image-helper] 05:02:05.550 INFO  : Mod file mods/gardens-of-the-dead-forge-2.0.1.jar already exists
[mc-image-helper] 05:02:05.552 INFO  : Mod file mods/bygonenether-1.3.0-1.19.2.jar already exists
[mc-image-helper] 05:02:05.553 INFO  : Mod file mods/TradingPost-v4.2.0-1.19.2-Forge.jar already exists
[mc-image-helper] 05:02:05.554 INFO  : Mod file mods/YungsBetterWitchHuts-1.19.2-Forge-2.1.0.jar already exists
[mc-image-helper] 05:02:05.555 INFO  : Mod file mods/fastpaintings-1.19-1.1.1.jar already exists
[mc-image-helper] 05:02:05.562 INFO  : Mod file mods/charmofundying-forge-6.2.1+1.19.2.jar already exists
[mc-image-helper] 05:02:05.565 INFO  : Mod file mods/alternate-current-mc1.19-1.7.0.jar already exists
[mc-image-helper] 05:02:05.567 INFO  : Mod file mods/letmedespawn-1.18.x-1.19.x-forge-1.0.3.jar already exists
[mc-image-helper] 05:02:05.572 INFO  : Mod file mods/MindfulDarkness-v4.0.9-1.19.2-Forge.jar already exists
[mc-image-helper] 05:02:05.574 INFO  : Excluding mod file '[ETF] Entity Texture Features - [Fabric & Forge]' (entity-texture-features-fabric) due to configuration
[mc-image-helper] 05:02:05.833 INFO  : Mod file mods/citadel-2.1.4-1.19.jar already exists
[mc-image-helper] 05:02:05.835 INFO  : Mod file mods/FarmersDelight-1.19.2-1.2.2.jar already exists
[mc-image-helper] 05:02:05.833 INFO  : Mod file mods/lootintegrations-1.19.2-3.1.jar already exists
[mc-image-helper] 05:02:05.836 INFO  : Mod file mods/personality-1.19-3.0.1.jar already exists
[mc-image-helper] 05:02:05.837 INFO  : Mod file mods/woodworks-1.19.2-2.2.1.jar already exists
[mc-image-helper] 05:02:05.837 INFO  : Excluding mod file 'Not Enough Animations' (not-enough-animations) due to configuration
[mc-image-helper] 05:02:05.841 INFO  : Mod file mods/balm-forge-1.19.2-4.5.7.jar already exists
[mc-image-helper] 05:02:05.842 INFO  : Mod file mods/starlight-1.1.1+forge.cf5b10b.jar already exists
[mc-image-helper] 05:02:05.844 INFO  : Mod file mods/fancymenu_forge_2.14.9_MC_1.19-1.19.2.jar already exists
[mc-image-helper] 05:02:05.852 INFO  : Mod file mods/LeavesBeGone-v4.0.1-1.19.2-Forge.jar already exists
[mc-image-helper] 05:02:05.866 INFO  : Mod file mods/smarterfarmers-1.19.2-1.7.1.jar already exists
[mc-image-helper] 05:02:05.869 INFO  : Mod file mods/geophilic-1.19-2.0.0c.jar already exists
[mc-image-helper] 05:02:05.869 INFO  : Mod file mods/architectury-6.5.85-forge.jar already exists
[mc-image-helper] 05:02:05.872 INFO  : Mod file mods/EndlessBiomes 1.4s - 1.19.2 (Server-friendly).jar already exists
[mc-image-helper] 05:02:05.872 INFO  : Mod file mods/clayworks-1.19.2-2.0.1.jar already exists
[mc-image-helper] 05:02:05.873 INFO  : Mod file mods/comforts-forge-6.0.5+1.19.2.jar already exists
[mc-image-helper] 05:02:05.873 INFO  : Mod file mods/JER-Integration-4.4.0.jar already exists
[mc-image-helper] 05:02:05.874 INFO  : Mod file mods/Xaeros_Minimap_23.6.0_Forge_1.19.1.jar already exists
[mc-image-helper] 05:02:05.874 INFO  : Mod file mods/dynamic_asset_generator-forge-1.19.2-1.2.0.jar already exists
[mc-image-helper] 05:02:05.876 INFO  : Mod file mods/OverflowingBars-v4.0.1-1.19.2-Forge.jar already exists
[mc-image-helper] 05:02:05.876 INFO  : Mod file mods/carryon-forge-1.19.2-2.0.5.17.jar already exists
[mc-image-helper] 05:02:05.878 INFO  : Mod file mods/soundphysics-forge-1.19.2-1.0.18.jar already exists
[mc-image-helper] 05:02:05.878 INFO  : Mod file mods/moonlight-1.19.2-2.2.43-forge.jar already exists
[mc-image-helper] 05:02:05.880 INFO  : Mod file mods/Fallingleaves-1.19.1-1.3.1.jar already exists
[mc-image-helper] 05:02:05.888 INFO  : Mod file mods/elevatorid-1.19.2-1.8.9.jar already exists
[mc-image-helper] 05:02:05.905 INFO  : Mod file mods/Patchouli-1.19.2-77.jar already exists
[mc-image-helper] 05:02:05.906 INFO  : Mod file mods/VillagersPlus_1.2_(FORGE)_for_1.19.2.jar already exists
[mc-image-helper] 05:02:05.907 INFO  : Mod file mods/everycomp-1.19.2-2.4.12.jar already exists
[mc-image-helper] 05:02:05.908 INFO  : Mod file mods/PuzzlesLib-v4.4.3-1.19.2-Forge.jar already exists
[mc-image-helper] 05:02:05.908 INFO  : Mod file mods/spirit-forge-1.19.2-2.2.6.jar already exists
[mc-image-helper] 05:02:05.911 INFO  : Mod file mods/UnusualEnd1.19.2_V1.4.3.jar already exists
[mc-image-helper] 05:02:05.912 INFO  : Mod file mods/BetterModsButton-v4.2.4-1.19.2-Forge.jar already exists
[mc-image-helper] 05:02:05.912 INFO  : Mod file mods/dragonmounts-1.19.2-1.1.4a.jar already exists
[mc-image-helper] 05:02:05.913 INFO  : Mod file mods/NethersDelight-1.19-3.0.jar already exists
[mc-image-helper] 05:02:05.913 INFO  : Mod file mods/Stoneworks-v4.0.1-1.19.2-Forge.jar already exists
[mc-image-helper] 05:02:05.914 INFO  : Mod file mods/upgradednetherite-1.19.2-5.1.0.9-release.jar already exists
[mc-image-helper] 05:02:05.914 INFO  : Mod file mods/ecologics-forge-1.19.2-2.1.11.jar already exists
[mc-image-helper] 05:02:05.915 INFO  : Mod file mods/Decorative Blocks-forge-1.19.2-3.0.0.jar already exists
[mc-image-helper] 05:02:05.915 INFO  : Mod file mods/connectivity-1.19.2-4.4.jar already exists
[mc-image-helper] 05:02:05.918 INFO  : Mod file mods/Jade-1.19.1-forge-8.8.1.jar already exists
[mc-image-helper] 05:02:05.925 INFO  : Mod file mods/NightConfigFixes-v4.0.7-1.19.2-Forge.jar already exists
[mc-image-helper] 05:02:05.941 INFO  : Mod file mods/rottencreatures-forge-1.19.2-1.0.1.jar already exists
[mc-image-helper] 05:02:05.941 INFO  : Mod file mods/XaerosWorldMap_1.31.0_Forge_1.19.1.jar already exists
[mc-image-helper] 05:02:05.943 INFO  : Mod file mods/memoryleakfix-forge-1.17+-1.0.0.jar already exists
[mc-image-helper] 05:02:05.945 INFO  : Mod file mods/lightspeed-1.19.2-1.0.5.jar already exists
[mc-image-helper] 05:02:05.947 INFO  : Mod file mods/DiagonalFences-v4.2.6-1.19.2-Forge.jar already exists
[mc-image-helper] 05:02:05.948 INFO  : Mod file mods/transparent-5.1.2+1.19-forge.jar already exists
[mc-image-helper] 05:02:05.951 INFO  : Mod file mods/friendsandfoes-forge-mc1.19.2-1.8.5.jar already exists
[mc-image-helper] 05:02:05.952 INFO  : Mod file mods/collective-1.19.2-6.65.jar already exists
[mc-image-helper] 05:02:05.954 INFO  : Mod file mods/stalwart-dungeons-1.19.2-1.2.8.jar already exists
[mc-image-helper] 05:02:05.954 INFO  : Mod file mods/takesapillage-1.0.3-1.19.2.jar already exists
[mc-image-helper] 05:02:05.954 INFO  : Mod file mods/lazydfu-1.19-1.0.2.jar already exists
[mc-image-helper] 05:02:05.955 INFO  : Mod file mods/redirectionor-forge-1.19.2-3.0.3.jar obtained from downloads repo
[mc-image-helper] 05:02:05.961 INFO  : Mod file mods/pluto-mc1.19.2-0.0.9.jar already exists
[mc-image-helper] 05:02:05.975 INFO  : Mod file mods/BetterAdvancements-1.19.2-0.2.2.147.jar already exists
[mc-image-helper] 05:02:05.978 INFO  : Mod file mods/twigs-forge-1.19.2-3.0.1.jar already exists
[mc-image-helper] 05:02:05.984 INFO  : Mod file mods/explorations-forge-1.19.2-1.5.2.jar already exists
[mc-image-helper] 05:02:05.984 INFO  : Mod file mods/SnowRealMagic-1.19.2-forge-6.5.3.jar already exists
[mc-image-helper] 05:02:05.985 INFO  : Mod file mods/Galosphere-1.19.2-1.3.0-Forge.jar already exists
[mc-image-helper] 05:02:05.987 INFO  : Mod file mods/EasyAnvils-v4.0.11-1.19.2-Forge.jar already exists
[mc-image-helper] 05:02:05.989 INFO  : Mod file mods/curios-forge-1.19.2-5.1.4.1.jar already exists
[mc-image-helper] 05:02:05.992 INFO  : Mod file mods/snowyspirit-1.19.2-2.1.10.jar already exists
[mc-image-helper] 05:02:05.994 INFO  : Mod file mods/Kiwi-1.19.1-forge-8.3.4.jar already exists
[mc-image-helper] 05:02:06.000 INFO  : Mod file mods/NetherChested-v4.0.4-1.19.2-Forge.jar already exists
[mc-image-helper] 05:02:06.002 INFO  : Mod file mods/YungsBetterMineshafts-1.19.2-Forge-3.2.0.jar already exists
[mc-image-helper] 05:02:06.012 INFO  : Mod file mods/waystones-forge-1.19.2-11.4.1.jar already exists
[mc-image-helper] 05:02:06.015 INFO  : Mod file mods/Sculked V1.4.1.jar already exists
[mc-image-helper] 05:02:06.015 INFO  : Mod file mods/Public GUI Announcement-forge-1.19.2-4.3.3.jar already exists
[mc-image-helper] 05:02:06.020 INFO  : Mod file mods/memorysettings-1.19.2-5.2.jar already exists
[mc-image-helper] 05:02:06.022 INFO  : Mod file mods/deeperdarker-forge-1.1.6-forge.jar already exists
[mc-image-helper] 05:02:06.024 INFO  : Mod file mods/blue_skies-1.19.2-1.3.20.jar already exists
[mc-image-helper] 05:02:06.073 INFO  : Excluding mod file 'Entity Culling Fabric/Forge' (entityculling) due to configuration
[mc-image-helper] 05:02:06.077 INFO  : Mod file mods/dolt_compat-1.19.2-1.1.2.jar already exists
[mc-image-helper] 05:02:06.077 INFO  : Mod file mods/netherportalfix-forge-1.19-10.0.1.jar already exists
[mc-image-helper] 05:02:06.079 INFO  : Mod file mods/yeetusexperimentus-1.0.1-build.2+mc1.19.1.jar already exists
[mc-image-helper] 05:02:06.084 INFO  : Mod file mods/SereneSeasons-1.19.2-8.1.0.24.jar already exists
[mc-image-helper] 05:02:06.088 INFO  : Mod file mods/NaturesCompass-1.19.2-1.10.0-forge.jar already exists
[mc-image-helper] 05:02:06.089 INFO  : Mod file mods/BadMobs-1.19.2-16.1.3.jar already exists
[mc-image-helper] 05:02:06.090 INFO  : Mod file mods/DungeonsArise-1.19.2-2.1.56-beta.jar already exists
[mc-image-helper] 05:02:06.091 INFO  : Mod file mods/structureessentials-1.19.2-2.9.jar already exists
[mc-image-helper] 05:02:06.103 INFO  : Mod file mods/atmospheric-1.19.2-5.0.0.jar already exists
[mc-image-helper] 05:02:06.103 INFO  : Mod file mods/NoChatReports-FORGE-1.19.2-v1.5.1.jar already exists
[mc-image-helper] 05:02:06.104 INFO  : Mod file mods/polymorph-forge-0.46.4+1.19.2.jar already exists
[mc-image-helper] 05:02:06.105 INFO  : Mod file mods/modpack-update-checker-1.19.2-forge-0.7.1.jar already exists
[mc-image-helper] 05:02:06.106 INFO  : Mod file mods/netherdepthsupgrade-3.0.0-1.19.2.jar already exists
[mc-image-helper] 05:02:06.112 INFO  : Mod file mods/farsight-1.19.2-2.1.jar already exists
[mc-image-helper] 05:02:06.113 INFO  : Mod file mods/chunksending-forge-1.19-2.5.jar already exists
[mc-image-helper] 05:02:06.115 INFO  : Mod file mods/smoothchunk-1.19.1-2.0.jar already exists
[mc-image-helper] 05:02:06.127 INFO  : Excluding mod file 'Magnesium/Rubidium Dynamic Lights' (dynamiclights-reforged) due to configuration
[mc-image-helper] 05:02:06.161 INFO  : Mod file mods/swingthroughgrass-1.19.2-1.10.0.jar already exists
[mc-image-helper] 05:02:06.161 INFO  : Mod file mods/the-conjurer-1.19.2-1.1.5.jar already exists
[mc-image-helper] 05:02:06.162 INFO  : Mod file mods/frosted-friends-1.19.2-1.0.7.jar already exists
[mc-image-helper] 05:02:06.166 INFO  : Mod file mods/letsdo-api-forge-1.1.0.jar already exists
[mc-image-helper] 05:02:06.192 INFO  : Mod file mods/hearths-v1.0.0-mc1.19u1.19.3.jar already exists
[mc-image-helper] 05:02:06.204 INFO  : Mod file mods/YungsBridges-1.19.2-Forge-3.1.0.jar already exists
[mc-image-helper] 05:02:06.204 INFO  : Mod file mods/YungsBetterNetherFortresses-1.19.2-Forge-1.0.6.jar already exists
[mc-image-helper] 05:02:06.204 INFO  : Mod file mods/blueprint-1.19.2-6.1.2.jar already exists
[mc-image-helper] 05:02:06.205 INFO  : Mod file mods/dungeons_plus-1.19.2-1.3.1.jar already exists
[mc-image-helper] 05:02:06.205 INFO  : Mod file mods/backpacked-2.1.12-1.19.2.jar already exists
[mc-image-helper] 05:02:06.205 INFO  : Mod file mods/Paxi-1.19.2-Forge-3.0.1.jar already exists
[mc-image-helper] 05:02:06.205 INFO  : Mod file mods/buzzier_bees-1.19-5.0.1.jar already exists
[mc-image-helper] 05:02:06.206 INFO  : Mod file mods/YungsBetterDungeons-1.19.2-Forge-3.2.2.jar already exists
[mc-image-helper] 05:02:06.207 INFO  : Mod file mods/fullstackwatchdog-1.0.1+1.19.2-forge.jar already exists
[mc-image-helper] 05:02:06.208 INFO  : Excluding mod file 'Mouse Tweaks' (mouse-tweaks) due to configuration
[mc-image-helper] 05:02:06.212 INFO  : Mod file mods/Philips-Ruins1.19.2-6.8.jar already exists
[mc-image-helper] 05:02:06.253 INFO  : Excluding mod file 'Skin Layers 3D (Fabric/Forge)' (skin-layers-3d) due to configuration
[mc-image-helper] 05:02:06.289 INFO  : Mod file mods/xptome-1.19-2.1.7.jar already exists
[mc-image-helper] 05:02:06.290 INFO  : Mod file mods/Grass_Overhaul-Forge-23.05.28_MC1.19.2.jar already exists
[mc-image-helper] 05:02:06.291 INFO  : Mod file mods/biomemakeover-FORGE-1.19.2-1.6.4.jar already exists
[mc-image-helper] 05:02:06.300 INFO  : Excluding mod file 'Oculus' (oculus) due to configuration
[mc-image-helper] 05:02:06.334 INFO  : Mod file mods/ResourcePackOverrides-v4.0.4-1.19.2-Forge.jar already exists
[mc-image-helper] 05:02:06.335 INFO  : Mod file mods/EasyMagic-v4.3.3-1.19.2-Forge.jar already exists
[mc-image-helper] 05:02:06.336 INFO  : Mod file mods/item-filters-forge-1902.2.9-build.51.jar already exists
[mc-image-helper] 05:02:06.337 INFO  : Mod file mods/skinned_lanterns-1.19.2-1.3.4.jar already exists
[mc-image-helper] 05:02:06.338 INFO  : Mod file mods/whatareyouvotingfor2022-1.19.2-1.9.jar already exists
[mc-image-helper] 05:02:06.340 INFO  : Mod file mods/letsdo-vinery-forge-1.3.7.jar already exists
[mc-image-helper] 05:02:06.342 INFO  : Mod file mods/Oh_The_Biomes_You'll_Go-forge-1.19.2-2.0.1.4.jar already exists
[mc-image-helper] 05:02:06.378 INFO  : Excluding mod file 'Controlling' (controlling) due to configuration
[mc-image-helper] 05:02:06.384 INFO  : Mod file mods/YungsBetterOceanMonuments-1.19.2-Forge-2.1.0.jar already exists
[mc-image-helper] 05:02:06.384 INFO  : Mod file mods/chefs-delight-1.0.2-forge-1.19.2.jar already exists
[mc-image-helper] 05:02:06.386 INFO  : Mod file mods/does_potato_tick-1.19.2-3.6.1.jar already exists
[mc-image-helper] 05:02:06.387 INFO  : Mod file mods/cloth-config-8.3.103-forge.jar already exists
[mc-image-helper] 05:02:06.387 INFO  : Mod file mods/veinmining-forge-1.1.1+1.19.2.jar already exists
[mc-image-helper] 05:02:06.387 INFO  : Mod file mods/elytraslot-forge-6.1.1+1.19.2.jar already exists
[mc-image-helper] 05:02:06.417 INFO  : Mod file mods/Clumps-forge-1.19.2-9.0.0+14.jar already exists
[mc-image-helper] 05:02:06.424 INFO  : Mod file mods/Bookshelf-Forge-1.19.2-16.3.20.jar already exists
[mc-image-helper] 05:02:06.429 INFO  : Excluding mod file 'Enchantment Descriptions' (enchantment-descriptions) due to configuration
[mc-image-helper] 05:02:06.433 INFO  : Mod file mods/repurposed_structures_forge-6.3.24+1.19.2.jar already exists
[mc-image-helper] 05:02:06.461 INFO  : Mod file mods/Paintings-forge-1.19.2-10.2.4.0.jar already exists
[mc-image-helper] 05:02:06.466 INFO  : Mod file mods/SimpleStorageNetwork-1.19.2-1.7.0.jar already exists
[mc-image-helper] 05:02:06.488 INFO  : Excluding mod file 'Magnesium/Rubidium Extras' (magnesium-extras) due to configuration
[mc-image-helper] 05:02:06.505 INFO  : Mod file mods/goblintraders-1.8.0-1.19.2.jar already exists
[mc-image-helper] 05:02:06.505 INFO  : Mod file mods/YungsBetterStrongholds-1.19.2-Forge-3.2.0.jar already exists
[mc-image-helper] 05:02:06.541 INFO  : Excluding mod file 'Rubidium' (rubidium) due to configuration
[mc-image-helper] 05:02:06.567 INFO  : Mod file mods/xaeros_waystones_compability-1.0.jar already exists
[mc-image-helper] 05:02:06.568 INFO  : Mod file mods/handcrafted-forge-1.19.2-2.0.6.jar already exists
[mc-image-helper] 05:02:06.572 INFO  : Mod file mods/deuf-1.19.2-1.3.jar already exists
[mc-image-helper] 05:02:06.572 INFO  : Mod file mods/explorify-forge-1.19-1.3.0.jar already exists
[mc-image-helper] 05:02:06.573 INFO  : Mod file mods/ferritecore-5.0.3-forge.jar already exists
[mc-image-helper] 05:02:06.573 INFO  : Mod file mods/ftb-library-forge-1902.4.1-build.236.jar already exists
[mc-image-helper] 05:02:06.573 INFO  : Mod file mods/illagersweararmor-1.2.6-1.19.2.jar already exists
[mc-image-helper] 05:02:06.573 INFO  : Mod file mods/Structory_1.19.3_v1.3.1a.jar already exists
[mc-image-helper] 05:02:06.575 INFO  : Mod file mods/SimpleDiscordRichPresence-forge-3.0.4-build.27+mc1.19.2.jar already exists
[mc-image-helper] 05:02:06.575 INFO  : Mod file mods/guardvillagers-1.19.2-1.5.6.jar already exists
[mc-image-helper] 05:02:06.575 INFO  : Mod file mods/culturaldelights-1.19.2-0.15.4.jar already exists
[mc-image-helper] 05:02:06.578 INFO  : Mod file mods/pet_cemetery-1.19.2-1.0.3.jar already exists
[mc-image-helper] 05:02:06.578 INFO  : Mod file mods/twilightdelight-1.3.1.jar already exists
[mc-image-helper] 05:02:06.616 INFO  : Mod file mods/upgradednetherite_ultimate-1.19.2-4.1.0.4-release.jar already exists
[mc-image-helper] 05:02:06.616 INFO  : Mod file mods/Structory_Towers_1.19.3_v1.0.2.jar already exists
[mc-image-helper] 05:02:06.641 INFO  : Mod file mods/servercore-forge-1.3.5+1.19.2.jar already exists
[mc-image-helper] 05:02:06.643 INFO  : Mod file mods/upgrade_aquatic-1.19.2-5.0.0.jar already exists
[mc-image-helper] 05:02:06.646 INFO  : Mod file mods/upgradednetherite_items-1.19.2-4.1.0.1-release.jar already exists
[mc-image-helper] 05:02:06.647 INFO  : Mod file mods/immersive_weathering-1.19.2-1.2.9-forge.jar already exists
[mc-image-helper] 05:02:06.656 INFO  : Mod file mods/alexsmobs-1.21.1.jar already exists
[mc-image-helper] 05:02:09.393 INFO  : Forge version 43.2.19 for minecraft version 1.19.2 is already installed
[init] Creating server properties in /data/server.properties
[init] Disabling whitelist functionality
[init] Setting initial memory to 4G and max to 4G
[init] Using Forge supplied run.sh script...
2023-08-07 05:02:15,127 main WARN Advanced terminal features are not available in this environment
[05:02:15] [main/INFO] [cp.mo.mo.Launcher/MODLAUNCHER]: ModLauncher running: args [--launchTarget, forgeserver, --fml.forgeVersion, 43.2.19, --fml.mcVersion, 1.19.2, --fml.forgeGroup, net.minecraftforge, --fml.mcpVersion, 20220805.130853]
[05:02:15] [main/INFO] [cp.mo.mo.Launcher/MODLAUNCHER]: ModLauncher 10.0.8+10.0.8+main.0ef7e830 starting: java version 17.0.8 by Eclipse Adoptium; OS Linux arch amd64 version 6.1.0-10-amd64
[05:02:16] [main/INFO] [mixin/]: SpongePowered MIXIN Subsystem Version=0.8.5 Source=union:/data/libraries/org/spongepowered/mixin/0.8.5/mixin-0.8.5.jar%2363!/ Service=ModLauncher Env=SERVER
[05:02:16] [main/WARN] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Mod file /data/libraries/net/minecraftforge/fmlcore/1.19.2-43.2.19/fmlcore-1.19.2-43.2.19.jar is missing mods.toml file
[05:02:16] [main/WARN] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Mod file /data/libraries/net/minecraftforge/javafmllanguage/1.19.2-43.2.19/javafmllanguage-1.19.2-43.2.19.jar is missing mods.toml file
[05:02:16] [main/WARN] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Mod file /data/libraries/net/minecraftforge/lowcodelanguage/1.19.2-43.2.19/lowcodelanguage-1.19.2-43.2.19.jar is missing mods.toml file
[05:02:16] [main/WARN] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Mod file /data/libraries/net/minecraftforge/mclanguage/1.19.2-43.2.19/mclanguage-1.19.2-43.2.19.jar is missing mods.toml file
[05:02:16] [main/WARN] [ne.mi.ja.se.JarSelector/]: Attempted to select a dependency jar for JarJar which was passed in as source: terrablender. Using Mod File: /data/mods/TerraBlender-forge-1.19.2-2.0.1.166.jar
[05:02:16] [main/WARN] [ne.mi.ja.se.JarSelector/]: Attempted to select a dependency jar for JarJar which was passed in as source: resourcefullib. Using Mod File: /data/mods/resourcefullib-forge-1.19.2-1.1.24.jar
[05:02:16] [main/INFO] [ne.mi.fm.lo.mo.JarInJarDependencyLocator/]: Found 14 dependencies adding them to mods collection
[05:02:16] [main/ERROR] [ne.mi.fm.lo.ModSorter/LOADING]: Missing or unsupported mandatory dependencies:
    Mod ID: 'jeresources', Requested by: 'jerintegration', Expected range: '[0.14.1.160,)', Actual version: '[MISSING]'
[05:02:19] [main/INFO] [mixin/]: Compatibility level set to JAVA_17
[05:02:19] [main/ERROR] [mixin/]: Mixin config rottencreatures-common.mixins.json does not specify "minVersion" property
[05:02:19] [main/ERROR] [mixin/]: Mixin config rottencreatures.mixins.json does not specify "minVersion" property
[05:02:19] [main/INFO] [mixin/]: Successfully loaded Mixin Connector [com.sonicether.soundphysics.MixinConnector]
[05:02:19] [main/INFO] [mixin/]: Successfully loaded Mixin Connector [ca.spottedleaf.starlight.mixin.MixinConnector]
[05:02:19] [main/INFO] [mixin/]: Successfully loaded Mixin Connector [com.aizistral.nochatreports.MixinConnector]
[05:02:19] [main/INFO] [cp.mo.mo.LaunchServiceHandler/MODLAUNCHER]: Launching target 'forgeserver' with arguments []
[05:02:19] [main/INFO] [ModernFix/]: Loaded configuration file for ModernFix 5.4.1+mc1.19.2: 62 options available, 11 override(s) found
[05:02:19] [main/WARN] [ModernFix/]: Option 'mixin.perf.deduplicate_wall_shapes' overriden (by load error) to 'false'
[05:02:19] [main/WARN] [ModernFix/]: Option 'mixin.bugfix.paper_chunk_patches' overriden (by load error) to 'false'
[05:02:19] [main/WARN] [ModernFix/]: Option 'mixin.perf.cache_strongholds' overriden (by load error) to 'false'
[05:02:19] [main/WARN] [ModernFix/]: Option 'mixin.perf.faster_texture_stitching' overriden (by load error) to 'false'
[05:02:19] [main/WARN] [ModernFix/]: Option 'mixin.perf.nbt_memory_usage' overriden (by load error) to 'false'
[05:02:19] [main/WARN] [ModernFix/]: Option 'mixin.bugfix.item_cache_flag' overriden (by load error) to 'false'
[05:02:19] [main/WARN] [ModernFix/]: Option 'mixin.bugfix.chunk_deadlock' overriden (by load error) to 'false'
[05:02:19] [main/WARN] [ModernFix/]: Option 'mixin.perf.thread_priorities' overriden (by load error) to 'false'
[05:02:19] [main/WARN] [ModernFix/]: Option 'mixin.launch.class_search_cache' overriden (by load error) to 'false'
[05:02:19] [main/WARN] [ModernFix/]: Option 'mixin.perf.datapack_reload_exceptions' overriden (by load error) to 'false'
[05:02:19] [main/WARN] [ModernFix/]: Option 'mixin.perf.faster_texture_loading' overriden (by load error) to 'false'
[05:02:19] [main/INFO] [ModernFix/]: Applying Nashorn fix
[05:02:19] [main/INFO] [ModernFix/]: Applied Forge config corruption patch
[05:02:19] [main/WARN] [mixin/]: Reference map 'vinery-forge-refmap.json' for vinery.mixins.json could not be read. If this is a development environment you can ignore this message
[05:02:20] [main/WARN] [mixin/]: Reference map '${refmap_target}refmap.json' for corgilib.forge.mixins.json could not be read. If this is a development environment you can ignore this message
[05:02:20] [main/WARN] [mixin/]: Reference map 'fastpaintings-forge-refmap.json' for fastpaintings-forge.mixins.json could not be read. If this is a development environment you can ignore this message
[05:02:20] [main/WARN] [CanaryConfig/]: No configuration key exists with name 'mixin.block.hopper', ignoring
[05:02:20] [main/WARN] [CanaryConfig/]: Option 'mixin.world.block_entity_ticking.world_border' requires 'mixin.util.world_border_listener=true' but found 'false'. Setting 'mixin.world.block_entity_ticking.world_border=false'.
[05:02:20] [main/INFO] [Canary/]: Loaded configuration file for Canary: 124 options available, 1 override(s) found
[05:02:20] [main/WARN] [mixin/]: Reference map 'v_slab_compat-common-refmap.json' for v_slab_compat-common.mixins.json could not be read. If this is a development environment you can ignore this message
[05:02:20] [main/WARN] [mixin/]: Reference map 'xlpackets.refmap.json' for xlpackets.mixins.json could not be read. If this is a development environment you can ignore this message
[05:02:20] [main/WARN] [mixin/]: Reference map 'rottencreatures-forge-refmap.json' for rottencreatures.mixins.json could not be read. If this is a development environment you can ignore this message
[05:02:20] [main/WARN] [mixin/]: Error loading class: net/minecraft/client/resources/SplashManager (java.lang.ClassNotFoundException: net.minecraft.client.resources.SplashManager)
[05:02:20] [main/WARN] [mixin/]: @Mixin target net.minecraft.client.resources.SplashManager was not found whatareyouvotingfor.mixins.json:SplashManagerMixin
[05:02:20] [main/ERROR] [ne.mi.fm.lo.RuntimeDistCleaner/DISTXFORM]: Attempted to load class net/minecraft/client/resources/model/ModelBakery for invalid dist DEDICATED_SERVER
[05:02:20] [main/WARN] [mixin/]: Error loading class: net/minecraft/client/resources/model/ModelBakery (java.lang.RuntimeException: Attempted to load class net/minecraft/client/resources/model/ModelBakery for invalid dist DEDICATED_SERVER)
[05:02:20] [main/WARN] [mixin/]: @Mixin target net.minecraft.client.resources.model.ModelBakery was not found lightspeed.mixins.json:model.ModelBakeryMixin
[05:02:21] [main/WARN] [Canary/]: Force-disabling mixin 'ai.poi.tasks.RaiderMoveThroughVillageGoalMixin' as rule 'mixin.ai.poi' (added by user configuration) disables it and children
[05:02:21] [main/WARN] [mixin/]: Error loading class: com/mojang/blaze3d/audio/Channel (java.lang.ClassNotFoundException: com.mojang.blaze3d.audio.Channel)
[05:02:21] [main/WARN] [mixin/]: @Mixin target com.mojang.blaze3d.audio.Channel was not found assets/sound_physics_remastered/sound_physics_remastered.mixins.json:ChannelAccessor
[05:02:21] [main/INFO] [memoryleakfix/]: [MemoryLeakFix] Will be applying 2 memory leak fixes!
[05:02:21] [main/INFO] [memoryleakfix/]: [MemoryLeakFix] Currently enabled memory leak fixes: [entityMemoriesLeak, biomeTemperatureLeak]
[05:02:21] [main/INFO] [mixin/]: Mixing server.MixinDedicatedServer from nochatreports.mixins.json into net.minecraft.server.dedicated.DedicatedServer
[05:02:21] [main/INFO] [minecraft/Bootstrap]: ModernFix bootstrap
[05:02:21] [main/WARN] [mixin/]: @Inject(@At("INVOKE")) Shift.BY=2 on everycomp-common.mixins.json:LootTableHackMixin::handler$dba000$addSimpleFastECdrops exceeds the maximum allowed value: 0. Increase the value of maxShiftBy to suppress this warning.
[05:02:22] [main/WARN] [mixin/]: @Final field f_20945_:Ljava/util/Map; in vinery-common.mixins.json:LivingEntityMixin should be final
[05:02:22] [main/INFO] [mixin/]: Mixing server.MixinPlayer from nochatreports.mixins.json into net.minecraft.world.entity.player.Player
[05:02:23] [main/WARN] [mixin/]: Method overwrite conflict for m_7370_ in biomemakeover-common.mixins.json:mushroom.MyceliumBlockMixin, previously written by com.teamabnormals.environmental.core.mixin.MyceliumBlockMixin. Skipping method.
[05:02:23] [main/WARN] [mixin/]: Method overwrite conflict for m_214167_ in biomemakeover-common.mixins.json:mushroom.MyceliumBlockMixin, previously written by com.teamabnormals.environmental.core.mixin.MyceliumBlockMixin. Skipping method.
[05:02:23] [main/WARN] [mixin/]: Method overwrite conflict for m_214148_ in biomemakeover-common.mixins.json:mushroom.MyceliumBlockMixin, previously written by com.teamabnormals.environmental.core.mixin.MyceliumBlockMixin. Skipping method.
[05:02:23] [main/INFO] [minecraft/Bootstrap]: Vanilla bootstrap took 1779 milliseconds
[05:02:23] [main/WARN] [mixin/]: @ModifyConstant conflict. Skipping connectivity.mixins.json:ClientBoundCustomPayloadPacketLMixin->@ModifyConstant::modifyLimit(I)I with priority 1, already redirected by xlpackets.mixins.json:SCustomPayloadPacketMixin->@ModifyConstant::xlPackets(I)I with priority 1000
[05:02:23] [main/WARN] [mixin/]: @ModifyConstant conflict. Skipping connectivity.mixins.json:ClientBoundCustomPayloadPacketLMixin->@ModifyConstant::modifyLimit(I)I with priority 1, already redirected by xlpackets.mixins.json:SCustomPayloadPacketMixin->@ModifyConstant::xlPackets(I)I with priority 1000
[05:02:25] [main/WARN] [mixin/]: Method overwrite conflict for m_7380_ in friendsandfoes-common.mixins.json:ZombieHorseEntityMixin, previously written by net.mehvahdjukaar.supplementaries.mixins.ZombieHorseMixin. Skipping method.
[05:02:25] [main/WARN] [mixin/]: Method overwrite conflict for m_7378_ in friendsandfoes-common.mixins.json:ZombieHorseEntityMixin, previously written by net.mehvahdjukaar.supplementaries.mixins.ZombieHorseMixin. Skipping method.
[05:02:25] [main/WARN] [mixin/]: @Redirect conflict. Skipping servercore.common.mixins.json:optimizations.ticking.chunk.cache.ServerChunkCacheMixin->@Redirect::servercore$noList(I)Ljava/util/ArrayList; with priority 900, already redirected by canary.mixins.json:alloc.chunk_ticking.ServerChunkCacheMixin->@Redirect::redirectChunksListClone(I)Ljava/util/ArrayList; with priority 1000
[05:02:25] [main/WARN] [mixin/]: Mixin villagersplus.mixins.json:EntityBucketItemMixin has multiple constructors, (Lnet/minecraft/world/level/material/Fluid;Lnet/minecraft/world/item/Item$Properties;)V was selected

[05:02:26] [main/FATAL] [ne.mi.fm.ModLoader/CORE]: Error during pre-loading phase
net.minecraftforge.fml.ModLoadingException: Mod §ejerintegration§r requires §6jeresources§r §o0.14.1.160 or above§r
§7Currently, §6jeresources§r§7 is §o§nnot installed
    at net.minecraftforge.fml.ModLoadingException.lambda$fromEarlyException$0(ModLoadingException.java:50) ~[fmlcore-1.19.2-43.2.19.jar%23540!/:?] {}
    at java.util.stream.ReferencePipeline$3$1.accept(Unknown Source) ~[?:?] {}
    at java.util.AbstractList$RandomAccessSpliterator.forEachRemaining(Unknown Source) ~[?:?] {}
    at java.util.stream.AbstractPipeline.copyInto(Unknown Source) ~[?:?] {}
    at java.util.stream.AbstractPipeline.wrapAndCopyInto(Unknown Source) ~[?:?] {}
    at java.util.stream.ForEachOps$ForEachOp.evaluateSequential(Unknown Source) ~[?:?] {}
    at java.util.stream.ForEachOps$ForEachOp$OfRef.evaluateSequential(Unknown Source) ~[?:?] {}
    at java.util.stream.AbstractPipeline.evaluate(Unknown Source) ~[?:?] {}
    at java.util.stream.ReferencePipeline.forEach(Unknown Source) ~[?:?] {}
    at java.util.stream.ReferencePipeline$7$1.accept(Unknown Source) ~[?:?] {}
    at java.util.ArrayList$ArrayListSpliterator.forEachRemaining(Unknown Source) ~[?:?] {}
    at java.util.stream.AbstractPipeline.copyInto(Unknown Source) ~[?:?] {}
    at java.util.stream.AbstractPipeline.wrapAndCopyInto(Unknown Source) ~[?:?] {}
    at java.util.stream.ReduceOps$ReduceOp.evaluateSequential(Unknown Source) ~[?:?] {}
    at java.util.stream.AbstractPipeline.evaluate(Unknown Source) ~[?:?] {}
    at java.util.stream.ReferencePipeline.collect(Unknown Source) ~[?:?] {}
    at net.minecraftforge.fml.ModLoader.<init>(ModLoader.java:99) ~[fmlcore-1.19.2-43.2.19.jar%23540!/:?] {}
    at net.minecraftforge.fml.ModLoader.get(ModLoader.java:131) ~[fmlcore-1.19.2-43.2.19.jar%23540!/:?] {}
    at net.minecraftforge.server.loading.ServerModLoader.load(ServerModLoader.java:32) ~[forge-1.19.2-43.2.19-universal.jar%23544!/:?] {re:classloading}
    at net.minecraft.server.Main.main(Main.java:113) ~[server-1.19.2-20220805.130853-srg.jar%23539!/:?] {re:classloading,re:mixin,pl:mixin:A}
    at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:?] {}
    at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:?] {}
    at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:?] {}
    at java.lang.reflect.Method.invoke(Unknown Source) ~[?:?] {}
    at net.minecraftforge.fml.loading.targets.CommonServerLaunchHandler.lambda$launchService$0(CommonServerLaunchHandler.java:29) ~[fmlloader-1.19.2-43.2.19.jar%2367!/:?] {}
    at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:30) [modlauncher-10.0.8.jar%2354!/:?] {}
    at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:53) [modlauncher-10.0.8.jar%2354!/:?] {}
    at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:71) [modlauncher-10.0.8.jar%2354!/:?] {}
    at cpw.mods.modlauncher.Launcher.run(Launcher.java:106) [modlauncher-10.0.8.jar%2354!/:?] {}
    at cpw.mods.modlauncher.Launcher.main(Launcher.java:77) [modlauncher-10.0.8.jar%2354!/:?] {}
    at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:26) [modlauncher-10.0.8.jar%2354!/:?] {}
    at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:23) [modlauncher-10.0.8.jar%2354!/:?] {}
    at cpw.mods.bootstraplauncher.BootstrapLauncher.main(BootstrapLauncher.java:141) [bootstraplauncher-1.1.2.jar:?] {}
Negative index in crash report handler (16/18)
[05:02:26] [main/FATAL] [ne.mi.se.lo.ServerModLoader/]: Crash report saved to ./crash-reports/crash-2023-08-07_05.02.26-fml.txt
---- Minecraft Crash Report ----
// You should try our sister game, Minceraft!

Time: 2023-08-07 05:02:26
Description: Mod loading error has occurred

java.lang.Exception: Mod Loading has failed
    at net.minecraftforge.logging.CrashReportExtender.dumpModLoadingCrashReport(CrashReportExtender.java:55) ~[forge-1.19.2-43.2.19-universal.jar%23544!/:?] {re:classloading}
    at net.minecraftforge.server.loading.ServerModLoader.load(ServerModLoader.java:39) ~[forge-1.19.2-43.2.19-universal.jar%23544!/:?] {re:classloading}
    at net.minecraft.server.Main.main(Main.java:113) ~[server-1.19.2-20220805.130853-srg.jar%23539!/:?] {re:classloading,re:mixin,pl:mixin:A}
    at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:?] {}
    at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:?] {}
    at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:?] {}
    at java.lang.reflect.Method.invoke(Unknown Source) ~[?:?] {}
    at net.minecraftforge.fml.loading.targets.CommonServerLaunchHandler.lambda$launchService$0(CommonServerLaunchHandler.java:29) ~[fmlloader-1.19.2-43.2.19.jar%2367!/:?] {}
    at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:30) [modlauncher-10.0.8.jar%2354!/:?] {}
    at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:53) [modlauncher-10.0.8.jar%2354!/:?] {}
    at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:71) [modlauncher-10.0.8.jar%2354!/:?] {}
    at cpw.mods.modlauncher.Launcher.run(Launcher.java:106) [modlauncher-10.0.8.jar%2354!/:?] {}
    at cpw.mods.modlauncher.Launcher.main(Launcher.java:77) [modlauncher-10.0.8.jar%2354!/:?] {}
    at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:26) [modlauncher-10.0.8.jar%2354!/:?] {}
    at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:23) [modlauncher-10.0.8.jar%2354!/:?] {}
    at cpw.mods.bootstraplauncher.BootstrapLauncher.main(BootstrapLauncher.java:141) [bootstraplauncher-1.1.2.jar:?] {}

A detailed walkthrough of the error, its code path and all known details is as follows:
---------------------------------------------------------------------------------------

-- Head --
Thread: main
Stacktrace:
    at net.minecraftforge.logging.CrashReportExtender.lambda$dumpModLoadingCrashReport$7(CrashReportExtender.java:58) ~[forge-1.19.2-43.2.19-universal.jar%23544!/:?] {re:classloading}
-- MOD jerintegration --
Details:
    Mod File: /data/mods/JER-Integration-4.4.0.jar
    Failure message: Mod jerintegration requires jeresources 0.14.1.160 or above
        Currently, jeresources is not installed
    Mod Version: 4.4.0
    Mod Issue URL: NOT PROVIDED
    Exception message: MISSING EXCEPTION MESSAGE
Stacktrace:
    at net.minecraftforge.logging.CrashReportExtender.lambda$dumpModLoadingCrashReport$7(CrashReportExtender.java:58) ~[forge-1.19.2-43.2.19-universal.jar%23544!/:?] {re:classloading}
    at java.util.ArrayList.forEach(Unknown Source) ~[?:?] {re:mixin}
    at net.minecraftforge.logging.CrashReportExtender.dumpModLoadingCrashReport(CrashReportExtender.java:56) ~[forge-1.19.2-43.2.19-universal.jar%23544!/:?] {re:classloading}
    at net.minecraftforge.server.loading.ServerModLoader.load(ServerModLoader.java:39) ~[forge-1.19.2-43.2.19-universal.jar%23544!/:?] {re:classloading}
    at net.minecraft.server.Main.main(Main.java:113) ~[server-1.19.2-20220805.130853-srg.jar%23539!/:?] {re:classloading,re:mixin,pl:mixin:A}
    at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:?] {}
    at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:?] {}
    at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:?] {}
    at java.lang.reflect.Method.invoke(Unknown Source) ~[?:?] {}
    at net.minecraftforge.fml.loading.targets.CommonServerLaunchHandler.lambda$launchService$0(CommonServerLaunchHandler.java:29) ~[fmlloader-1.19.2-43.2.19.jar%2367!/:?] {}
    at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:30) [modlauncher-10.0.8.jar%2354!/:?] {}
    at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:53) [modlauncher-10.0.8.jar%2354!/:?] {}
    at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:71) [modlauncher-10.0.8.jar%2354!/:?] {}
    at cpw.mods.modlauncher.Launcher.run(Launcher.java:106) [modlauncher-10.0.8.jar%2354!/:?] {}
    at cpw.mods.modlauncher.Launcher.main(Launcher.java:77) [modlauncher-10.0.8.jar%2354!/:?] {}
    at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:26) [modlauncher-10.0.8.jar%2354!/:?] {}
    at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:23) [modlauncher-10.0.8.jar%2354!/:?] {}
    at cpw.mods.bootstraplauncher.BootstrapLauncher.main(BootstrapLauncher.java:141) [bootstraplauncher-1.1.2.jar:?] {}

-- System Details --
Details:
    Minecraft Version: 1.19.2
    Minecraft Version ID: 1.19.2
    Operating System: Linux (amd64) version 6.1.0-10-amd64
    Java Version: 17.0.8, Eclipse Adoptium
    Java VM Version: OpenJDK 64-Bit Server VM (mixed mode, sharing), Eclipse Adoptium
    Memory: 2387064880 bytes (2276 MiB) / 4294967296 bytes (4096 MiB) up to 4294967296 bytes (4096 MiB)
    CPUs: 8
    Processor Vendor: GenuineIntel
    Processor Name: Intel(R) Core(TM) i5-10300H CPU @ 2.50GHz
    Identifier: Intel64 Family 6 Model 165 Stepping 2
    Microarchitecture: unknown
    Frequency (GHz): 2.50
    Number of physical packages: 1
    Number of physical CPUs: 4
    Number of logical CPUs: 8
    Graphics card #0 name: unknown
    Graphics card #0 vendor: unknown
    Graphics card #0 VRAM (MB): 0.00
    Graphics card #0 deviceId: unknown
    Graphics card #0 versionInfo: unknown
    Virtual memory max (MB): 38447.66
    Virtual memory used (MB): 8349.55
    Swap memory total (MB): 30518.00
    Swap memory used (MB): 872.69
    JVM Flags: 2 total; -Xmx4G -Xms4G
    ModLauncher: 10.0.8+10.0.8+main.0ef7e830
    ModLauncher launch target: forgeserver
    ModLauncher naming: srg
    ModLauncher services: 
        mixin-0.8.5.jar mixin PLUGINSERVICE 
        eventbus-6.0.3.jar eventbus PLUGINSERVICE 
        fmlloader-1.19.2-43.2.19.jar slf4jfixer PLUGINSERVICE 
        fmlloader-1.19.2-43.2.19.jar object_holder_definalize PLUGINSERVICE 
        fmlloader-1.19.2-43.2.19.jar runtime_enum_extender PLUGINSERVICE 
        fmlloader-1.19.2-43.2.19.jar capability_token_subclass PLUGINSERVICE 
        accesstransformers-8.0.4.jar accesstransformer PLUGINSERVICE 
        fmlloader-1.19.2-43.2.19.jar runtimedistcleaner PLUGINSERVICE 
        modlauncher-10.0.8.jar mixin TRANSFORMATIONSERVICE 
        modlauncher-10.0.8.jar fml TRANSFORMATIONSERVICE 
    FML Language Providers: 
        minecraft@1.0
        javafml@null
        kotlinforforge@3.12.0
        lowcodefml@null
    Mod List: 
        server-1.19.2-20220805.130853-srg.jar             |Minecraft                     |minecraft                     |1.19.2              |NONE      |Manifest: NOSIGNATURE
        forge-1.19.2-43.2.19-universal.jar                |Forge                         |forge                         |43.2.19             |NONE      |Manifest: 84:ce:76:e8:45:35:e4:0e:63:86:df:47:59:80:0f:67:6c:c1:5f:6e:5f:4d:b3:54:47:1a:9f:7f:ed:5e:f2:90[05:02:26] [main/ERROR] [minecraft/Main]: Failed to start the minecraft server
net.minecraftforge.fml.LoadingFailedException: Loading errors encountered: [
    Mod §ejerintegration§r requires §6jeresources§r §o0.14.1.160 or above§r
§7Currently, §6jeresources§r§7 is §o§nnot installed
]
    at net.minecraftforge.fml.ModLoader.gatherAndInitializeMods(ModLoader.java:152) ~[fmlcore-1.19.2-43.2.19.jar%23540!/:?] {}
    at net.minecraftforge.server.loading.ServerModLoader.load(ServerModLoader.java:32) ~[forge-1.19.2-43.2.19-universal.jar%23544!/:?] {re:classloading}
    at net.minecraft.server.Main.main(Main.java:113) ~[server-1.19.2-20220805.130853-srg.jar%23539!/:?] {re:classloading,re:mixin,pl:mixin:A}
    at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:?] {}
    at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:?] {}
    at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:?] {}
    at java.lang.reflect.Method.invoke(Unknown Source) ~[?:?] {}
    at net.minecraftforge.fml.loading.targets.CommonServerLaunchHandler.lambda$launchService$0(CommonServerLaunchHandler.java:29) ~[fmlloader-1.19.2-43.2.19.jar%2367!/:?] {}
    at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:30) [modlauncher-10.0.8.jar%2354!/:?] {}
    at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:53) [modlauncher-10.0.8.jar%2354!/:?] {}
    at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:71) [modlauncher-10.0.8.jar%2354!/:?] {}
    at cpw.mods.modlauncher.Launcher.run(Launcher.java:106) [modlauncher-10.0.8.jar%2354!/:?] {}
    at cpw.mods.modlauncher.Launcher.main(Launcher.java:77) [modlauncher-10.0.8.jar%2354!/:?] {}
    at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:26) [modlauncher-10.0.8.jar%2354!/:?] {}
    at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:23) [modlauncher-10.0.8.jar%2354!/:?] {}
    at cpw.mods.bootstraplauncher.BootstrapLauncher.main(BootstrapLauncher.java:141) [bootstraplauncher-1.1.2.jar:?] {}
2023-08-07T05:02:26.723Z    INFO    mc-server-runner    Done
itzg commented 1 year ago

Those logs seems to span several different problems that are due to mods you haven't included etc. Did you change modpack away from BMC3 in the middle of all that?

Gnuk935 commented 1 year ago

I changed the modpack to v17, in case I reset the whole container to make sure I wouldn't have problems with the other one. I imagine it's because of the lack of forge support, since v4 works normally.

itzg commented 1 year ago

For that modpack version I got further in the startup by excluding of a couple of mods that were incorrectly registered as server-compatible:

version: "3.8"

services:
  mc:
    image: itzg/minecraft-server
    environment:
      EULA: true
      MOD_PLATFORM: AUTO_CURSEFORGE
      CF_API_KEY: ${CF_API_KEY}
      CF_PAGE_URL: https://www.curseforge.com/minecraft/modpacks/better-mc-forge-bmc3/files/4674465
      CF_EXCLUDE_MODS: |
        jer-integration
        modpack-update-checker
      CF_FORCE_SYNCHRONIZE: true
      MEMORY: 8G
    volumes:
      - ./downloads:/downloads
    ports:
      - "25565:25565"

however...mine dies with exit code 137:

issue2323-mc-1  | [18:08:25] [main/INFO] [ne.me.ev.EveryCompat/]: Registering Compat Wood Blocks
issue2323-mc-1  | [18:08:25] [main/INFO] [ne.me.ev.EveryCompat/]: Registering Compat Leaves Blocks
issue2323-mc-1  | /data/./run.sh: line 6:   342 Killed                  java @user_jvm_args.txt @libraries/net/minecraftforge/forge/1.19.2-43.2.19/unix_args.txt "$@"
issue2323-mc-1  | 2023-08-07T18:08:33.044Z      WARN    mc-server-runner        Minecraft server failed. Inspect logs above for errors that indicate cause. DO NOT report this line as an error.    {"exitCode": 137}
issue2323-mc-1  | 2023-08-07T18:08:33.049Z      INFO    mc-server-runner        Done
issue2323-mc-1 exited with code 137
Gnuk935 commented 1 year ago

I assume it's the modpack, thanks for the help!! I did more tests around here too. Now I'm having an error when importing the mods via "mods.txt"... By the way, can you tell me if I would have problems using several modapacks?

itzg commented 1 year ago

You can only declare/use one modpack via auto-CurseForge itself, but can always layer on more mods like you're doing with mods list. FYI, the modpack also drives selection of game version and mod loader so it could get ambiguous if more than one could be processed.

Gnuk935 commented 1 year ago

my file has the following layout

version: "3.8"
services:
  minecraft:
    image: itzg/minecraft-server
    container_name: minebrodis
    volumes:
      - minebrodis:/data
      - /home/.minecraft/mods.txt:/extras/mods.txt:ro
      - /home/uf/.minecraft/downloads:/downloads:ro
    ports:
      - 9350:25565
    environment:
      EULA: "true"
      TYPE: AUTO_CURSEFORGE
      CF_API_KEY: ${CF_API_KEY}
      CF_PAGE_URL: https://www.curseforge.com/minecraft/modpacks/better-mc-forge-bmc3/files/3975945
      CF_DOWNLOAD_REPO: /downloads
      MODS_FILE: /extras/mods.txt
      REMOVE_OLD_MODS: "false"
      OPS: "Gnuk"
      MOTD: "Sem choro papai"
      DIFFICULTY: "hard"
      ANNOUNCE_PLAYER_ACHIEVEMENTS: "true"
      SERVER_NAME: "mine dos brodi"
      ENABLE_WHITELIST: "FALSE"
      ENFORCE_WHITELIST: "FALSE"
      MEMORY: 4G
    tty: true
    stdin_open: true
    restart: unless-stopped
volumes:
  minebrodis: {}

and the mods.txt

https://mediafilez.forgecdn.net/files/4465/872/refinedstorage-1.11.6.jar
https://mediafilez.forgecdn.net/files/4371/809/create-1.19.2-0.5.0.i.jar
https://mediafilez.forgecdn.net/files/3954/410/Mekanism-1.19.2-10.3.3.470.jar

but he is not pulling the mods

itzg commented 1 year ago

Using your files worked for me. I see the download logs for those

2023-08-12T14:56:52.834557617Z [mc-image-helper] 14:56:52.833 INFO  : Downloading /data/mods/refinedstorage-1.11.6.jar from https://mediafilez.forgecdn.net/files/4465/872/refinedstorage-1.11.6.jar
2023-08-12T14:56:52.834592565Z [mc-image-helper] 14:56:52.833 INFO  : Downloading /data/mods/create-1.19.2-0.5.0.i.jar from https://mediafilez.forgecdn.net/files/4371/809/create-1.19.2-0.5.0.i.jar
2023-08-12T14:56:52.865887385Z [mc-image-helper] 14:56:52.865 INFO  : Downloading /data/mods/Mekanism-1.19.2-10.3.3.470.jar from https://mediafilez.forgecdn.net/files/3954/410/Mekanism-1.19.2-10.3.3.470.jar
2023-08-12T14:56:55.375671197Z 

and the files are present in mods subdirectory.