123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511
MultiMC version: 0.7.0-4265
Launched instance in online mode
sessionserver.mojang.com resolves to:
[2603:1061:14:174::1, 150.171.110.117]
textures.minecraft.net resolves to:
[2603:1061:14:174::1, 150.171.110.117]
api.minecraftservices.com resolves to:
[2603:1061:14:174::1, 150.171.110.117]
Minecraft folder is:
C:/Users/Blueb/Desktop/MultiMC/instances/Blue/.minecraft
Java path is:
C:/Users/Blueb/Desktop/MultiMC/jdk-21.0.2/bin/javaw.exe
Checking Java version...
Java is version 21.0.2, using amd64 architecture, from Oracle Corporation.
Main Class:
net.fabricmc.loader.impl.launch.knot.KnotClient
Native path:
C:/Users/Blueb/Desktop/MultiMC/instances/Blue/natives
Traits:
traits FirstThreadOnMacOS
traits XR:Initial
Libraries:
C:/Users/Blueb/Desktop/MultiMC/libraries/at/yawk/lz4/lz4-java/1.8.1/lz4-java-1.8.1.jar
C:/Users/Blueb/Desktop/MultiMC/libraries/com/azure/azure-json/1.4.0/azure-json-1.4.0.jar
C:/Users/Blueb/Desktop/MultiMC/libraries/com/github/oshi/oshi-core/6.9.0/oshi-core-6.9.0.jar
C:/Users/Blueb/Desktop/MultiMC/libraries/com/google/code/gson/gson/2.13.2/gson-2.13.2.jar
C:/Users/Blueb/Desktop/MultiMC/libraries/com/google/guava/failureaccess/1.0.3/failureaccess-1.0.3.jar
C:/Users/Blueb/Desktop/MultiMC/libraries/com/google/guava/guava/33.5.0-jre/guava-33.5.0-jre.jar
C:/Users/Blueb/Desktop/MultiMC/libraries/com/ibm/icu/icu4j/77.1/icu4j-77.1.jar
C:/Users/Blueb/Desktop/MultiMC/libraries/com/microsoft/azure/msal4j/1.23.1/msal4j-1.23.1.jar
C:/Users/Blueb/Desktop/MultiMC/libraries/com/mojang/authlib/7.0.61/authlib-7.0.61.jar
C:/Users/Blueb/Desktop/MultiMC/libraries/com/mojang/blocklist/1.0.10/blocklist-1.0.10.jar
C:/Users/Blueb/Desktop/MultiMC/libraries/com/mojang/brigadier/1.3.10/brigadier-1.3.10.jar
C:/Users/Blueb/Desktop/MultiMC/libraries/com/mojang/datafixerupper/9.0.19/datafixerupper-9.0.19.jar
C:/Users/Blueb/Desktop/MultiMC/libraries/com/mojang/jtracy/1.0.37/jtracy-1.0.37.jar
C:/Users/Blueb/Desktop/MultiMC/libraries/com/mojang/jtracy/1.0.37/jtracy-1.0.37-natives-windows.jar
C:/Users/Blueb/Desktop/MultiMC/libraries/com/mojang/logging/1.6.11/logging-1.6.11.jar
C:/Users/Blueb/Desktop/MultiMC/libraries/com/mojang/patchy/2.2.10/patchy-2.2.10.jar
C:/Users/Blueb/Desktop/MultiMC/libraries/com/mojang/text2speech/1.18.11/text2speech-1.18.11.jar
C:/Users/Blueb/Desktop/MultiMC/libraries/commons-codec/commons-codec/1.19.0/commons-codec-1.19.0.jar
C:/Users/Blueb/Desktop/MultiMC/libraries/commons-io/commons-io/2.20.0/commons-io-2.20.0.jar
C:/Users/Blueb/Desktop/MultiMC/libraries/io/netty/netty-buffer/4.2.7.Final/netty-buffer-4.2.7.Final.jar
C:/Users/Blueb/Desktop/MultiMC/libraries/io/netty/netty-codec-base/4.2.7.Final/netty-codec-base-4.2.7.Final.jar
C:/Users/Blueb/Desktop/MultiMC/libraries/io/netty/netty-codec-compression/4.2.7.Final/netty-codec-compression-4.2.7.Final.jar
C:/Users/Blueb/Desktop/MultiMC/libraries/io/netty/netty-codec-http/4.2.7.Final/netty-codec-http-4.2.7.Final.jar
C:/Users/Blueb/Desktop/MultiMC/libraries/io/netty/netty-common/4.2.7.Final/netty-common-4.2.7.Final.jar
C:/Users/Blueb/Desktop/MultiMC/libraries/io/netty/netty-handler/4.2.7.Final/netty-handler-4.2.7.Final.jar
C:/Users/Blueb/Desktop/MultiMC/libraries/io/netty/netty-resolver/4.2.7.Final/netty-resolver-4.2.7.Final.jar
C:/Users/Blueb/Desktop/MultiMC/libraries/io/netty/netty-transport-classes-epoll/4.2.7.Final/netty-transport-classes-epoll-4.2.7.Final.jar
C:/Users/Blueb/Desktop/MultiMC/libraries/io/netty/netty-transport-classes-kqueue/4.2.7.Final/netty-transport-classes-kqueue-4.2.7.Final.jar
C:/Users/Blueb/Desktop/MultiMC/libraries/io/netty/netty-transport-native-unix-common/4.2.7.Final/netty-transport-native-unix-common-4.2.7.Final.jar
C:/Users/Blueb/Desktop/MultiMC/libraries/io/netty/netty-transport/4.2.7.Final/netty-transport-4.2.7.Final.jar
C:/Users/Blueb/Desktop/MultiMC/libraries/it/unimi/dsi/fastutil/8.5.18/fastutil-8.5.18.jar
C:/Users/Blueb/Desktop/MultiMC/libraries/net/java/dev/jna/jna-platform/5.17.0/jna-platform-5.17.0.jar
C:/Users/Blueb/Desktop/MultiMC/libraries/net/java/dev/jna/jna/5.17.0/jna-5.17.0.jar
C:/Users/Blueb/Desktop/MultiMC/libraries/net/sf/jopt-simple/jopt-simple/5.0.4/jopt-simple-5.0.4.jar
C:/Users/Blueb/Desktop/MultiMC/libraries/org/apache/commons/commons-compress/1.28.0/commons-compress-1.28.0.jar
C:/Users/Blueb/Desktop/MultiMC/libraries/org/apache/commons/commons-lang3/3.19.0/commons-lang3-3.19.0.jar
C:/Users/Blueb/Desktop/MultiMC/libraries/org/apache/logging/log4j/log4j-api/2.25.2/log4j-api-2.25.2.jar
C:/Users/Blueb/Desktop/MultiMC/libraries/org/apache/logging/log4j/log4j-core/2.25.2/log4j-core-2.25.2.jar
C:/Users/Blueb/Desktop/MultiMC/libraries/org/apache/logging/log4j/log4j-slf4j2-impl/2.25.2/log4j-slf4j2-impl-2.25.2.jar
C:/Users/Blueb/Desktop/MultiMC/libraries/org/jcraft/jorbis/0.0.17/jorbis-0.0.17.jar
C:/Users/Blueb/Desktop/MultiMC/libraries/org/joml/joml/1.10.8/joml-1.10.8.jar
C:/Users/Blueb/Desktop/MultiMC/libraries/org/jspecify/jspecify/1.0.0/jspecify-1.0.0.jar
C:/Users/Blueb/Desktop/MultiMC/libraries/org/lwjgl/lwjgl-freetype/3.3.3/lwjgl-freetype-3.3.3.jar
C:/Users/Blueb/Desktop/MultiMC/libraries/org/lwjgl/lwjgl-freetype/3.3.3/lwjgl-freetype-3.3.3-natives-windows.jar
C:/Users/Blueb/Desktop/MultiMC/libraries/org/lwjgl/lwjgl-freetype/3.3.3/lwjgl-freetype-3.3.3-natives-windows-arm64.jar
C:/Users/Blueb/Desktop/MultiMC/libraries/org/lwjgl/lwjgl-freetype/3.3.3/lwjgl-freetype-3.3.3-natives-windows-x86.jar
C:/Users/Blueb/Desktop/MultiMC/libraries/org/lwjgl/lwjgl-glfw/3.3.3/lwjgl-glfw-3.3.3.jar
C:/Users/Blueb/Desktop/MultiMC/libraries/org/lwjgl/lwjgl-glfw/3.3.3/lwjgl-glfw-3.3.3-natives-windows.jar
C:/Users/Blueb/Desktop/MultiMC/libraries/org/lwjgl/lwjgl-glfw/3.3.3/lwjgl-glfw-3.3.3-natives-windows-arm64.jar
C:/Users/Blueb/Desktop/MultiMC/libraries/org/lwjgl/lwjgl-glfw/3.3.3/lwjgl-glfw-3.3.3-natives-windows-x86.jar
C:/Users/Blueb/Desktop/MultiMC/libraries/org/lwjgl/lwjgl-jemalloc/3.3.3/lwjgl-jemalloc-3.3.3.jar
C:/Users/Blueb/Desktop/MultiMC/libraries/org/lwjgl/lwjgl-jemalloc/3.3.3/lwjgl-jemalloc-3.3.3-natives-windows.jar
C:/Users/Blueb/Desktop/MultiMC/libraries/org/lwjgl/lwjgl-jemalloc/3.3.3/lwjgl-jemalloc-3.3.3-natives-windows-arm64.jar
C:/Users/Blueb/Desktop/MultiMC/libraries/org/lwjgl/lwjgl-jemalloc/3.3.3/lwjgl-jemalloc-3.3.3-natives-windows-x86.jar
C:/Users/Blueb/Desktop/MultiMC/libraries/org/lwjgl/lwjgl-openal/3.3.3/lwjgl-openal-3.3.3.jar
C:/Users/Blueb/Desktop/MultiMC/libraries/org/lwjgl/lwjgl-openal/3.3.3/lwjgl-openal-3.3.3-natives-windows.jar
C:/Users/Blueb/Desktop/MultiMC/libraries/org/lwjgl/lwjgl-openal/3.3.3/lwjgl-openal-3.3.3-natives-windows-arm64.jar
C:/Users/Blueb/Desktop/MultiMC/libraries/org/lwjgl/lwjgl-openal/3.3.3/lwjgl-openal-3.3.3-natives-windows-x86.jar
C:/Users/Blueb/Desktop/MultiMC/libraries/org/lwjgl/lwjgl-opengl/3.3.3/lwjgl-opengl-3.3.3.jar
C:/Users/Blueb/Desktop/MultiMC/libraries/org/lwjgl/lwjgl-opengl/3.3.3/lwjgl-opengl-3.3.3-natives-windows.jar
C:/Users/Blueb/Desktop/MultiMC/libraries/org/lwjgl/lwjgl-opengl/3.3.3/lwjgl-opengl-3.3.3-natives-windows-arm64.jar
C:/Users/Blueb/Desktop/MultiMC/libraries/org/lwjgl/lwjgl-opengl/3.3.3/lwjgl-opengl-3.3.3-natives-windows-x86.jar
C:/Users/Blueb/Desktop/MultiMC/libraries/org/lwjgl/lwjgl-stb/3.3.3/lwjgl-stb-3.3.3.jar
C:/Users/Blueb/Desktop/MultiMC/libraries/org/lwjgl/lwjgl-stb/3.3.3/lwjgl-stb-3.3.3-natives-windows.jar
C:/Users/Blueb/Desktop/MultiMC/libraries/org/lwjgl/lwjgl-stb/3.3.3/lwjgl-stb-3.3.3-natives-windows-arm64.jar
C:/Users/Blueb/Desktop/MultiMC/libraries/org/lwjgl/lwjgl-stb/3.3.3/lwjgl-stb-3.3.3-natives-windows-x86.jar
C:/Users/Blueb/Desktop/MultiMC/libraries/org/lwjgl/lwjgl-tinyfd/3.3.3/lwjgl-tinyfd-3.3.3.jar
C:/Users/Blueb/Desktop/MultiMC/libraries/org/lwjgl/lwjgl-tinyfd/3.3.3/lwjgl-tinyfd-3.3.3-natives-windows.jar
C:/Users/Blueb/Desktop/MultiMC/libraries/org/lwjgl/lwjgl-tinyfd/3.3.3/lwjgl-tinyfd-3.3.3-natives-windows-arm64.jar
C:/Users/Blueb/Desktop/MultiMC/libraries/org/lwjgl/lwjgl-tinyfd/3.3.3/lwjgl-tinyfd-3.3.3-natives-windows-x86.jar
C:/Users/Blueb/Desktop/MultiMC/libraries/org/lwjgl/lwjgl/3.3.3/lwjgl-3.3.3.jar
C:/Users/Blueb/Desktop/MultiMC/libraries/org/lwjgl/lwjgl/3.3.3/lwjgl-3.3.3-natives-windows.jar
C:/Users/Blueb/Desktop/MultiMC/libraries/org/lwjgl/lwjgl/3.3.3/lwjgl-3.3.3-natives-windows-arm64.jar
C:/Users/Blueb/Desktop/MultiMC/libraries/org/lwjgl/lwjgl/3.3.3/lwjgl-3.3.3-natives-windows-x86.jar
C:/Users/Blueb/Desktop/MultiMC/libraries/org/slf4j/slf4j-api/2.0.17/slf4j-api-2.0.17.jar
C:/Users/Blueb/Desktop/MultiMC/libraries/net/fabricmc/intermediary/1.21.11/intermediary-1.21.11.jar
C:/Users/Blueb/Desktop/MultiMC/libraries/org/ow2/asm/asm/9.9/asm-9.9.jar
C:/Users/Blueb/Desktop/MultiMC/libraries/org/ow2/asm/asm-analysis/9.9/asm-analysis-9.9.jar
C:/Users/Blueb/Desktop/MultiMC/libraries/org/ow2/asm/asm-commons/9.9/asm-commons-9.9.jar
C:/Users/Blueb/Desktop/MultiMC/libraries/org/ow2/asm/asm-tree/9.9/asm-tree-9.9.jar
C:/Users/Blueb/Desktop/MultiMC/libraries/org/ow2/asm/asm-util/9.9/asm-util-9.9.jar
C:/Users/Blueb/Desktop/MultiMC/libraries/net/fabricmc/sponge-mixin/0.17.0+mixin.0.8.7/sponge-mixin-0.17.0+mixin.0.8.7.jar
C:/Users/Blueb/Desktop/MultiMC/libraries/net/fabricmc/fabric-loader/0.18.4/fabric-loader-0.18.4.jar
C:/Users/Blueb/Desktop/MultiMC/libraries/com/mojang/minecraft/1.21.11/minecraft-1.21.11-client.jar
Native libraries:
Mods:
[✔️] advancedlocate-1.4.1-1.21.11.jar
[✔️] advanced-xray-fabric-21.11.0.jar
[✔️] architectury-19.0.1-fabric (1).jar
[✔️] armored-elytra-1.12.0.jar
[✔️] automodpack-mc1.21.11-fabric-4.0.5.jar
[✔️] auto-ore-smelting-1.21.11.jar
[✔️] balm-fabric-1.21.11-21.11.6.jar
[✔️] bigger-stack-size-v2.4.2.jar
[✔️] boatiview-fabric-0.0.8-1.21.11.jar
[✔️] collective-1.21.11-8.13.jar
[✔️] collective-1.21.11-8.22.jar
[✔️] deimos-1.21.11-fabric-2.5.jar
[✔️] EasyShulkerBoxes-v21.11.0-mc1.21.11-Fabric.jar
[✔️] Endless Inventory-fabric-1.21.11-1.1.3.3.jar
[✔️] ExplorersCompass-1.21.11-2.5.1-fabric.jar
[✔️] fabric-api-0.141.3+1.21.11.jar
[✔️] fabric-language-kotlin-1.13.9+kotlin.2.3.10.jar
[✔️] farmtweaks-1.8.jar
[✔️] fast-smelt-v1.0.9.jar
[✔️] ForgeConfigAPIPort-v21.11.1-mc1.21.11-Fabric.jar
[✔️] forgivingvoid-fabric-1.21.11-21.11.3.jar
[❌] immersive-portals-6.0.6-mc1.21.1-fabric.jar.disabled (disabled)
[✔️] infinitetrading-1.21.11-5.0.jar
[❌] inventoryextended-1.0.0-mc1.21.11.jar.disabled (disabled)
[❌] kaleidoscopecookery-1.0.1-fabric+mc1.21.1.jar.disabled (disabled)
[❌] letsdo-farm_and_charm-fabric-1.1.22.jar.disabled (disabled)
[❌] loader-0.19.2.jar.disabled (disabled)
[❌] mendfinity-1.0.0+1.20.6.jar.disabled (disabled)
[✔️] mermod-fabric-4.0.1+1.21.11.jar
[✔️] midnightlib-fabric-1.9.2+1.21.11.jar
[✔️] MinecraftCapes Fabric 1.21.11-1.0.1.jar
[❌] nametagtweaks-1.21.11-4.0.jar.disabled (disabled)
[✔️] netherwartblock-1.21.11-fabric-7.3.jar
[❌] owo-lib-0.13.0+1.21.11.jar.disabled (disabled)
[❌] purpurpack-smelt-raw-ore-blocks-4.6.jar.disabled (disabled)
[✔️] PuzzlesLib-v21.11.10-mc1.21.11-Fabric.jar
[✔️] reinforced-shulker-boxes-3.5.0-beta+1.21.11.jar
[✔️] shulker-in-shulker-1.21.11.jar
[✔️] silk-all-1.11.5.jar
[❌] softglowores-1.1.0+mc1.21.11.jar.disabled (disabled)
[✔️] spectator-night-vision-0.1.jar
[❌] StacksAreStacks-1.1.2-1.21.9.jar.disabled (disabled)
[❌] stacksizetweaks-0.2.0+1.21.9-1.21.11.jar.disabled (disabled)
[✔️] TaxFreeLevels-1.4.20-fabric-1.21.11.jar
[✔️] treeharvester-1.21.11-9.3.jar
[✔️] uncrafteverything-2.2.0+1.21.11-fabric.jar
[✔️] UniversalEnchants-v21.11.2-mc1.21.11-Fabric.jar
[✔️] UniversalEnchants-v21.11.2-mc1.21.11-Fabric (1).jar
[✔️] unlimited-enchants-unlimited-enchants-1.21.11.jar
[❌] upgraded-chests-1.0.0 (1).jar.disabled (disabled)
[✔️] vegan-recipes-2.1.jar
[✔️] veinminer-fabric-2.5.2.jar
[✔️] walljump-1.21.11-1.3.5-fabric.jar
[✔️] wishfulrecipes-1.21.11-fabric-0.1.jar
Params:
--username BlueberryShayoka --version 1.21.11 --gameDir C:/Users/Blueb/Desktop/MultiMC/instances/Blue/.minecraft --assetsDir C:/Users/Blueb/Desktop/MultiMC/assets --assetIndex 29 --uuid <PROFILE ID> --accessToken <ACCESS TOKEN> --versionType release
Window size: 854 x 480
Java Arguments:
[-XX:HeapDumpPath=MojangTricksIntelDriversForPerformance_javaw.exe_minecraft.exe.heapdump, -Xms500m, -Xmx8000m, -Duser.language=en]
Minecraft process ID: 73128
Using onesix launcher.
[19:46:51] [main/INFO]: Loading Minecraft 1.21.11 with Fabric Loader 0.18.4
[19:46:51] [main/WARN]: Warnings were found!
- Mod 'Forge Config API Port' (forgeconfigapiport) 21.11.1 recommends any version of modmenu, which is missing!
- You should install any version of modmenu for the optimal experience.
[19:46:51] [main/INFO]: Loading 117 mods:
- advancedlocate 1.4.1-1.21.11
- architectury 19.0.1
- armored-elytra 1.12.0
- automodpack 4.0.5
\-- automodpack_mod 4.0.5
- balm 21.11.6
\-- kuma_api 21.11.12
- bigger_stack_size 1-v2.4.2
- boatiview 0.0.8
- collective 8.22
- deimos 2.5
- easyshulkerboxes 21.11.0
\-- iteminteractions 21.11.0
- endless_inventory 1.1.3.3
- explorerscompass 1.21.11-2.5.1-fabric
- fabric-api 0.141.3+1.21.11
|-- fabric-api-base 1.0.5+4ebb5c083e
|-- fabric-api-lookup-api-v1 1.6.114+20dc27073e
|-- fabric-biome-api-v1 17.1.1+4fc5413f3e
|-- fabric-block-api-v1 1.1.10+4ebb5c083e
|-- fabric-block-view-api-v2 1.0.39+4ebb5c083e
|-- fabric-command-api-v2 2.4.7+6b42a6003e
|-- fabric-content-registries-v0 10.2.14+4fc5413f3e
|-- fabric-convention-tags-v1 2.1.55+7f945d5b3e
|-- fabric-convention-tags-v2 2.17.3+8ef948ba3e
|-- fabric-crash-report-info-v1 0.3.23+4ebb5c083e
|-- fabric-data-attachment-api-v1 1.8.47+eed0806f3e
|-- fabric-data-generation-api-v1 23.4.0+69974c4e3e
|-- fabric-dimensions-v1 4.0.28+4fc5413f3e
|-- fabric-entity-events-v1 3.1.1+1d0ab4303e
|-- fabric-events-interaction-v0 4.1.0+3b89ecf63e
|-- fabric-game-rule-api-v1 2.0.3+4fc5413f3e
|-- fabric-item-api-v1 11.5.20+d0c46b9e3e
|-- fabric-item-group-api-v1 4.2.36+4fc5413f3e
|-- fabric-key-binding-api-v1 1.1.7+4fc5413f3e
|-- fabric-lifecycle-events-v1 2.6.15+4ebb5c083e
|-- fabric-loot-api-v2 3.0.73+3f89f5a53e
|-- fabric-loot-api-v3 2.0.20+78c8b4663e
|-- fabric-message-api-v1 6.1.12+4ebb5c083e
|-- fabric-model-loading-api-v1 6.0.15+4fc5413f3e
|-- fabric-networking-api-v1 5.1.5+ae1e07683e
|-- fabric-object-builder-api-v1 21.1.39+4fc5413f3e
|-- fabric-particles-v1 4.2.11+4fc5413f3e
|-- fabric-recipe-api-v1 8.2.3+4ebb5c083e
|-- fabric-registry-sync-v0 6.2.5+1718722b3e
|-- fabric-renderer-api-v1 8.0.3+f4ffd2e53e
|-- fabric-renderer-indigo 5.0.3+f4ffd2e53e
|-- fabric-rendering-fluids-v1 3.1.43+4ebb5c083e
|-- fabric-rendering-v1 16.2.10+0290ad933e
|-- fabric-resource-conditions-api-v1 5.0.35+4fc5413f3e
|-- fabric-resource-loader-v0 3.3.4+4fc5413f3e
|-- fabric-resource-loader-v1 1.0.10+78c8b4663e
|-- fabric-screen-api-v1 3.1.7+4ebb5c083e
|-- fabric-screen-handler-api-v1 1.3.161+4fc5413f3e
|-- fabric-serialization-api-v1 1.0.5+4ebb5c083e
|-- fabric-sound-api-v1 1.0.51+4fc5413f3e
|-- fabric-tag-api-v1 1.2.20+4fc5413f3e
|-- fabric-transfer-api-v1 6.0.25+4fc5413f3e
\-- fabric-transitive-access-wideners-v1 7.1.0+014c8cec3e
- fabric-language-kotlin 1.13.9+kotlin.2.3.10
|-- org_jetbrains_kotlin_kotlin-reflect 2.3.10
|-- org_jetbrains_kotlin_kotlin-stdlib 2.3.10
|-- org_jetbrains_kotlin_kotlin-stdlib-jdk7 2.3.10
|-- org_jetbrains_kotlin_kotlin-stdlib-jdk8 2.3.10
|-- org_jetbrains_kotlinx_atomicfu-jvm 0.31.0
|-- org_jetbrains_kotlinx_kotlinx-coroutines-core-jvm 1.10.2
|-- org_jetbrains_kotlinx_kotlinx-coroutines-jdk8 1.10.2
|-- org_jetbrains_kotlinx_kotlinx-datetime-jvm 0.7.1
|-- org_jetbrains_kotlinx_kotlinx-io-bytestring-jvm 0.8.2
|-- org_jetbrains_kotlinx_kotlinx-io-core-jvm 0.8.2
|-- org_jetbrains_kotlinx_kotlinx-serialization-cbor-jvm 1.10.0
|-- org_jetbrains_kotlinx_kotlinx-serialization-core-jvm 1.10.0
\-- org_jetbrains_kotlinx_kotlinx-serialization-json-jvm 1.10.0
- fabricloader 0.18.4
\-- mixinextras 0.5.0
- farmtweaks 1.8
- forgeconfigapiport 21.11.1
|-- com_electronwill_night-config_core 3.8.3
\-- com_electronwill_night-config_toml 3.8.3
- forgivingvoid 21.11.3
- infinitetrading 5.0
- java 21
- mermod 4.0.1
- midnightlib 1.9.2
- minecraft 1.21.11
- minecraftcapes 1.0.1
- mr_auto_oresmelting 1.21.11
- mr_fast_smelt 1-v1.0.9
- mr_spectator_nightvision 0.1
- mr_unlimited_enchants 1-unlimited-enchants-1.21.11
- mr_vegan_recipes 2.1
- netherwartblock 7.3
- puzzleslib 21.11.10
- reinfshulker 3.5.0-beta+1.21.11
\-- reinfcore 4.0.9+1.21.11
\-- cloth-config 21.11.153
\-- cloth-basic-math 0.6.1
- shulker-in-shulker 1.0.0
- silk-all 1.11.5
|-- silk-commands 1.11.5
|-- silk-core 1.11.5
|-- silk-game 1.11.5
|-- silk-igui 1.11.5
|-- silk-nbt 1.11.5
|-- silk-network 1.11.5
\-- silk-persistence 1.11.5
- taxfreelevels 1.4.20
- treeharvester 9.3
- uncrafteverything 2.2.0+1.21.11-fabric
- universalenchants 21.11.2
- veinminer 2.5.2
|-- de_miraculixx_core_dev 2.5.2
\-- fabric-permissions-api-v0 0.6.1
- walljump 1.21.11-1.3.5-fabric
\-- configlibtxf 13.2.8-fabric
- wishfulrecipes 0.1
- xray 21.11.0
[19:46:51] [main/INFO]: Prelaunching AutoModpack...
[19:46:51] [main/INFO]: Loaded config! took 28ms
[19:47:01] [main/ERROR]: Failed to create download client: Connect timed out
[19:47:01] [main/INFO]: Indexing file system...
[19:47:01] [main/INFO]: Verifying content against server list...
[19:47:01] [main/INFO]: Checking for deleted files...
[19:47:01] [main/INFO]: Modpack automodpack\modpacks\Zeus Modded Mess is up to date! Took 41 ms
[19:47:02] [ForkJoinPool-2-worker-2/WARN]: Mod com_github_rtyley_animated-gif-lib-for-java uses the version animated-gif-lib-1.7 which isn't compatible with Loader's extended semantic version format (Could not parse version number component 'animated'!), SemVer is recommended for reliably evaluating dependencies and prioritizing newer version
[19:47:02] [ForkJoinPool-2-worker-12/WARN]: The mod "takesapillage" contains invalid entries in its mod json:
- Unsupported root entry "mc-publish" at line 51 column 17
[19:47:02] [ForkJoinPool-2-worker-10/WARN]: Mod totw_modded uses the version fabric-1.21-1.0.9 which isn't compatible with Loader's extended semantic version format (Could not parse version number component 'fabric'!), SemVer is recommended for reliably evaluating dependencies and prioritizing newer version
[19:47:02] [main/INFO]: Overwriting /config/travelersbackpack.json5 file to the modpack version
[19:47:02] [main/INFO]: Overwriting /config/immediatelyfast.json file to the modpack version
[19:47:04] [main/INFO]: Keeping /mods/deimos-1.21.11-fabric-2.5.jar file in the standard mods directory
[19:47:04] [main/INFO]: Keeping /mods/ForgeConfigAPIPort-v21.11.1-mc1.21.11-Fabric.jar file in the standard mods directory
[19:47:04] [main/INFO]: Keeping /mods/collective-1.21.11-8.13.jar file in the standard mods directory
[19:47:04] [main/INFO]: Keeping /mods/midnightlib-fabric-1.9.2+1.21.11.jar file in the standard mods directory
[19:47:04] [main/INFO]: Keeping /mods/PuzzlesLib-v21.11.10-mc1.21.11-Fabric.jar file in the standard mods directory
[19:47:04] [main/INFO]: Keeping /mods/fabric-language-kotlin-1.13.9+kotlin.2.3.10.jar file in the standard mods directory
[19:47:04] [main/INFO]: Keeping /mods/balm-fabric-1.21.11-21.11.6.jar file in the standard mods directory
[19:47:04] [main/INFO]: Keeping /mods/fabric-api-0.141.3+1.21.11.jar file in the standard mods directory
[19:47:04] [main/INFO]: Discovering mods from Zeus Modded Mess/mods
[19:47:04] [ForkJoinPool-3-worker-3/WARN]: Mod com_github_rtyley_animated-gif-lib-for-java uses the version animated-gif-lib-1.7 which isn't compatible with Loader's extended semantic version format (Could not parse version number component 'animated'!), SemVer is recommended for reliably evaluating dependencies and prioritizing newer version
[19:47:04] [ForkJoinPool-3-worker-1/WARN]: The mod "takesapillage" contains invalid entries in its mod json:
- Unsupported root entry "mc-publish" at line 51 column 17
[19:47:04] [ForkJoinPool-3-worker-9/WARN]: Mod totw_modded uses the version fabric-1.21-1.0.9 which isn't compatible with Loader's extended semantic version format (Could not parse version number component 'fabric'!), SemVer is recommended for reliably evaluating dependencies and prioritizing newer version
[19:47:04] [main/WARN]: Warnings were found!
- Mod 'Arcane Lanterns' (arcanelanterns) 21.11.1 recommends any version of rei, which is missing!
- You should install any version of rei for the optimal experience.
- Mod 'ButterBee' (butterbee) 1.0.4 recommends version 3.1.0 or later of clifftree, which is missing!
- You should install version 3.1.0 or later of clifftree for the optimal experience.
- Mod 'ClickThrough Plus' (clickthrough) 3.5.4+1.21.11 recommends any version of mcqoy, which is missing!
- You should install any version of mcqoy for the optimal experience.
- Mod 'OptiGUI' (optigui) 2.3.0-beta.9+1.21.9 recommends any version of animatica, which is missing!
- You should install any version of animatica for the optimal experience.
- Mod 'Sounds' (sounds) 2.4.22+edge recommends any version of rsls, which is missing!
- You should install any version of rsls for the optimal experience.
[19:47:04] [main/INFO]: Loading 316 mods:
- adabranium 2.7.0+1.21.11
- additionallanterns 1.1.2
- addonslib 1.21.6-1.6
- adorabuild_structures 2.11.0
- advancednetherite 2.3.1-1.21.11
- advancements_reloaded 0.12.0
- aerialhell 1.0.0
- ali 1.7.0
- almanac 1.6.2
- ambientsounds 6.3.5
- animal_feeding_trough 1.2.0+1.21.11
- animalgarden_manatee 0.140.0
- animalgarden_meerkat 1.0.1
- animalgarden_mouse 1.0.1
- animalgarden_owl 0.140.0
- animalgarden_porcupine 0.140.0
- animalgarden_redpanda 0.140.0
- animalgarden_seaotter 0.140.0
- appleskin 3.0.8+mc1.21.11
- arcanelanterns 21.11.1
- axolotlitemfix 1.1.11
- badoptimizations 2.4.1
- basicweapons 2.3.1
- beautify 1.8.0+1.21.11
- better-selection 1.8
- betterdays 3.3.6.3
\-- whitenoise 2.0.7
|-- com_electronwill_night-config_core 3.8.3
\-- com_electronwill_night-config_toml 3.8.3
- betterstats 5.0.0-beta.5+fabric-1.21.11
- biomesoplenty 21.11.0.28
\-- net_jodah_typetools 0.6.3
- biomeswevegone 4.3.1
- blockrunner 21.11.0
- blurperfected 5.3.2-rev.3
- bronze 2.1.5
- butterbee 1.0.4
- camerapture 1.10.12
\-- dev_matrixlab_webp4j 1.3.0
- camerautils 1.21.11-1.1.2
|-- fabric-api-base 1.0.5+4ebb5c0853
|-- fabric-key-binding-api-v1 1.1.7+4fc5413f53
|-- fabric-lifecycle-events-v1 2.6.15+4ebb5c0853
|-- fabric-resource-loader-v0 3.3.4+4fc5413f53
\-- fabric-resource-loader-v1 1.0.10+78c8b46653
- capes 1.5.10+1.21.11
- cardinal-components 7.3.0
|-- cardinal-components-base 7.3.0
|-- cardinal-components-block 7.3.0
|-- cardinal-components-chunk 7.3.0
|-- cardinal-components-entity 7.3.0
|-- cardinal-components-item 7.3.0
|-- cardinal-components-level 7.3.0
|-- cardinal-components-scoreboard 7.3.0
\-- cardinal-components-world 7.3.0
- carryon 2.9.0
- chat_heads 1.2.1
- chatanimation 1.1.3
- chunksfadein 3.0.20-1.21.11
\-- com_moandjiezana_toml_toml4j 0.7.2
- classicpipes 1.0.10
- clickthrough 3.5.4+1.21.11
\-- folk_sisby_kaleido-config 0.3.3+1.3.2
- clumps 29.0.0.1
- coins 3.0.0
- configurable 3.3.2
|-- com_electronwill_night-config_core 3.8.3
|-- com_electronwill_night-config_toml 3.8.3
|-- com_google_auto_service_auto-service 1.0
|-- org_quiltmc_parsers_gson 0.3.1
\-- org_quiltmc_parsers_json 0.3.1
- connectedglass 1.1.14
- connectiblechains 2.5.7+1.21.11
\-- com_moulberry_mixinconstraints 1.0.9
- controlling 29.0.1
- corgilib 9.0.0.0
|-- com_electronwill_night-config_core 3.8.3
\-- com_electronwill_night-config_toml 3.8.3
- cratedelight 25.9.22-1.21.7-fabric
- create 6.0.9-3
- creativecore 2.14.9
\-- net_neoforged_bus 7.2.0
- cubes-without-borders 3.0.0-build.14+mc1.21.11
- cullleaves 4.1.1.1
- cupboard 1.21.11-3.1
- cutthrough 21.11.0
- decocraft 3.0.7
- decocraft_nature 1.0.5
- detailabreconst 5.2.0+1.21.9_11-fabric
- displaydelight 1.6.1-mc1.21.11
- drippyloadingscreen 3.1.1
- dynamic_fps 3.11.4
\-- net_lostluma_battery 2.0.0
- dynamiccrosshair 9.11
|-- dynamiccrosshair-api 1.2
\-- libbamboo 2.25
- dynamiccrosshaircompat 4.4
- easymagic 21.11.0
- emojitype 3.0.0-1.21.10
\-- org_yaml_snakeyaml 2.5
- enchdesc 21.11.1
- enderitemod 1.8.1
- enderscape 2.1.0
\-- mixson 1.3.2
- entity-view-distance 1.7.1+1.21.11
- essential-container 1.0.0
\-- essential-loader 1.2.5
- eternalnether 21.11.0
- evs 2.6.5
- fancy_entity_renderer 0.5.3
- fancymenu 3.8.4
|-- com_github_keksuccino_japng 0.5.3
\-- com_github_rtyley_animated-gif-lib-for-java animated-gif-lib-1.7
- farmersdelight 1.21.11-3.4.6+refabricated
\-- mm 2.3
- farmersknives 1.21.11-4.0.5
- fastitemframes 21.11.1
- ferritecore 8.2.0
- fishofthieves 21.11.0.3
\-- mm 2.3
- flora 1.0.3-1.21.11
- flowerymooblooms 3.0.2
- friendsandfoes 4.0.19
- frightsdelight 1.4.5
- fusion 1.2.12+a
- fzzy_config 0.7.6+1.21.11
|-- blue_endless_jankson 1.2.3
|-- fabric-permissions-api-v0 0.6.1
\-- net_peanuuutz_tomlkt_tomlkt-jvm 0.3.7
- geckolib 5.4.3
- giant_cherry_blossom_bonsai_tree 1.0.1
- glitchcore 21.11.0.2
\-- net_jodah_typetools 0.6.3
- gravestones 1.2.10
- illagerinvasion 21.11.1
\-- neoforgedatapackextensions 21.11.3
- immediatelyfast 1.14.2+1.21.11
\-- net_lenni0451_reflect 1.6.1+curseforge
- immersiveores 1.21.11-0.1
\-- playerabilitylib 1.15.0
- inventoryessentials 21.11.3
- inventorymanagement 1.6.1
- iris 1.10.5+mc1.21.11
|-- io_github_douira_glsl-transformer 3.0.0-pre3
|-- org_anarres_jcpp 1.4.14
\-- org_antlr_antlr4-runtime 4.13.1
- itemphysiclite 1.6.10
- jade 21.1.1+fabric
- jademoddedentities 1.2.0
- jamlib 1.3.5+1.21.11
\-- blue_endless_jankson 1.2.3
- jei 27.4.0.15
- justenoughbreeding 1.6.6
- konkrete 1.9.18
- lambdynlights 4.9.1+1.21.11
\-- lambdynlights_runtime 4.9.1+1.21.11
|-- lambdynlights_api 4.9.1+1.21.11
| |-- yumi_commons_collections 1.0.0
| |-- yumi_commons_core 1.0.0
| \-- yumi_commons_event 1.0.0
|-- pride 1.5.1+1.21.11
|-- spruceui 9.1.0+1.21.11
\-- yumi_mc_core 1.0.0-beta.1+1.21.11
|-- yumi_commons_collections 1.0.0
|-- yumi_commons_core 1.0.0
\-- yumi_commons_event 1.0.0
- libipn 6.6.2
- lighterend 1.0.4-0-1.21.11
- litematica 0.26.0
\-- conditional-mixin 0.6.4
- lithium 0.21.3+mc1.21.11
- lithostitched 1.5.8+beta1
- lolmblv 1.8.0
- lolmbv 1.0.7
- lolmcbv 1.7.3
- lolmcmv 1.8.1
- lolmcmv-aft 1.2.1
- lolmcv 1.5.14
- lootr 1.21.11-1.20.34.101
- magnumtorch 21.11.0
- malilib 0.27.6
\-- conditional-mixin 0.6.4
- mavapi 2.1.0+1.21.11-fabric
- mavm 2.1.0+1.21.11-fabric
- mcwbiomesoplenty 1.21.10-1.5
\-- net_jodah_typetools 0.6.3
- mcwbyg 1.21.4-1.5
- mcwdoors 1.1.2
- mcwfences 1.2.1
- mcwfurnitures 3.4.2
- mcwholidays 1.1.2
- mcwlights 1.1.5
- mcwpaintings 1.0.5
- mcwpaths 1.1.1
- mcwroofs 2.3.2
- mcwstairs 1.0.2
- mcwtrpdoors 1.1.5
- mcwwindows 2.4.2
- medieval_buildings 1.1.2
- medievalend 1.0.5
- melody 1.0.15
- mineify 1.3.0
- modmenu 17.0.0-beta.2
\-- placeholder-api 2.8.1+1.21.10
- more_armor_trims 1.5.2-1.21.5
- morechathistory 1.3.1
- moreculling 1.6.1
\-- mixinsquared 0.2.0
- moredelight 25.12.10-1.21.11-fabric
- morediscs 35.1
- moretotems 2.24.0
- morevillagers 1.25.12.3
- mousetweaks 2.30
- mr_pocket_dimension 1.21.11.1.3
- mru 1.0.26+edge+1.21.10
- naturescompass 1.21.11-2.2.9-fabric
- nbt_ac 1.3.14
- neruina 3.2.1
|-- org_apache_httpcomponents_httpclient 4.5
|-- org_apache_httpcomponents_httpcore 4.4
\-- org_kohsuke_github-api 2.0-rc.4
- no-telemetry 1.10.0
- nochatreports 1.21.11-v2.18.0
- notenoughanimations 1.11.2
|-- transition 1.0.12
\-- trender 1.0.10
- notenoughcrashes 4.4.9+1.21.11
- nowplaying 1.6.0+1.21.11
- ohthetreesyoullgrow 9.0.0
- optigui 2.3.0-beta.9+1.21.9
|-- org_apache_commons_commons-text 1.12.0
\-- org_ini4j_ini4j 0.5.4
- packetfixer 3.3.4
- philipsruins 1.21.11
- pickupnotifier 21.11.0
- pingwheel 1.12.1
- plasmovoice 2.1.8
- pneumonocore 1.2.1
- polymer-bundled 0.15.2+1.21.11
|-- polymer-autohost 0.15.2+1.21.11
|-- polymer-blocks 0.15.2+1.21.11
|-- polymer-common 0.15.2+1.21.11
| \-- packet_tweaker 0.6.0+1.21.10
|-- polymer-core 0.15.2+1.21.11
| |-- polymer-networking 0.15.2+1.21.11
| | \-- polymer-common 0.15.2+1.21.11
| | \-- packet_tweaker 0.6.0+1.21.10
| \-- polymer-registry-sync-manipulator 0.15.2+1.21.11
|-- polymer-resource-pack 0.15.2+1.21.11
| \-- polymer-common 0.15.2+1.21.11
| \-- packet_tweaker 0.6.0+1.21.10
|-- polymer-resource-pack-extras 0.15.2+1.21.11
|-- polymer-sound-patcher 0.15.2+1.21.11
\-- polymer-virtual-entity 0.15.2+1.21.11
\-- polymer-common 0.15.2+1.21.11
\-- packet_tweaker 0.6.0+1.21.10
- prehistoric_paintings 1.1.0
- prickle 21.11.1
- promenade 5.4.0
\-- biolith 3.5.0-beta.3
- puzzle 2.3.0
- pv-addon-soundphysics 1.1.2
- quad 1.2.14
- raknetify 0.1.0+alpha.5.195
- rechiseled 1.2.2
- reeses-sodium-options 2.0.2+mc1.21.11
- reinfchest 4.0.0-beta+1.21.11
\-- reinfcore 4.0.9+1.21.11
- resourcefulconfig 3.11.2
- resourcefullib 3.11.0
|-- com_teamresourceful_bytecodecs 1.1.3
\-- com_teamresourceful_yabn 1.0.3
- resourcify 1.8.0
- respawnablepets 1.21.11-r2
\-- cardinal-components-world 7.3.0
- rrls 5.1.15+mc.1.21.11
- rusticdelight 1.5.3
- scholar 1.1.13
- scoreboard-overhaul 1.4.2+mc1.21.9
- searchables 1.0.2
- sereneseasons 21.11.0.1
\-- net_jodah_typetools 0.6.3
- sereneseasonsplus 4.2.2
\-- net_jodah_typetools 0.6.3
- sheepvariety 21.11.0
- shulkerboxtooltip 5.2.15+1.21.11
- sit 29
- skinlayers3d 1.10.1
\-- trender 1.0.10
- smartblockplacement 1.6
- snuffles 1.7.0+1.21.11
- sodium 0.8.4+mc1.21.11
- sodium-extra 0.8.3+mc1.21.11
- sound_physics_remastered 1.21.11-1.5.1
- sounds 2.4.22+edge
- spanishdelight 1.21.11-1.0.8a
- spark 1.10.165
\-- fabric-permissions-api-v0 0.6.1
- squatgrow 21.11.0+mc1.21.11
- sspb 6.0.0
- stackedblocks 25.7.4-1.21.5-fabric
- stackedblocksfarmersdelight 25.7.31-1.21.7-fabric
- status-effect-bars 1.0.10
- stoneworks 21.11.0
- storagedelight 25.12.9-1.21.11-fabric
- strawberrylib 1.21.11-r4
|-- cardinal-components-base 7.3.0
|-- cardinal-components-entity 7.3.0
\-- datasync_minecraft 0.10.3
- subtle_effects 1.13.2
- superbsteeds 1.21.11-r1
- supermartijn642configlib 1.1.8
- supermartijn642corelib 1.1.20
- takesapillage 1.0.10
- talkingheads 1.0.10+1.21.11+fabric
- tcdcommons 5.0.0-beta.5+fabric-1.21.11
- terrablender 21.11.0.0
- toms_trading_network 0.3.11
- toomanypaintings 25.10.20-1.21.2-fabric
- totw_modded fabric-1.21-1.0.9
- tradingpost 21.11.0
- trashcans 1.0.18
\-- team_reborn_energy 4.2.0
- trashslot 21.11.4
- travelersbackpack 10.11.5
- ubesdelight 0.4.8
- universalbonemeal 21.11.0
- untitledduckmod 1.5.2
- villagerapi 1.26.1.3
- villagernames 8.3
- visuality 0.7.12+1.21.11
- visualworkbench 21.11.1
- voicemessages 1.1.0
- waystones 21.11.4
- weaponmaster_ydm 4.4.3
- woodwevegot 4.3.1
- xaerominimap 25.3.10
\-- xaerolib 1.1.0
- xaeroplus 2.30.8
- xaeroworldmap 1.40.11
\-- xaerolib 1.1.0
- xmxw 2.6.0+1.21.11-fabric
- yet_another_config_lib_v3 3.8.2+1.21.11-fabric
|-- com_twelvemonkeys_common_common-image 3.12.0
|-- com_twelvemonkeys_common_common-io 3.12.0
|-- com_twelvemonkeys_common_common-lang 3.12.0
|-- com_twelvemonkeys_imageio_imageio-core 3.12.0
|-- com_twelvemonkeys_imageio_imageio-metadata 3.12.0
\-- com_twelvemonkeys_imageio_imageio-webp 3.12.0
- zoomify 2.15.2+1.21.11
\-- com_akuleshov7_ktoml-core-jvm 0.7.1
[19:47:04] [main/INFO]: AutoModpack prelaunched! took 13120ms
[19:47:05] [main/INFO]: SpongePowered MIXIN Subsystem Version=0.8.7 Source=file:/C:/Users/Blueb/Desktop/MultiMC/libraries/net/fabricmc/sponge-mixin/0.17.0+mixin.0.8.7/sponge-mixin-0.17.0+mixin.0.8.7.jar Service=Knot/Fabric Env=CLIENT
[19:47:05] [main/INFO]: Compatibility level set to JAVA_21
[19:47:05] [main/WARN]: Reference map 'balm.refmap.json' for balm.mixins.json could not be read. If this is a development environment you can ignore this message
[19:47:05] [main/WARN]: Reference map 'balm.refmap.json' for balm.api.mixins.json could not be read. If this is a development environment you can ignore this message
[19:47:05] [main/WARN]: Reference map 'balm.refmap.json' for balm.fabric.mixins.json could not be read. If this is a development environment you can ignore this message
[19:47:05] [main/WARN]: Reference map 'deimos.refmap.json' for deimos.mixins.json could not be read. If this is a development environment you can ignore this message
[19:47:05] [main/WARN]: Reference map 'deimos.refmap.json' for deimos.fabric.mixins.json could not be read. If this is a development environment you can ignore this message
[19:47:05] [main/WARN]: Reference map 'forgivingvoid.refmap.json' for forgivingvoid.mixins.json could not be read. If this is a development environment you can ignore this message
[19:47:05] [main/WARN]: Reference map 'forgivingvoid.refmap.json' for forgivingvoid.fabric.mixins.json could not be read. If this is a development environment you can ignore this message
[19:47:05] [main/WARN]: Reference map 'kuma_api.refmap.json' for kuma_api.mixins.json could not be read. If this is a development environment you can ignore this message
[19:47:05] [main/WARN]: Reference map 'kuma_api.refmap.json' for kuma_api.fabric.mixins.json could not be read. If this is a development environment you can ignore this message
[19:47:05] [main/WARN]: Reference map 'minecraftcapes.refmap.json' for minecraftcapes.mixins.json could not be read. If this is a development environment you can ignore this message
[19:47:05] [main/WARN]: Reference map 'netherwartblock.refmap.json' for netherwartblock.mixins.json could not be read. If this is a development environment you can ignore this message
[19:47:05] [main/WARN]: Reference map 'netherwartblock.refmap.json' for netherwartblock.fabric.mixins.json could not be read. If this is a development environment you can ignore this message
[19:47:05] [main/WARN]: Reference map 'wishfulrecipes.refmap.json' for wishfulrecipes.mixins.json could not be read. If this is a development environment you can ignore this message
[19:47:05] [main/WARN]: Reference map 'wishfulrecipes.refmap.json' for wishfulrecipes.fabric.mixins.json could not be read. If this is a development environment you can ignore this message
[19:47:05] [main/WARN]: Reference map 'additionallanterns.mixins.refmap.json' for additionallanterns.mixins.json could not be read. If this is a development environment you can ignore this message
[19:47:05] [main/WARN]: Reference map 'ambientsounds.mixins.refmap.json' for ambientsounds.mixins.json could not be read. If this is a development environment you can ignore this message
[19:47:05] [main/INFO]: Config version: 6
[19:47:05] [main/INFO]: BadOptimizations config dump:
[19:47:05] [main/INFO]: enable_toast_optimizations: true
[19:47:05] [main/INFO]: ignore_mod_incompatibilities: false
[19:47:05] [main/INFO]: lightmap_time_change_needed_for_update: 80
[19:47:05] [main/INFO]: enable_lightmap_caching: true
[19:47:05] [main/INFO]: enable_particle_manager_optimization: true
[19:47:05] [main/INFO]: enable_entity_renderer_caching: true
[19:47:05] [main/INFO]: log_config: true
[19:47:05] [main/INFO]: enable_remove_redundant_fov_calculations: true
[19:47:05] [main/INFO]: config_version: 6
[19:47:05] [main/INFO]: enable_sky_angle_caching_in_worldrenderer: true
[19:47:05] [main/INFO]: enable_block_entity_renderer_caching: true
[19:47:05] [main/INFO]: skycolor_time_change_needed_for_update: 3
[19:47:05] [main/INFO]: enable_entity_flag_caching: true
[19:47:05] [main/INFO]: ignore_mod_cache_hooks: false
[19:47:05] [main/INFO]: enable_debug_renderer_disable_if_not_needed: true
[19:47:05] [main/INFO]: enable_sky_color_caching: true
[19:47:05] [main/INFO]: enable_remove_tutorial_if_not_demo: true
[19:47:05] [main/INFO]: show_f3_text: true
[19:47:05] [main/INFO]: Disabling enable_entity_flag_caching because mod "biomeswevegone" is incompatible with it (built-in)
[19:47:05] [main/WARN]: Reference map 'beautify-refmap.json' for beautify.mixins.json could not be read. If this is a development environment you can ignore this message
[19:47:05] [main/WARN]: Reference map 'biomesoplenty.refmap.json' for biomesoplenty.mixins.json could not be read. If this is a development environment you can ignore this message
[19:47:05] [main/WARN]: Reference map 'biomesoplenty.refmap.json' for biomesoplenty.fabric.mixins.json could not be read. If this is a development environment you can ignore this message
[19:47:05] [main/WARN]: Reference map 'carryon.refmap.json' for carryon.mixins.json could not be read. If this is a development environment you can ignore this message
[19:47:05] [main/WARN]: Reference map 'chatanimation.refmap.json' for chatanimation.mixins.json could not be read. If this is a development environment you can ignore this message
[19:47:05] [main/WARN]: Reference map 'chunksfadein.refmap.json' for chunksfadein_mc.mixins.json could not be read. If this is a development environment you can ignore this message
[19:47:05] [main/WARN]: Reference map 'chunksfadein.refmap.json' for chunksfadein_sodium.mixins.json could not be read. If this is a development environment you can ignore this message
[19:47:05] [main/WARN]: Reference map 'chunksfadein.refmap.json' for chunksfadein_iris.mixins.json could not be read. If this is a development environment you can ignore this message
[19:47:05] [main/WARN]: Reference map 'chunksfadein.refmap.json' for chunksfadein_dh.mixins.json could not be read. If this is a development environment you can ignore this message
[19:47:05] [main/WARN]: Reference map 'classicpipes.refmap.json' for classicpipes.mixins.json could not be read. If this is a development environment you can ignore this message
[19:47:05] [main/WARN]: Reference map 'classicpipes.refmap.json' for classicpipes.fabric.mixins.json could not be read. If this is a development environment you can ignore this message
[19:47:05] [main/WARN]: Reference map 'clumps.refmap.json' for clumps.mixins.json could not be read. If this is a development environment you can ignore this message
[19:47:05] [main/WARN]: Reference map 'connectedglass.mixins.refmap.json' for connectedglass.mixins.json could not be read. If this is a development environment you can ignore this message
[19:47:05] [main/WARN]: Reference map 'controlling.refmap.json' for controlling.mixins.json could not be read. If this is a development environment you can ignore this message
[19:47:05] [main/WARN]: Reference map 'creativecore.mixins.refmap.json' for creativecore.mixins.json could not be read. If this is a development environment you can ignore this message
[19:47:05] [main/WARN]: Reference map 'creativecore.mixins.refmap.json' for creativecore.fabric.mixins.json could not be read. If this is a development environment you can ignore this message
[19:47:05] [main/WARN]: Reference map 'enchdesc.refmap.json' for enchdesc.mixins.json could not be read. If this is a development environment you can ignore this message
[19:47:05] [main/WARN]: Reference map 'enchdesc.refmap.json' for enchdesc.fabric.mixins.json could not be read. If this is a development environment you can ignore this message
[19:47:05] [main/WARN]: Reference map 'evs.refmap.json' for evs.mixins.json could not be read. If this is a development environment you can ignore this message
[19:47:05] [main/WARN]: Reference map 'evs.refmap.json' for evs.fabric.mixins.json could not be read. If this is a development environment you can ignore this message
[19:47:05] [main/WARN]: Reference map 'fancy_entity_renderer.refmap.json' for fancy_entity_renderer.mixins.json could not be read. If this is a development environment you can ignore this message
[19:47:05] [main/WARN]: Reference map 'fancy_entity_renderer.refmap.json' for fancy_entity_renderer.fabric.mixins.json could not be read. If this is a development environment you can ignore this message
[19:47:05] [main/WARN]: Reference map 'friendsandfoes.refmap.json' for friendsandfoes-common.mixins.json could not be read. If this is a development environment you can ignore this message
[19:47:05] [main/WARN]: Reference map 'friendsandfoes.refmap.json' for friendsandfoes-fabric.mixins.json could not be read. If this is a development environment you can ignore this message
[19:47:05] [main/WARN]: Reference map 'fusion.mixins.refmap.json' for fusion.mixins.json could not be read. If this is a development environment you can ignore this message
[19:47:05] [main/WARN]: Reference map 'geckolib.refmap.json' for geckolib.mixins.json could not be read. If this is a development environment you can ignore this message
[19:47:05] [main/WARN]: Reference map 'giantcherryblossombonsaitree-refmap.json' for giant_cherry_blossom_bonsai_tree.mixins.json could not be read. If this is a development environment you can ignore this message
[19:47:05] [main/WARN]: Reference map 'glitchcore.refmap.json' for glitchcore.mixins.json could not be read. If this is a development environment you can ignore this message
[19:47:05] [main/WARN]: Reference map 'glitchcore.refmap.json' for glitchcore.fabric.mixins.json could not be read. If this is a development environment you can ignore this message
[19:47:05] [main/WARN]: Reference map 'inventoryessentials.refmap.json' for inventoryessentials.mixins.json could not be read. If this is a development environment you can ignore this message
[19:47:05] [main/WARN]: Reference map 'inventorymanagement-refmap.json' for inventorymanagement.mixins.json could not be read. If this is a development environment you can ignore this message
[19:47:05] [main/WARN]: Reference map 'inventorymanagement-refmap.json' for inventorymanagement.roundalib.mixins.json could not be read. If this is a development environment you can ignore this message
[19:47:05] [main/WARN]: Reference map 'iris.refmap.json' for mixins.iris.json could not be read. If this is a development environment you can ignore this message
[19:47:05] [main/WARN]: Reference map 'iris-fabric.refmap.json' for mixins.iris.fabric.json could not be read. If this is a development environment you can ignore this message
[19:47:05] [main/WARN]: Reference map 'iris.refmap.json' for mixins.iris.fantastic.json could not be read. If this is a development environment you can ignore this message
[19:47:05] [main/WARN]: Reference map 'iris.refmap.json' for mixins.iris.vertexformat.json could not be read. If this is a development environment you can ignore this message
[19:47:05] [main/WARN]: Reference map 'iris.refmap.json' for mixins.iris.bettermipmaps.json could not be read. If this is a development environment you can ignore this message
[19:47:05] [main/WARN]: Reference map 'iris.refmap.json' for mixins.iris.compat.sodium.json could not be read. If this is a development environment you can ignore this message
[19:47:05] [main/WARN]: Reference map 'iris.refmap.json' for mixins.iris.fixes.maxfpscrash.json could not be read. If this is a development environment you can ignore this message
[19:47:05] [main/WARN]: Reference map 'itemphysiclite.mixin.refmap.json' for itemphysiclite.mixins.json could not be read. If this is a development environment you can ignore this message
[19:47:05] [main/WARN]: Reference map 'jademoddedentities.refmap.json' for jademoddedentities.mixins.json could not be read. If this is a development environment you can ignore this message
[19:47:05] [main/WARN]: Reference map 'jademoddedentities.refmap.json' for jademoddedentities.fabric.mixins.json could not be read. If this is a development environment you can ignore this message
[19:47:05] [main/INFO]: Loaded configuration file for Lithium: 168 options available, 1 override(s) found.
[19:47:05] [main/WARN]: Reference map 'lolmcv.refmap.json' for lolmcv.fabric.mixins.json could not be read. If this is a development environment you can ignore this message
[19:47:05] [main/WARN]: Reference map 'mavapi.refmap.json' for mavapi.mixins.json could not be read. If this is a development environment you can ignore this message
[19:47:05] [main/WARN]: Reference map 'mavapi.refmap.json' for mavm.mixins.json could not be read. If this is a development environment you can ignore this message
[19:47:05] [main/WARN]: Reference map 'mixins.medieval_buildings.refmap.fabric.json' for mixins.medieval_buildings.fabric.json could not be read. If this is a development environment you can ignore this message
[19:47:05] [main/WARN]: Reference map 'moreculling.refmap.json' for moreculling.mixins.json could not be read. If this is a development environment you can ignore this message
[19:47:05] [main/WARN]: Reference map 'moreculling.refmap.json' for moreculling.fabric.mixins.json could not be read. If this is a development environment you can ignore this message
[19:47:05] [main/WARN]: Reference map 'morediscs.refmap.json' for morediscs.mixins.json could not be read. If this is a development environment you can ignore this message
[19:47:05] [main/WARN]: Reference map 'morediscs.refmap.json' for morediscs.fabric.mixins.json could not be read. If this is a development environment you can ignore this message
[19:47:05] [main/WARN]: Reference map 'moretotems.refmap.json' for moretotems.mixins.json could not be read. If this is a development environment you can ignore this message
[19:47:05] [main/WARN]: Reference map 'moretotems.refmap.json' for moretotems.fabric.mixins.json could not be read. If this is a development environment you can ignore this message
[19:47:05] [main/WARN]: Reference map 'nochatreports.refmap.json' for mixins/common/nochatreports.mixins.json could not be read. If this is a development environment you can ignore this message
[19:47:05] [main/WARN]: Reference map 'nowplaying.refmap.json' for nowplaying.mixins.json could not be read. If this is a development environment you can ignore this message
[19:47:05] [main/WARN]: Reference map 'nowplaying.refmap.json' for nowplaying.fabric.mixins.json could not be read. If this is a development environment you can ignore this message
[19:47:05] [main/WARN]: Reference map 'Ping-Wheel-refmap.json' for pingwheel.mixins.json could not be read. If this is a development environment you can ignore this message
[19:47:05] [main/WARN]: Reference map 'prehistoric_paintings-Common-1.21.1-common-refmap.json' for prehistoric_paintings-common.mixins.json could not be read. If this is a development environment you can ignore this message
[19:47:05] [main/WARN]: Reference map 'prickle.refmap.json' for prickle.mixins.json could not be read. If this is a development environment you can ignore this message
[19:47:05] [main/WARN]: Reference map 'prickle.refmap.json' for prickle.fabric.mixins.json could not be read. If this is a development environment you can ignore this message
[19:47:05] [main/WARN]: Reference map 'quad.refmap.json' for quad.mixins.json could not be read. If this is a development environment you can ignore this message
[19:47:05] [main/WARN]: Reference map 'quad.refmap.json' for quad.fabric.mixins.json could not be read. If this is a development environment you can ignore this message
[19:47:05] [main/WARN]: Reference map 'rechiseled.mixins.refmap.json' for rechiseled.mixins.json could not be read. If this is a development environment you can ignore this message
[19:47:05] [main/WARN]: Reference map 'reeses-sodium-options.refmap.json' for reeses-sodium-options.mixins.json could not be read. If this is a development environment you can ignore this message
[19:47:05] [main/WARN]: Reference map 'searchables.refmap.json' for searchables.mixins.json could not be read. If this is a development environment you can ignore this message
[19:47:05] [main/WARN]: Reference map 'searchables.refmap.json' for searchables.fabric.mixins.json could not be read. If this is a development environment you can ignore this message
[19:47:05] [main/WARN]: Reference map 'sereneseasons.refmap.json' for sereneseasons.mixins.json could not be read. If this is a development environment you can ignore this message
[19:47:05] [main/WARN]: Reference map 'sereneseasons.refmap.json' for sereneseasons.fabric.mixins.json could not be read. If this is a development environment you can ignore this message
[19:47:05] [main/WARN]: Reference map 'sereneseasonsplus-refmap.json' for sereneseasonsplus.mixins.json could not be read. If this is a development environment you can ignore this message
[19:47:05] [main/INFO]: Loaded configuration file for Sodium: 35 options available, 1 override(s) found
[19:47:05] [main/INFO]: Loaded configuration file for Sodium Extra: 26 options available, 0 override(s) found
[19:47:05] [main/WARN]: Reference map 'sodium-extra.refmap.json' for sodium-extra.mixins.json could not be read. If this is a development environment you can ignore this message
[19:47:05] [main/WARN]: Reference map 'sspb.refmap.json' for sspb.mixins.json could not be read. If this is a development environment you can ignore this message
[19:47:05] [main/WARN]: Reference map 'subtle_effects.refmap.json' for subtle_effects.mixins.json could not be read. If this is a development environment you can ignore this message
[19:47:05] [main/WARN]: Reference map 'subtle_effects.refmap.json' for subtle_effects.fabric.mixins.json could not be read. If this is a development environment you can ignore this message
[19:47:05] [main/WARN]: Reference map 'supermartijn642configlib.mixins.refmap.json' for supermartijn642configlib.mixins.json could not be read. If this is a development environment you can ignore this message
[19:47:05] [main/WARN]: Reference map 'supermartijn642corelib.mixins.refmap.json' for supermartijn642corelib.mixins.json could not be read. If this is a development environment you can ignore this message
[19:47:05] [main/WARN]: Reference map 'talkingheads.refmap.json' for talkingheads.mixins.json could not be read. If this is a development environment you can ignore this message
[19:47:05] [main/WARN]: Reference map 'TerraBlender-fabric-refmap.json' for terrablender.mixins.json could not be read. If this is a development environment you can ignore this message
[19:47:05] [main/WARN]: Reference map 'trashslot.refmap.json' for trashslot.mixins.json could not be read. If this is a development environment you can ignore this message
[19:47:05] [main/WARN]: Reference map 'trashslot.refmap.json' for trashslot.fabric.mixins.json could not be read. If this is a development environment you can ignore this message
[19:47:05] [main/WARN]: Reference map 'waystones.refmap.json' for waystones.mixins.json could not be read. If this is a development environment you can ignore this message
[19:47:05] [main/WARN]: Reference map 'waystones.refmap.json' for waystones.fabric.mixins.json could not be read. If this is a development environment you can ignore this message
[19:47:05] [main/WARN]: Reference map 'xaerolib.refmap.json' for xaerolib.mixins.json could not be read. If this is a development environment you can ignore this message
[19:47:05] [main/WARN]: Reference map 'xaerominimap.refmap.json' for xaerohud.mixins.json could not be read. If this is a development environment you can ignore this message
[19:47:05] [main/WARN]: Reference map 'xaerominimap.refmap.json' for xaerohud.fabric.mixins.json could not be read. If this is a development environment you can ignore this message
[19:47:05] [main/WARN]: Reference map 'xaerominimap.refmap.json' for xaerominimap.mixins.json could not be read. If this is a development environment you can ignore this message
[19:47:05] [main/WARN]: Reference map 'xaeroworldmap.refmap.json' for xaeroworldmap.mixins.json could not be read. If this is a development environment you can ignore this message
[19:47:05] [main/WARN]: Reference map 'yet_another_config_lib_v3.refmap.json' for yacl.mixins.json could not be read. If this is a development environment you can ignore this message
[19:47:05] [main/WARN]: Reference map 'yet_another_config_lib_v3.refmap.json' for yacl-fabric.mixins.json could not be read. If this is a development environment you can ignore this message
[19:47:06] [main/WARN]: Error loading class: com/seibel/distanthorizons/core/dataObjects/render/bufferBuilding/LodBufferContainer (java.lang.ClassNotFoundException: com/seibel/distanthorizons/core/dataObjects/render/bufferBuilding/LodBufferContainer)
[19:47:06] [main/WARN]: @Mixin target com.seibel.distanthorizons.core.dataObjects.render.bufferBuilding.LodBufferContainer was not found chunksfadein_dh.mixins.json:iris.IrisLodBufferContainerMixin from mod chunksfadein
[19:47:06] [main/WARN]: Error loading class: com/seibel/distanthorizons/core/render/renderer/LodRenderer (java.lang.ClassNotFoundException: com/seibel/distanthorizons/core/render/renderer/LodRenderer)
[19:47:06] [main/WARN]: @Mixin target com.seibel.distanthorizons.core.render.renderer.LodRenderer was not found chunksfadein_dh.mixins.json:iris.IrisLodRendererMixin from mod chunksfadein
[19:47:06] [main/INFO]: Force-disabling mixin 'chunk.palette.StrategyMixin' as rule 'mixin.chunk.palette' (added by mods [xaeroplus]) disables it and children
[19:47:06] [main/INFO]: Force-disabling mixin 'chunk.palette.StrategyMixin$Strategy1Mixin' as rule 'mixin.chunk.palette' (added by mods [xaeroplus]) disables it and children
[19:47:06] [main/INFO]: Force-disabling mixin 'chunk.palette.StrategyMixin$Strategy2Mixin' as rule 'mixin.chunk.palette' (added by mods [xaeroplus]) disables it and children
[19:47:06] [main/WARN]: Error loading class: net/minecraft/class_2539$class_4532 (java.lang.ClassNotFoundException: net/minecraft/class_2539$class_4532)
[19:47:06] [main/WARN]: @Mixin target net/minecraft/class_2539$class_4532 was not found raknetify-fabric.mixins.json:access.INetworkStateInternalPacketHandler from mod raknetify
[19:47:07] [main/WARN]: Error loading class: net/minecraft/class_9188 (java.lang.ClassNotFoundException: net/minecraft/class_9188)
[19:47:07] [main/WARN]: Error loading class: org/quiltmc/qsl/networking/impl/server/ServerLoginNetworkAddon (java.lang.ClassNotFoundException: org/quiltmc/qsl/networking/impl/server/ServerLoginNetworkAddon)
[19:47:07] [main/WARN]: Error loading class: traben/entity_model_features/models/parts/EMFModelPart (java.lang.ClassNotFoundException: traben/entity_model_features/models/parts/EMFModelPart)
[19:47:07] [main/WARN]: Force-disabling mixin 'features.render.world.sky.LevelRendererMixin' as rule 'mixin.features.render.world.sky' (added by mods [iris]) disables it and children
[19:47:07] [main/WARN]: Error loading class: net/strobel/inventive_inventory/features/sorting/SortingHandler (java.lang.ClassNotFoundException: net/strobel/inventive_inventory/features/sorting/SortingHandler)
[19:47:07] [main/WARN]: Error loading class: de/rubixdev/inventorio/player/InventorioScreenHandler (java.lang.ClassNotFoundException: de/rubixdev/inventorio/player/InventorioScreenHandler)
[19:47:07] [main/WARN]: Error loading class: fuzs/dyedflames/handler/EntityInsideFireHandler (java.lang.ClassNotFoundException: fuzs/dyedflames/handler/EntityInsideFireHandler)
[19:47:07] [main/WARN]: @Mixin target fuzs.dyedflames.handler.EntityInsideFireHandler was not found subtle_effects.mixins.json:client.EntityInsideFireHandlerMixin from mod subtle_effects
[19:47:07] [main/WARN]: Error loading class: com/anthonyhilyard/itemborders/config/ItemBordersConfig (java.lang.ClassNotFoundException: com/anthonyhilyard/itemborders/config/ItemBordersConfig)
[19:47:07] [main/WARN]: @Mixin target com.anthonyhilyard.itemborders.config.ItemBordersConfig was not found subtle_effects.mixins.json:client.ItemBordersConfigAccessor from mod subtle_effects
[19:47:08] [main/INFO]: Starting Essential Loader (stage2) version 1.7.4 (fd9925651d7d2a7c4382209f86cf67c6) [stable]
[19:47:08] [main/WARN]: Found newer Essential version 1.3.10.9 [stable], skipping at user request
[19:47:08] [main/INFO]: Starting Essential v1.3.10.8 (#f17d203a52) [stable]
[19:47:08] [main/INFO]: Java: OpenJDK 64-Bit Server VM (v21.0.2) by Oracle Corporation (Oracle Corporation)
[19:47:08] [main/INFO]: Java Path: C:\Users\Blueb\Desktop\MultiMC\jdk-21.0.2\bin
[19:47:08] [main/INFO]: Java Info: mixed mode, sharing
[19:47:08] [main/INFO]: JVM Arguments:
- -XX:HeapDumpPath=MojangTricksIntelDriversForPerformance_javaw.exe_minecraft.exe.heapdump
- -Xms500m
- -Xmx8000m
- -Duser.language=en
- -Djava.library.path=C:/Users/Blueb/Desktop/MultiMC/instances/Blue/natives
[19:47:08] [main/INFO]: OS: Windows 11 (v10.0) (Arch: amd64)
[19:47:08] [main/INFO]: Killing telemetry
[19:47:08] [main/INFO]: Searching for graphics cards...
[19:47:08] [main/INFO]: Found graphics adapter: AdapterInfo{vendor=INTEL, description='Intel(R) Iris(R) Xe Graphics', adapterType=0x0000232B, openglIcdFilePath='C:\Windows\System32\DriverStore\FileRepository\iigd_dch.inf_amd64_40c7fab87462f290\igxelpicd64.dll', openglIcdVersion=32.0.101.7076}
[19:47:08] [main/INFO]: Initializing MixinExtras via com.llamalad7.mixinextras.service.MixinExtrasServiceImpl(version=0.5.0).
[19:47:09] [main/INFO]: Added new enum to class net.minecraft.class_4284: FISHOFTHIEVES_SAVED_BAIT_PRESERVE
[19:47:11] [Datafixer Bootstrap/INFO]: 290 Datafixer optimizations took 521 milliseconds
[19:47:11] [main/INFO]: trender.mixins.json:client.ScreenAccessor from mod trender->@Invoker[METHOD_PROXY]::libgui$defaultHandleGameClickEvent(Lnet/minecraft/class_2558;Lnet/minecraft/class_310;Lnet/minecraft/class_437;)V should be static as its target is
[19:47:12] [main/INFO]: Loading Generated Config Loaders...
[19:47:12] [main/INFO]: Loaded 'neruina'
[19:47:16] [main/WARN]: Method overwrite conflict for scheduleRandomTick in ohthetreesyoullgrow.mixins.json:chunk.MixinChunkAccess from mod ohthetreesyoullgrow, previously written by corgitaco.corgilib.mixin.chunk.MixinChunkAccess. Skipping method.
[19:47:16] [main/WARN]: Method overwrite conflict for getScheduledRandomTicks in ohthetreesyoullgrow.mixins.json:chunk.MixinChunkAccess from mod ohthetreesyoullgrow, previously written by corgitaco.corgilib.mixin.chunk.MixinChunkAccess. Skipping method.
[19:47:19] [main/INFO]: Sodium: [0.8.4+mc1.21.11], Iris: [1.10.5+mc1.21.11]
[19:47:19] [main/INFO]: Assigning MaLiLib Pipelines to Iris Programs:
[19:47:19] [main/WARN]: Found okay program match for malilib:pipeline/position_color/translucent/no_depth/no_cull: BASIC_COLOR
[19:47:19] [main/WARN]: Found okay program match for malilib:pipeline/position_color/translucent/no_depth: BASIC_COLOR
[19:47:19] [main/WARN]: Found okay program match for malilib:pipeline/position_color/translucent/lequal_depth/offset_1: BASIC_COLOR
[19:47:19] [main/WARN]: Found okay program match for malilib:pipeline/position_color/translucent/lequal_depth/offset_2: BASIC_COLOR
[19:47:19] [main/WARN]: Found okay program match for malilib:pipeline/position_color/translucent/lequal_depth/offset_3: BASIC_COLOR
[19:47:19] [main/WARN]: Found okay program match for malilib:pipeline/position_color/translucent/lequal_depth/no_cull: BASIC_COLOR
[19:47:19] [main/WARN]: Found okay program match for malilib:pipeline/position_color/translucent/lequal_depth: BASIC_COLOR
[19:47:19] [main/WARN]: Found okay program match for malilib:pipeline/position_color/translucent/greater_depth: BASIC_COLOR
[19:47:19] [main/WARN]: Found okay program match for malilib:pipeline/position_color/translucent/depth_mask: BASIC_COLOR
[19:47:19] [main/WARN]: Found okay program match for malilib:pipeline/position_color/translucent: BASIC_COLOR
[19:47:19] [main/WARN]: Found okay program match for malilib:pipeline/position_color/masa/no_depth/no_cull: BASIC_COLOR
[19:47:19] [main/WARN]: Found okay program match for malilib:pipeline/position_color/masa/no_depth: BASIC_COLOR
[19:47:19] [main/WARN]: Found okay program match for malilib:pipeline/position_color/masa/lequal_depth/offset_1: BASIC_COLOR
[19:47:19] [main/WARN]: Found okay program match for malilib:pipeline/position_color/masa/lequal_depth/offset_2: BASIC_COLOR
[19:47:19] [main/WARN]: Found okay program match for malilib:pipeline/position_color/masa/lequal_depth/offset_3: BASIC_COLOR
[19:47:19] [main/WARN]: Found okay program match for malilib:pipeline/position_color/masa/lequal_depth/no_cull: BASIC_COLOR
[19:47:19] [main/WARN]: Found okay program match for malilib:pipeline/position_color/masa/lequal_depth: BASIC_COLOR
[19:47:19] [main/WARN]: Found okay program match for malilib:pipeline/position_color/masa/greater_depth: BASIC_COLOR
[19:47:19] [main/WARN]: Found okay program match for malilib:pipeline/position_color/masa/depth_mask: BASIC_COLOR
[19:47:19] [main/WARN]: Found okay program match for malilib:pipeline/position_color/masa: BASIC_COLOR
[19:47:19] [main/WARN]: Found okay program match for malilib:pipeline/text_plate/no_depth: BASIC_COLOR
[19:47:19] [main/WARN]: Found okay program match for malilib:pipeline/text_plate: BASIC_COLOR
[19:47:19] [main/WARN]: Found okay program match for malilib:pipeline/minihud/shape/no_depth/offset: BASIC_COLOR
[19:47:19] [main/WARN]: Found okay program match for malilib:pipeline/minihud/shape/no_depth: BASIC_COLOR
[19:47:19] [main/WARN]: Found okay program match for malilib:pipeline/minihud/shape/offset/no_cull: BASIC_COLOR
[19:47:19] [main/WARN]: Found okay program match for malilib:pipeline/minihud/shape/offset: BASIC_COLOR
[19:47:19] [main/WARN]: Found okay program match for malilib:pipeline/minihud/shape/depth_mask: BASIC_COLOR
[19:47:19] [main/WARN]: Found okay program match for malilib:pipeline/minihud/shape/no_cull: BASIC_COLOR
[19:47:19] [main/WARN]: Found okay program match for malilib:pipeline/minihud/shape: BASIC_COLOR
[19:47:19] [main/WARN]: Found *decent* program match for malilib:pipeline/position_color_lines/translucent/no_depth/no_cull: LINES
[19:47:19] [main/WARN]: Found *decent* program match for malilib:pipeline/position_color_lines/translucent/no_depth: LINES
[19:47:19] [main/WARN]: Found *decent* program match for malilib:pipeline/position_color_lines/translucent/lequal_depth/offset_1: LINES
[19:47:19] [main/WARN]: Found *decent* program match for malilib:pipeline/position_color_lines/translucent/lequal_depth/offset_2: LINES
[19:47:19] [main/WARN]: Found *decent* program match for malilib:pipeline/position_color_lines/translucent/lequal_depth/offset_3: LINES
[19:47:19] [main/WARN]: Found *decent* program match for malilib:pipeline/position_color_lines/translucent/lequal_depth/no_cull: LINES
[19:47:19] [main/WARN]: Found *decent* program match for malilib:pipeline/position_color_lines/translucent/lequal_depth: LINES
[19:47:19] [main/WARN]: Found *decent* program match for malilib:pipeline/position_color_lines/translucent/greater_depth: LINES
[19:47:19] [main/WARN]: Found *decent* program match for malilib:pipeline/position_color_lines/translucent/depth_mask: LINES
[19:47:19] [main/WARN]: Found *decent* program match for malilib:pipeline/position_color_lines/translucent: LINES
[19:47:19] [main/WARN]: Found *decent* program match for malilib:pipeline/position_color_lines/masa/no_depth/no_cull: LINES
[19:47:19] [main/WARN]: Found *decent* program match for malilib:pipeline/position_color_lines/masa/no_depth: LINES
[19:47:19] [main/WARN]: Found *decent* program match for malilib:pipeline/position_color_lines/masa/lequal_depth/offset_1: LINES
[19:47:19] [main/WARN]: Found *decent* program match for malilib:pipeline/position_color_lines/masa/lequal_depth/offset_2: LINES
[19:47:19] [main/WARN]: Found *decent* program match for malilib:pipeline/position_color_lines/masa/lequal_depth/offset_3: LINES
[19:47:19] [main/WARN]: Found *decent* program match for malilib:pipeline/position_color_lines/masa/lequal_depth/no_cull: LINES
[19:47:19] [main/WARN]: Found *decent* program match for malilib:pipeline/position_color_lines/masa/lequal_depth: LINES
[19:47:19] [main/WARN]: Found *decent* program match for malilib:pipeline/position_color_lines/masa/greater_depth: LINES
[19:47:19] [main/WARN]: Found *decent* program match for malilib:pipeline/position_color_lines/masa/depth_mask: LINES
[19:47:19] [main/WARN]: Found *decent* program match for malilib:pipeline/position_color_lines/masa: LINES
[19:47:19] [main/WARN]: Found *decent* program match for malilib:pipeline/minihud/shape_lines/no_depth/offset: LINES
[19:47:19] [main/WARN]: Found *decent* program match for malilib:pipeline/minihud/shape_lines/no_depth: LINES
[19:47:19] [main/WARN]: Found *decent* program match for malilib:pipeline/minihud/shape_lines/offset/no_cull: LINES
[19:47:19] [main/WARN]: Found *decent* program match for malilib:pipeline/minihud/shape_lines/offset: LINES
[19:47:19] [main/WARN]: Found *decent* program match for malilib:pipeline/minihud/shape_lines/depth_mask: LINES
[19:47:19] [main/WARN]: Found *decent* program match for malilib:pipeline/minihud/shape_lines/no_cull: LINES
[19:47:19] [main/WARN]: Found *decent* program match for malilib:pipeline/minihud/shape_lines: LINES
[19:47:19] [main/WARN]: Found okay program match for malilib:pipeline/position_tex_color/translucent/no_depth/no_cull: TEXTURED_COLOR
[19:47:19] [main/WARN]: Found okay program match for malilib:pipeline/position_tex_color/translucent/no_depth: TEXTURED_COLOR
[19:47:19] [main/WARN]: Found okay program match for malilib:pipeline/position_tex_color/translucent/lequal_depth/offset_1: TEXTURED_COLOR
[19:47:19] [main/WARN]: Found okay program match for malilib:pipeline/position_tex_color/translucent/lequal_depth/offset_2: TEXTURED_COLOR
[19:47:19] [main/WARN]: Found okay program match for malilib:pipeline/position_tex_color/translucent/lequal_depth/offset_3: TEXTURED_COLOR
[19:47:19] [main/WARN]: Found okay program match for malilib:pipeline/position_tex_color/translucent/lequal_depth/no_cull: TEXTURED_COLOR
[19:47:19] [main/WARN]: Found okay program match for malilib:pipeline/position_tex_color/translucent/lequal_depth: TEXTURED_COLOR
[19:47:19] [main/WARN]: Found okay program match for malilib:pipeline/position_tex_color/translucent/greater_depth: TEXTURED_COLOR
[19:47:19] [main/WARN]: Found okay program match for malilib:pipeline/position_tex_color/translucent/depth_mask: TEXTURED_COLOR
[19:47:19] [main/WARN]: Found okay program match for malilib:pipeline/position_tex_color/translucent: TEXTURED_COLOR
[19:47:19] [main/WARN]: Found okay program match for malilib:pipeline/position_tex_color/masa/no_depth/no_cull: TEXTURED_COLOR
[19:47:19] [main/WARN]: Found okay program match for malilib:pipeline/position_tex_color/masa/no_depth: TEXTURED_COLOR
[19:47:19] [main/WARN]: Found okay program match for malilib:pipeline/position_tex_color/masa/lequal_depth/offset_1: TEXTURED_COLOR
[19:47:19] [main/WARN]: Found okay program match for malilib:pipeline/position_tex_color/masa/lequal_depth/offset_2: TEXTURED_COLOR
[19:47:19] [main/WARN]: Found okay program match for malilib:pipeline/position_tex_color/masa/lequal_depth/offset_3: TEXTURED_COLOR
[19:47:19] [main/WARN]: Found okay program match for malilib:pipeline/position_tex_color/masa/lequal_depth/no_cull: TEXTURED_COLOR
[19:47:19] [main/WARN]: Found okay program match for malilib:pipeline/position_tex_color/masa/lequal_depth: TEXTURED_COLOR
[19:47:19] [main/WARN]: Found okay program match for malilib:pipeline/position_tex_color/masa/greater_depth: TEXTURED_COLOR
[19:47:19] [main/WARN]: Found okay program match for malilib:pipeline/position_tex_color/masa/depth_mask: TEXTURED_COLOR
[19:47:19] [main/WARN]: Found okay program match for malilib:pipeline/position_tex_color/masa: TEXTURED_COLOR
[19:47:19] [main/WARN]: Found *decent* program match for malilib:pipeline/debug_lines/translucent/no_depth/no_cull: LINES
[19:47:19] [main/WARN]: Found *decent* program match for malilib:pipeline/debug_lines/translucent/no_depth: LINES
[19:47:19] [main/WARN]: Found *decent* program match for malilib:pipeline/debug_lines/translucent/no_cull: LINES
[19:47:19] [main/WARN]: Found *decent* program match for malilib:pipeline/debug_lines/translucent/lequal_depth: LINES
[19:47:19] [main/WARN]: Found *decent* program match for malilib:pipeline/debug_lines/translucent/offset_1: LINES
[19:47:19] [main/WARN]: Found *decent* program match for malilib:pipeline/debug_lines/translucent/offset_2: LINES
[19:47:19] [main/WARN]: Found *decent* program match for malilib:pipeline/debug_lines/translucent/offset_3: LINES
[19:47:19] [main/WARN]: Found *decent* program match for malilib:pipeline/debug_lines/translucent: LINES
[19:47:19] [main/WARN]: Found *decent* program match for malilib:pipeline/debug_lines/masa_simple/no_depth/no_cull: LINES
[19:47:19] [main/WARN]: Found *decent* program match for malilib:pipeline/debug_lines/masa_simple/no_depth: LINES
[19:47:19] [main/WARN]: Found *decent* program match for malilib:pipeline/debug_lines/masa_simple/no_cull: LINES
[19:47:19] [main/WARN]: Found *decent* program match for malilib:pipeline/debug_lines/masa_simple/lequal_depth: LINES
[19:47:19] [main/WARN]: Found *decent* program match for malilib:pipeline/debug_lines/masa_simple/offset_1: LINES
[19:47:19] [main/WARN]: Found *decent* program match for malilib:pipeline/debug_lines/masa_simple/offset_2: LINES
[19:47:19] [main/WARN]: Found *decent* program match for malilib:pipeline/debug_lines/masa_simple/offset_3: LINES
[19:47:19] [main/WARN]: Found *decent* program match for malilib:pipeline/debug_lines/masa_simple: LINES
[19:47:19] [main/WARN]: Found *decent* program match for malilib:pipeline/debug_line_strip/translucent/no_depth/no_cull: LINES
[19:47:19] [main/WARN]: Found *decent* program match for malilib:pipeline/debug_line_strip/translucent/no_depth: LINES
[19:47:19] [main/WARN]: Found *decent* program match for malilib:pipeline/debug_line_strip/translucent/no_cull: LINES
[19:47:19] [main/WARN]: Found *decent* program match for malilib:pipeline/debug_line_strip/translucent/offset_1: LINES
[19:47:19] [main/WARN]: Found *decent* program match for malilib:pipeline/debug_line_strip/translucent/offset_2: LINES
[19:47:19] [main/WARN]: Found *decent* program match for malilib:pipeline/debug_line_strip/translucent/offset_3: LINES
[19:47:19] [main/WARN]: Found *decent* program match for malilib:pipeline/debug_line_strip/translucent: LINES
[19:47:19] [main/WARN]: Found *decent* program match for malilib:pipeline/debug_line_strip/masa_simple/no_depth/no_cull: LINES
[19:47:19] [main/WARN]: Found *decent* program match for malilib:pipeline/debug_line_strip/masa_simple/no_depth: LINES
[19:47:19] [main/WARN]: Found *decent* program match for malilib:pipeline/debug_line_strip/masa_simple/no_cull: LINES
[19:47:19] [main/WARN]: Found *decent* program match for malilib:pipeline/debug_line_strip/masa_simple/offset_1: LINES
[19:47:19] [main/WARN]: Found *decent* program match for malilib:pipeline/debug_line_strip/masa_simple/offset_2: LINES
[19:47:19] [main/WARN]: Found *decent* program match for malilib:pipeline/debug_line_strip/masa_simple/offset_3: LINES
[19:47:19] [main/WARN]: Found *decent* program match for malilib:pipeline/debug_line_strip/masa_simple: LINES
[19:47:19] [main/WARN]: Found okay program match for malilib:pipeline/gui_overlay: BASIC_COLOR
[19:47:19] [main/WARN]: Found okay program match for malilib:pipeline/gui_textured_overlay: TEXTURED_COLOR
[19:47:19] [main/WARN]: Found *decent* program match for malilib:pipeline/solid_terrain/masa: TERRAIN_SOLID
[19:47:19] [main/WARN]: Found *decent* program match for malilib:pipeline/wireframe/masa: LINES
[19:47:19] [main/WARN]: Found fine program match for malilib:pipeline/cutout_terrain/masa: TERRAIN_CUTOUT
[19:47:19] [main/WARN]: Found *decent* program match for malilib:pipeline/translucent/masa: TERRAIN_TRANSLUCENT
[19:47:19] [main/WARN]: Found *decent* program match for malilib:pipeline/tripwire_terran/masa: TERRAIN_TRANSLUCENT
[19:47:19] [main/WARN]: Found *decent* program match for malilib:pipeline/solid_terrain/masa/offset: TERRAIN_SOLID
[19:47:19] [main/WARN]: Found *decent* program match for malilib:pipeline/wireframe/masa/offset: LINES
[19:47:19] [main/WARN]: Found fine program match for malilib:pipeline/cutout_terrain/masa/offset: TERRAIN_CUTOUT
[19:47:19] [main/WARN]: Found *decent* program match for malilib:pipeline/translucent/masa/offset: TERRAIN_TRANSLUCENT
[19:47:19] [main/WARN]: Found *decent* program match for malilib:pipeline/tripwire_terrain/masa/offset: TERRAIN_TRANSLUCENT
[19:47:19] [main/WARN]: Found *decent* program match for malilib:pipeline/solid_block/masa: MOVING_BLOCK
[19:47:19] [main/WARN]: Found fine program match for malilib:pipeline/cutout_block/masa: TERRAIN_CUTOUT
[19:47:19] [main/WARN]: Found fine program match for malilib:pipeline/tripwire_block/masa: TEXT_BE
[19:47:19] [main/WARN]: Found *decent* program match for malilib:pipeline/solid_block/masa/offset: MOVING_BLOCK
[19:47:19] [main/WARN]: Found fine program match for malilib:pipeline/cutout_block/masa/offset: TERRAIN_CUTOUT
[19:47:19] [main/WARN]: Found fine program match for malilib:pipeline/tripwire_block/masa/offset: TEXT_BE
[19:47:19] [main/WARN]: Found *decent* program match for malilib:pipeline/legacy/solid/masa: TERRAIN_SOLID
[19:47:19] [main/WARN]: Found *decent* program match for malilib:pipeline/legacy/wireframe/masa: LINES
[19:47:19] [main/WARN]: Found fine program match for malilib:pipeline/legacy/cutout/masa: TERRAIN_CUTOUT
[19:47:19] [main/WARN]: Found *decent* program match for malilib:pipeline/legacy/translucent/masa: TERRAIN_TRANSLUCENT
[19:47:19] [main/WARN]: Found *decent* program match for malilib:pipeline/legacy/tripwire/masa: TERRAIN_TRANSLUCENT
[19:47:19] [main/WARN]: Found *decent* program match for malilib:pipeline/legacy/solid/masa/offset: TERRAIN_SOLID
[19:47:19] [main/WARN]: Found *decent* program match for malilib:pipeline/legacy/wireframe/masa/offset: LINES
[19:47:19] [main/WARN]: Found fine program match for malilib:pipeline/legacy/cutout/masa/offset: TERRAIN_CUTOUT
[19:47:19] [main/WARN]: Found *decent* program match for malilib:pipeline/legacy/translucent/masa/offset: TERRAIN_TRANSLUCENT
[19:47:19] [main/WARN]: Found *decent* program match for malilib:pipeline/legacy/tripwire/masa/offset: TERRAIN_TRANSLUCENT
[19:47:20] [Render thread/INFO]: Environment: Environment[sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, profilesHost=https://api.mojang.com, name=PROD]
[19:47:20] [Render thread/INFO]: Setting user: BlueberryShayoka
[19:47:20] [Render thread/INFO]: Starting DI!
[19:47:20] [Render thread/INFO]: Authenticating to Mojang as BlueberryShayoka (331f54a4-e7e5-4db8-9b70-bcf9b44da787)
[19:47:21] [Render thread/INFO]: Registering custom argument type.
[19:47:21] [Render thread/INFO]: Checking config file integrity.
[19:47:21] [Render thread/INFO]: Config file is valid.
[19:47:21] [Render thread/INFO]: Registering commands.
[19:47:21] [Render thread/INFO]: Launching AutoModpack...
[19:47:21] [Render thread/WARN]: @Redirect conflict. Skipping raknetify-fabric.mixins.json:server.MixinServerLoginNetworkHandler from mod raknetify->@Redirect::stopCompressionIfStreamingCompressionExists(Lnet/minecraft/server/MinecraftServer;)I with priority 900, already redirected by fabric-networking-api-v1.mixins.json:ServerLoginPacketListenerImplMixin from mod fabric-networking-api-v1->@Redirect::removeLateCompressionPacketSending(Lnet/minecraft/server/MinecraftServer;)I with priority 1000
[19:47:21] [Render thread/INFO]: AutoModpack launched! took 43ms
[19:47:21] [DefaultDispatcher-worker-3/INFO]: Connecting to Essential Connection Manager...
[19:47:21] [Render thread/INFO]: Loading Collective version 8.22.
[19:47:21] [DefaultDispatcher-worker-3/INFO]: Using Default JreDnsResolver
[19:47:21] [DefaultDispatcher-worker-3/INFO]: Using Default JreSocketFactory
[19:47:21] [Render thread/INFO]: Constructing components for easyshulkerboxes:common
[19:47:21] [Render thread/INFO]: Config file C:\Users\Blueb\Desktop\MultiMC\instances\Blue\.minecraft\config\endless_inventory-server.json not found. Defaults will be used.
[19:47:22] [WebSocketConnectReadThread-136/INFO]: Connected to Essential Connection Manager.
[19:47:22] [Thread-28/WARN]: [Update] Collective has an update available: 8.22 -> 8.25
[19:47:22] [Render thread/INFO]: Constructing components for iteminteractions:common
[19:47:22] [Render thread/INFO]: Dispatching loading event for config iteminteractions-client.toml
[19:47:22] [Render thread/INFO]: Constructing components for puzzleslib:common
[19:47:22] [Render thread/INFO]: Hello Fabric world!
[19:47:22] [Render thread/INFO]: Initializing Silk
[19:47:22] [Render thread/INFO]: [STDOUT]: [UncraftEverything] Config file watcher registered
[19:47:22] [Render thread/INFO]: Constructing components for universalenchants:common
[19:47:22] [Render thread/INFO]: Veinminer Version: 2.5.2 (fabric)
[19:47:22] [Render thread/INFO]: AddonsLib Fabric !
[19:47:23] [Render thread/INFO]: Initializing platform helper for Advanced Netherite!
[19:47:23] [DefaultDispatcher-worker-3/INFO]: [STDOUT]: [VeinminerUpdater] veinminer is outdated (1.21.11). Installed: 2.5.2 -> Latest: 2.10.3
[19:47:23] [FileWatcher-1-thread-1/INFO]: [STDOUT]: [UncraftEverything] Config file changed, reloading...
[19:47:23] [FileWatcher-1-thread-1/INFO]: [STDOUT]: [UncraftEverything] Config reloaded successfully
[19:47:23] [Render thread/INFO]: Registered ALI plugin [ali] com.yanny.ali.plugin.Plugin
[19:47:23] [Render thread/INFO]: Found 1 plugin(s)
[19:47:23] [Render thread/INFO]: Registering common plugin data...
[19:47:23] [Render thread/INFO]: Loading configuration file C:\Users\Blueb\Desktop\MultiMC\instances\Blue\.minecraft\config\ali\ali_common.json
[19:47:23] [Render thread/INFO]: Registered 1 entity variants
[19:47:23] [Render thread/INFO]: Registering common plugin data finished
[19:47:23] [Render thread/INFO]: Almanac Fabric config reloaded, cache cleared
[19:47:23] [Render thread/INFO]: Almanac Fabric config initialized
[19:47:23] [Render thread/INFO]: Almanac initialized
[19:47:23] [Render thread/INFO]: [Animal Feeding Trough] Load Complete! Enjoy :D
[19:47:23] [Render thread/INFO]: [STDOUT]: All 4 have been set properly
[19:47:23] [Render thread/INFO]: [STDOUT]: animalgarden_manatee: register everything...
[19:47:23] [Render thread/INFO]: [STDOUT]: All 4 have been set properly
[19:47:23] [Render thread/INFO]: [STDOUT]: animalgarden_meerkat: register everything...
[19:47:23] [Render thread/INFO]: [STDOUT]: All 4 have been set properly
[19:47:23] [Render thread/INFO]: [STDOUT]: animalgarden_mouse: register everything...
[19:47:23] [Render thread/INFO]: [STDOUT]: All 4 have been set properly
[19:47:23] [Render thread/INFO]: [STDOUT]: forest
[19:47:23] [Render thread/INFO]: [STDOUT]: flower_forest
[19:47:23] [Render thread/INFO]: [STDOUT]: birch_forest
[19:47:23] [Render thread/INFO]: [STDOUT]: old_growth_birch_forest
[19:47:23] [Render thread/INFO]: [STDOUT]: snowy_taiga
[19:47:23] [Render thread/INFO]: [STDOUT]: animalgarden_owl: register everything...
[19:47:23] [Render thread/INFO]: [STDOUT]: All 4 have been set properly
[19:47:23] [Render thread/INFO]: [STDOUT]: forest
[19:47:23] [Render thread/INFO]: [STDOUT]: flower_forest
[19:47:23] [Render thread/INFO]: [STDOUT]: birch_forest
[19:47:23] [Render thread/INFO]: [STDOUT]: old_growth_birch_forest
[19:47:23] [Render thread/INFO]: [STDOUT]: animalgarden_porcupine: register everything...
[19:47:23] [Render thread/INFO]: [STDOUT]: All 8 have been set properly
[19:47:23] [Render thread/INFO]: [STDOUT]: animalgarden_redpanda: register everything...
[19:47:23] [Render thread/INFO]: [STDOUT]: All 7 have been set properly
[19:47:23] [Render thread/INFO]: [STDOUT]: animalgarden_seaotter: register everything...
[19:47:23] [Render thread/INFO]: Constructing components for arcanelanterns:common
[19:47:23] [Render thread/INFO]: No material packs found in basicweapons_materialpacks
[19:47:23] [Render thread/INFO]: - Basic Weapons Loaded -
[19:47:24] [Render thread/INFO]: Biolith for Fabric is initializing...
[19:47:24] [Render thread/INFO]: Enabling Biolith's TerraBlender compatibility layer.
[19:47:24] [Render thread/INFO]: Initializing network...
[19:47:24] [Render thread/INFO]: Initialized network!
[19:47:24] [Render thread/INFO]: Registering Oh The Biomes We've Gone data components
[19:47:24] [Render thread/INFO]: Registering Oh The Biomes We've Gone items
[19:47:24] [Render thread/INFO]: Registering Oh The Biomes We've Gone Blocks
[19:47:24] [Render thread/INFO]: Registering Oh The Biomes We've Gone Wood
[19:47:24] [Render thread/INFO]: Registering Oh The Biomes We've Gone Block Entities
[19:47:24] [Render thread/INFO]: Registering Oh The Biomes We've Gone Entities
[19:47:24] [Render thread/INFO]: Registering Oh The Biomes We've Gone Creative Tabs
[19:47:24] [Render thread/INFO]: Registering Oh The Biomes We've Gone Sounds
[19:47:24] [Render thread/INFO]: Registering Oh The Biomes We've Gone Block Predicate
[19:47:24] [Render thread/INFO]: Registering Oh The Biomes We've Gone State Providers
[19:47:24] [Render thread/INFO]: Registering Oh The Biomes We've Gone Tree Decorators
[19:47:24] [Render thread/INFO]: Registering Oh The Biomes We've Gone Custom Features
[19:47:24] [Render thread/INFO]: Registering Oh The Biomes We've Gone Structure Pieces
[19:47:24] [Render thread/INFO]: Registering Oh The Biomes We've Gone Custom Structure Types
[19:47:24] [Render thread/INFO]: Registering Oh The Biomes We've Gone Configured Features
[19:47:24] [Render thread/INFO]: Creating and Registering Overworld Vegetation Configured Features
[19:47:24] [Render thread/INFO]: Registering Oh The Biomes We've Gone Tree Configured Features
[19:47:24] [Render thread/INFO]: Creating and Registering Vanilla Configured Features
[19:47:24] [Render thread/INFO]: Registering Oh The Biomes You'll Go Overworld Configured Features
[19:47:24] [Render thread/INFO]: Registering Oh The Biomes We've Gone Placed Features
[19:47:24] [Render thread/INFO]: Creating and Registering Overworld Tree Placed Features
[19:47:24] [Render thread/INFO]: Creating and Registering Overworld Vegetation Placed Features
[19:47:24] [Render thread/INFO]: Creating and Registering Vanilla Placed Features
[19:47:24] [Render thread/INFO]: Registering Oh The Biomes We've Gone Custom Surface Rules
[19:47:24] [Render thread/INFO]: Registering Oh The Biomes We've Gone Template Pools
[19:47:24] [Render thread/INFO]: Registering Oh The Biome's We've Gone Village Template Pools
[19:47:24] [Render thread/INFO]: Registering Oh The Biomes We've Gone Poi Types
[19:47:24] [Render thread/INFO]: Registering Oh The Biomes We've Gone Villager Professions
[19:47:24] [Render thread/INFO]: Registering Oh The Biomes We've Gone Custom Structure Processors
[19:47:24] [Render thread/INFO]: Registering Oh The Biomes We've Gone villager types
[19:47:24] [Render thread/INFO]: Registering Biomes We've Gone Environment Attributes
[19:47:24] [Render thread/INFO]: Registering Oh The Biomes We've Gone Timelines
[19:47:24] [Render thread/INFO]: Registering Oh The Biomes We've Gone Memory Module Types
[19:47:24] [Render thread/INFO]: Registering Oh The Biomes We've Gone Sensor Types
[19:47:24] [Render thread/INFO]: Registering Oh The Biomes We've Gone Map Decoration Types
[19:47:24] [Render thread/INFO]: Creating and Registering BWG Biome Modifiers for Vanilla Biomes
[19:47:24] [Render thread/WARN]: PLAINS villager type not found in EmeraldsForVillagerTypeItem trade map, cannot add fallbacks
[19:47:24] [Render thread/INFO]: Constructing components for blockrunner:common
[19:47:24] [Render thread/INFO]: Dispatching loading event for config blockrunner-client.toml
[19:47:24] [Render thread/INFO]: - Bronze Loaded -
[19:47:26] [Render thread/INFO]: [Coins] Mod loaded.
[19:47:26] [Render thread/INFO]: Initialized entity types.
[19:47:26] [Render thread/INFO]: Register Custom Payloads for Networking.
[19:47:26] [Render thread/INFO]: Registering Item Groups for cratedelight
[19:47:26] [Render thread/INFO]: Registering mod blocks for cratedelight
[19:47:26] [Render thread/INFO]: Loaded config for: cupboard.json
[19:47:26] [Render thread/INFO]: Constructing components for cutthrough:common
[19:47:26] [Render thread/INFO]: Dispatching loading event for config cutthrough-client.toml
[19:47:26] [Render thread/INFO]: Initializing Decocraft mod
[19:47:26] [Render thread/INFO]: Initializing ModuleBlocks...
[19:47:26] [Render thread/INFO]: Starting Decocraft block registration...
[19:47:26] [Render thread/INFO]: [STDOUT]: [JsonParser] Resource not found (may be from optional addon): assets/decocraft/paintings.json
[19:47:26] [Render thread/INFO]: Skipping missing optional file: paintings.json
[19:47:26] [Render thread/INFO]: Starting batched async model loading for 3527 entries...
[19:47:26] [Render thread/INFO]: Loading 634 unique models in batches of 50
[19:47:26] [Render thread/INFO]: Loading batch 1/13 (50 models)
[19:47:27] [Render thread/INFO]: Loading batch 2/13 (50 models)
[19:47:27] [Render thread/INFO]: Loading batch 3/13 (50 models)
[19:47:27] [Render thread/INFO]: Loading batch 4/13 (50 models)
[19:47:27] [Render thread/INFO]: Loading batch 5/13 (50 models)
[19:47:27] [Render thread/INFO]: Loading batch 6/13 (50 models)
[19:47:27] [Render thread/INFO]: Loading batch 7/13 (50 models)
[19:47:27] [Render thread/INFO]: Loading batch 8/13 (50 models)
[19:47:27] [Render thread/INFO]: Loading batch 9/13 (50 models)
[19:47:27] [Render thread/INFO]: Loading batch 10/13 (50 models)
[19:47:27] [Render thread/INFO]: Loading batch 11/13 (50 models)
[19:47:27] [Render thread/INFO]: Loading batch 12/13 (50 models)
[19:47:27] [Render thread/INFO]: Loading batch 13/13 (34 models)
[19:47:27] [Render thread/INFO]: Successfully cached 634 models
[19:47:27] [Render thread/INFO]: Model loading completed in 908ms
[19:47:28] [Render thread/INFO]: Starting BlockItem registration for 3527 blocks...
[19:47:28] [Render thread/INFO]: Registered BlockItem: locker_red -> block: DecoStorageBlock
[19:47:28] [Render thread/INFO]: Registered 3218 BlockItems successfully, skipped 309 hidden blocks
[19:47:28] [Render thread/INFO]: Decocraft block registration complete - processed 3527 entries in 1241ms
[19:47:28] [Render thread/INFO]: Initializing ModuleItems...
[19:47:28] [Render thread/INFO]: ModuleItems initialized
[19:47:28] [Render thread/INFO]: Initializing ModuleEntities...
[19:47:28] [Render thread/INFO]: ModuleEntities initialized
[19:47:28] [Render thread/INFO]: Initializing ModuleTileEntities...
[19:47:28] [Render thread/INFO]: ModuleTileEntities initialized
[19:47:28] [Render thread/INFO]: Initializing ModuleSounds...
[19:47:28] [Render thread/INFO]: ModuleSounds initialized
[19:47:28] [Render thread/INFO]: Initializing ModuleScreenHandlers...
[19:47:28] [Render thread/INFO]: ModuleScreenHandlers initialized
[19:47:28] [Render thread/INFO]: Initializing ModuleParticleTypes...
[19:47:28] [Render thread/INFO]: ModuleParticleTypes initialized
[19:47:28] [Render thread/INFO]: Initializing Creative Tabs...
[19:47:28] [Render thread/INFO]: Registering network packets...
[19:47:28] [Render thread/INFO]: Decocraft mod initialization complete
[19:47:28] [Render thread/INFO]: Initializing Decocraft mod
[19:47:28] [Render thread/INFO]: Initializing ModuleBlocks...
[19:47:28] [Render thread/INFO]: Starting Decocraft block registration...
[19:47:28] [Render thread/INFO]: Starting batched async model loading for 614 entries...
[19:47:28] [Render thread/INFO]: Loading 287 unique models in batches of 50
[19:47:28] [Render thread/INFO]: Loading batch 1/6 (50 models)
[19:47:28] [Render thread/INFO]: Loading batch 2/6 (50 models)
[19:47:28] [Render thread/INFO]: Loading batch 3/6 (50 models)
[19:47:28] [Render thread/INFO]: Loading batch 4/6 (50 models)
[19:47:28] [Render thread/INFO]: Loading batch 5/6 (50 models)
[19:47:28] [Render thread/INFO]: Loading batch 6/6 (37 models)
[19:47:28] [Render thread/INFO]: Successfully cached 287 models
[19:47:28] [Render thread/INFO]: Model loading completed in 282ms
[19:47:28] [Render thread/INFO]: Starting BlockItem registration for 614 blocks...
[19:47:28] [Render thread/INFO]: Registered 606 BlockItems successfully, skipped 8 hidden blocks
[19:47:28] [Render thread/INFO]: Decocraft block registration complete - processed 614 entries in 400ms
[19:47:28] [Render thread/INFO]: Initializing ModuleItems...
[19:47:28] [Render thread/INFO]: ModuleItems initialized
[19:47:28] [Render thread/INFO]: Initializing ModuleEntities...
[19:47:28] [Render thread/INFO]: ModuleEntities initialized
[19:47:28] [Render thread/INFO]: Initializing ModuleTileEntities...
[19:47:28] [Render thread/INFO]: ModuleTileEntities initialized
[19:47:28] [Render thread/INFO]: Initializing ModuleSounds...
[19:47:28] [Render thread/INFO]: ModuleSounds initialized
[19:47:28] [Render thread/INFO]: Initializing ModuleScreenHandlers...
[19:47:28] [Render thread/INFO]: ModuleScreenHandlers initialized
[19:47:28] [Render thread/INFO]: Initializing ModuleParticleTypes...
[19:47:28] [Render thread/INFO]: ModuleParticleTypes initialized (no particles for nature)
[19:47:28] [Render thread/INFO]: Initializing Creative Tabs...
[19:47:28] [Render thread/INFO]: Registering network packets...
[19:47:28] [Render thread/INFO]: Decocraft-Nature mod initialization complete
[19:47:28] [Render thread/INFO]: Initialized Farmers Delight compatibility
[19:47:28] [Render thread/INFO]: Initialized Oceans Delight compatibility
[19:47:28] [Render thread/INFO]: Initialized Pineapple Delight compatibility
[19:47:28] [Render thread/INFO]: Initialized Corn Delight compatibility
[19:47:28] [Render thread/INFO]: Initialized End's Delight compatibility
[19:47:28] [Render thread/INFO]: Initialized My Nether's Delight compatibility
[19:47:28] [Render thread/INFO]: Initialized Expanded Delight compatibility
[19:47:28] [Render thread/INFO]: Initialized Delightful compatibility
[19:47:28] [Render thread/INFO]: Initialized Alex Delight compatibility
[19:47:28] [Render thread/INFO]: Initialized Cultural Delight compatibility
[19:47:28] [Render thread/INFO]: Initialized Large Meals compatibility
[19:47:28] [Render thread/INFO]: Initialized Festive Delight compatibility
[19:47:28] [Render thread/INFO]: Initialized Ender Delight compatibility
[19:47:28] [Render thread/INFO]: Initialized Aquaculture Delight compatibility
[19:47:28] [Render thread/INFO]: Initialized Brewin n Chewin compatibility
[19:47:28] [Render thread/INFO]: Initialized Crabber's Delight compatibility
[19:47:28] [Render thread/INFO]: Initialized Display Delight Blocks
[19:47:28] [Render thread/INFO]: Initialized Display Delight
[19:47:28] [Render thread/INFO]: [DRIPPY LOADING SCREEN] Loading v3.1.1 in client-side mode on FABRIC!
[19:47:28] [Render thread/INFO]: Constructing components for easymagic:common
[19:47:28] [Render thread/INFO]: Dispatching loading event for config easymagic-client.toml
[19:47:28] [Render thread/INFO]: EmojiType initializing...
[19:47:28] [Render thread/INFO]: Loaded config with 3 enabled packs
[19:47:28] [Render thread/INFO]: Loaded pack: letters.yaml (Letter Emojis) [bundled]
[19:47:28] [Render thread/INFO]: Loaded pack: minecraft.yaml (Minecraft Emojis) [bundled]
[19:47:28] [Render thread/INFO]: Loaded pack: text_art_faces.yaml (Text Art Faces) [bundled]
[19:47:28] [Render thread/INFO]: Reloaded 204 active emojis
[19:47:28] [Render thread/INFO]: EmojiType initialized with 204 emojis from 3 packs
[19:47:28] [Render thread/INFO]: Deserializing EnderscapeConfig from 'C:\Users\Blueb\Desktop\MultiMC\instances\Blue\.minecraft\config\enderscape.json5'
[19:47:29] [Render thread/ERROR]: No data fixer registered for magnia_sprout
[19:47:29] [Render thread/ERROR]: No data fixer registered for magnia_radio
[19:47:29] [Render thread/INFO]: Enderscape initialized!
[19:47:29] [Render thread/INFO]: Constructing components for eternalnether:common
[19:47:29] [Render thread/INFO]: Enchanted Vertical Slabs is loading in a Fabric environment!
[19:47:29] [Render thread/INFO]: [FANCYMENU] Loading v3.8.4 in client-side mode on FABRIC!
[19:47:29] [Render thread/INFO]: [FANCYMENU] Registering FancyMenu's resource reload listener via Fabric API..
[19:47:29] [Render thread/INFO]: Loaded config farmersdelight-common.json
[19:47:29] [Render thread/INFO]: Loaded config farmersdelight-client.json
[19:47:29] [Render thread/INFO]: Constructing components for fastitemframes:common
[19:47:29] [Render thread/INFO]: Dispatching loading event for config fastitemframes-client.toml
[19:47:30] [Render thread/INFO]: Registering Block
[19:47:30] [Render thread/INFO]: Registering Item
[19:47:30] [Render thread/INFO]: Registering Data Component Predicate
[19:47:30] [Render thread/INFO]: Registering Block Entity
[19:47:30] [Render thread/INFO]: Registering Sound Event
[19:47:30] [Render thread/INFO]: Registering Entity
[19:47:30] [Render thread/INFO]: Registering Sensor Type
[19:47:30] [Render thread/INFO]: Registering Memory Module Type
[19:47:30] [Render thread/INFO]: Registering Feature
[19:47:30] [Render thread/INFO]: Registering Trunk Placer Type
[19:47:30] [Render thread/INFO]: Registering Tree Decorator Type
[19:47:30] [Render thread/INFO]: Registering Trigger Type
[19:47:30] [Render thread/INFO]: Registering Block State Provider Type
[19:47:30] [Render thread/INFO]: Registering Block Predicate Type
[19:47:30] [Render thread/INFO]: Registering Loot Pool Entry Type
[19:47:30] [Render thread/INFO]: Registering Structure Type
[19:47:30] [Render thread/INFO]: Registering Structure Piece Type
[19:47:30] [Render thread/INFO]: Registering Entity Data Serializer
[19:47:30] [Render thread/INFO]: Registering Loot Item Condition
[19:47:30] [Render thread/INFO]: Registering Trigger Type
[19:47:30] [Render thread/INFO]: Registering Entity Sub Predicate
[19:47:30] [Render thread/INFO]: Registering Data Component Type
[19:47:30] [Render thread/INFO]: Registering Spawn Condition
[19:47:30] [Render thread/INFO]: Registering Mob Effect
[19:47:30] [Render thread/INFO]: Registering Placement Modifier
[19:47:30] [Render thread/INFO]: Registering Surface Rule Condition Source
[19:47:30] [Render thread/INFO]: Registering Environment Attribute
[19:47:30] [Render thread/INFO]: Registering Debug Subscriptions
[19:47:30] [Render thread/INFO]: Registering Poi Types
[19:47:30] [Render thread/INFO]: Registering Map Decoration Types
[19:47:30] [Render thread/INFO]: Registering Loot Item Function
[19:47:30] [Render thread/INFO]: Registering Game Rules
[19:47:30] [Render thread/INFO]: Registering Mod Items for flora
[19:47:30] [Render thread/INFO]: blocks for flora
[19:47:30] [Render thread/INFO]: registering block entities flora
[19:47:30] [Render thread/INFO]: Registering Item Groups for flora
[19:47:30] [Render thread/INFO]: Registering Mod Items for flora
[19:47:30] [Render thread/INFO]: Deserializing FriendsAndFoesConfig from 'config\friendsandfoes.json'
[19:47:30] [Render thread/INFO]: Initializing GiantCherryBlossomBonsaiTreeMod
[19:47:30] [Render thread/INFO]: Registered synced config with path sereneseasons/fertility.toml
[19:47:30] [Render thread/INFO]: Registered synced config with path sereneseasons/seasons.toml
[19:47:30] [Render thread/INFO]: Initializing Gravestones
[19:47:30] [Render thread/INFO]: Constructing components for illagerinvasion:common
[19:47:30] [Render thread/INFO]: [STDOUT]: All 43 have been set properly
Jun 09, 2026 7:47:30 PM com.blocklegend001.immersiveores.item.ModItemGroups registerItemGroups
INFO: Registering Item Groups for immersiveores
Jun 09, 2026 7:47:30 PM com.blocklegend001.immersiveores.item.ModItems registerModItems
INFO: Registering Mod Items for immersiveores
Jun 09, 2026 7:47:30 PM com.blocklegend001.immersiveores.blocks.ModBlocks registerModBlocks
INFO: Registering Mod Blocks for immersiveores
[19:47:30] [Render thread/INFO]: Initializing JamLib on Fabric
[19:47:30] [Render thread/INFO]: [KONKRETE] Loading v1.9.18 in client-side mode on FABRIC!
[19:47:30] [Render thread/INFO]: [KONKRETE] Server-side modules initialized and ready to use!
[19:47:31] [Render thread/INFO]: Injected Lighter End's biomes into Fabric worldgen
[19:47:31] [Render thread/INFO]: Found Animal Feeding Trough, registering variants.
[19:47:31] [Render thread/INFO]: Deserializing MoreChestVariantsConfigYACL from 'C:\Users\Blueb\Desktop\MultiMC\instances\Blue\.minecraft\config\more_chest_variants.json5'
[19:47:31] [Render thread/INFO]: Constructing components for magnumtorch:common
[19:47:31] [Render thread/INFO]: Macaw's Biomes O' Plenty Loading...
[19:47:32] [Render thread/INFO]: Macaw's Biomes O' Plenty Is Charged !
[19:47:32] [Render thread/INFO]: Macaw's Oh The Biomes We've Gone Loading...
[19:47:33] [Render thread/INFO]: Macaw's Oh The Biomes We've Gone Is Charged !
[19:47:34] [Render thread/INFO]: [MELODY] Loading v1.0.15 on FABRIC...
[19:47:34] [Render thread/INFO]: Initializing Mineify - Server-Wide Music Player
[19:47:34] [Render thread/INFO]: Mineify initialized successfully!
[19:47:34] [Render thread/INFO]: Definitely not up to no good
[19:47:34] [Render thread/INFO]: More Villagers block entities registered: com.frikinjay.morevillagers.platform.fabric.CommonPlatformHelperImpl$$Lambda/0x000002312d386d28@7c60bdc
[19:47:34] [Render thread/INFO]: Packet Fixer 3.3.4 Fabric has been initialized!
[19:47:34] [Render thread/INFO]: [STDOUT]: Running Fabric.
[19:47:34] [Render thread/INFO]: Constructing components for pickupnotifier:common
[19:47:34] [Render thread/INFO]: Dispatching loading event for config pickupnotifier-client.toml
[19:47:34] [Render thread/INFO]: [Ping-Wheel] Init
[19:47:34] [Render thread/INFO]: [Ping-Wheel] Loaded ServerConfig(defaultChannelMode=auto, playerTrackingEnabled=true, msToRegenerate=1000, rateLimit=5)
[19:47:34] [Render thread/INFO]: Initializing PneumonoCore
[19:47:34] [Render thread/INFO]: [Quad] Innitialising the Quad mod power running on Fabric! >:P
[19:47:34] [Render thread/INFO]: [STDOUT]: Skipping unmapped packet type: clientbound/create:symmetry_effect
[19:47:34] [Render thread/INFO]: [STDOUT]: Skipping unmapped packet type: clientbound/create:server_speed
[19:47:34] [Render thread/INFO]: [STDOUT]: Skipping unmapped packet type: clientbound/create:beam_effect
[19:47:34] [Render thread/INFO]: [STDOUT]: Skipping unmapped packet type: clientbound/create:contraption_stall
[19:47:34] [Render thread/INFO]: [STDOUT]: Skipping unmapped packet type: clientbound/create:contraption_disassemble
[19:47:34] [Render thread/INFO]: [STDOUT]: Skipping unmapped packet type: clientbound/create:contraption_block_changed
[19:47:34] [Render thread/INFO]: [STDOUT]: Skipping unmapped packet type: clientbound/create:glue_effect
[19:47:34] [Render thread/INFO]: [STDOUT]: Skipping unmapped packet type: clientbound/create:contraption_seat_mapping
[19:47:34] [Render thread/INFO]: [STDOUT]: Skipping unmapped packet type: clientbound/create:limbswing_update
[19:47:34] [Render thread/INFO]: [STDOUT]: Skipping unmapped packet type: clientbound/create:fluid_splash
[19:47:34] [Render thread/INFO]: [STDOUT]: Skipping unmapped packet type: clientbound/create:mounted_storage_sync
[19:47:34] [Render thread/INFO]: [STDOUT]: Skipping unmapped packet type: clientbound/create:gantry_update
[19:47:34] [Render thread/INFO]: [STDOUT]: Skipping unmapped packet type: clientbound/create:block_highlight
[19:47:34] [Render thread/INFO]: [STDOUT]: Skipping unmapped packet type: clientbound/create:tunnel_flap
[19:47:34] [Render thread/INFO]: [STDOUT]: Skipping unmapped packet type: clientbound/create:funnel_flap
[19:47:34] [Render thread/INFO]: [STDOUT]: Skipping unmapped packet type: clientbound/create:potato_cannon
[19:47:34] [Render thread/INFO]: [STDOUT]: Skipping unmapped packet type: clientbound/create:soul_pulse
[19:47:34] [Render thread/INFO]: [STDOUT]: Skipping unmapped packet type: clientbound/create:sync_edge_group
[19:47:34] [Render thread/INFO]: [STDOUT]: Skipping unmapped packet type: clientbound/create:remove_train
[19:47:34] [Render thread/INFO]: [STDOUT]: Skipping unmapped packet type: clientbound/create:remove_te
[19:47:34] [Render thread/INFO]: [STDOUT]: Skipping unmapped packet type: clientbound/create:s_configure_train
[19:47:34] [Render thread/INFO]: [STDOUT]: Skipping unmapped packet type: clientbound/create:controls_abort
[19:47:34] [Render thread/INFO]: [STDOUT]: Skipping unmapped packet type: clientbound/create:s_train_hud
[19:47:34] [Render thread/INFO]: [STDOUT]: Skipping unmapped packet type: clientbound/create:s_train_honk
[19:47:34] [Render thread/INFO]: [STDOUT]: Skipping unmapped packet type: clientbound/create:s_train_prompt
[19:47:34] [Render thread/INFO]: [STDOUT]: Skipping unmapped packet type: clientbound/create:contraption_relocation
[19:47:34] [Render thread/INFO]: [STDOUT]: Skipping unmapped packet type: clientbound/create:track_graph_roll_call
[19:47:34] [Render thread/INFO]: [STDOUT]: Skipping unmapped packet type: clientbound/create:s_place_arm
[19:47:34] [Render thread/INFO]: [STDOUT]: Skipping unmapped packet type: clientbound/create:s_place_ejector
[19:47:34] [Render thread/INFO]: [STDOUT]: Skipping unmapped packet type: clientbound/create:s_place_package_port
[19:47:34] [Render thread/INFO]: [STDOUT]: Skipping unmapped packet type: clientbound/create:update_elevator_floors
[19:47:34] [Render thread/INFO]: [STDOUT]: Skipping unmapped packet type: clientbound/create:contraption_actor_toggle
[19:47:34] [Render thread/INFO]: [STDOUT]: Skipping unmapped packet type: clientbound/create:contraption_collider_lock
[19:47:34] [Render thread/INFO]: [STDOUT]: Skipping unmapped packet type: clientbound/create:attached_computer
[19:47:34] [Render thread/INFO]: [STDOUT]: Skipping unmapped packet type: clientbound/create:server_debug_info
[19:47:34] [Render thread/INFO]: [STDOUT]: Skipping unmapped packet type: clientbound/create:package_destroyed
[19:47:34] [Render thread/INFO]: [STDOUT]: Skipping unmapped packet type: clientbound/create:logistics_stock_response
[19:47:34] [Render thread/INFO]: [STDOUT]: Skipping unmapped packet type: clientbound/create:factory_panel_effect
[19:47:34] [Render thread/INFO]: [STDOUT]: Skipping unmapped packet type: clientbound/create:packager_link_effect
[19:47:34] [Render thread/INFO]: [STDOUT]: Skipping unmapped packet type: clientbound/create:redstone_requester_effect
[19:47:34] [Render thread/INFO]: [STDOUT]: Skipping unmapped packet type: clientbound/create:clientbound_chain_conveyor
[19:47:34] [Render thread/INFO]: [STDOUT]: Skipping unmapped packet type: clientbound/create:shop_update
[19:47:34] [Render thread/INFO]: [STDOUT]: Skipping unmapped packet type: clientbound/create:sync_rail_graph
[19:47:34] [Render thread/INFO]: [STDOUT]: Skipping unmapped packet type: clientbound/create:add_train
[19:47:34] [Render thread/INFO]: [STDOUT]: Skipping unmapped packet type: clientbound/create:open_screen
[19:47:34] [Render thread/INFO]: [STDOUT]: Skipping unmapped packet type: clientbound/create:blueprint_preview
[19:47:34] [Render thread/INFO]: [STDOUT]: Skipping unmapped packet type: clientbound/create:super_glue_spawn
[19:47:34] [Render thread/INFO]: [STDOUT]: Skipping unmapped packet type: clientbound/create:nbt_spawn
[19:47:34] [Render thread/INFO]: [STDOUT]: Skipping unmapped packet type: clientbound/create:ejector_item_spawn
[19:47:34] [Render thread/INFO]: [STDOUT]: Skipping unmapped packet type: clientbound/create:package_spawn
[19:47:34] [Render thread/INFO]: [STDOUT]: Skipping unmapped packet type: serverbound/create:configure_schematicannon
[19:47:34] [Render thread/INFO]: [STDOUT]: Skipping unmapped packet type: serverbound/create:configure_stockswitch
[19:47:34] [Render thread/INFO]: [STDOUT]: Skipping unmapped packet type: serverbound/create:configure_sequencer
[19:47:34] [Render thread/INFO]: [STDOUT]: Skipping unmapped packet type: serverbound/create:place_schematic
[19:47:34] [Render thread/INFO]: [STDOUT]: Skipping unmapped packet type: serverbound/create:upload_schematic
[19:47:34] [Render thread/INFO]: [STDOUT]: Skipping unmapped packet type: serverbound/create:clear_container
[19:47:34] [Render thread/INFO]: [STDOUT]: Skipping unmapped packet type: serverbound/create:configure_filter
[19:47:34] [Render thread/INFO]: [STDOUT]: Skipping unmapped packet type: serverbound/create:contraption_interact
[19:47:34] [Render thread/INFO]: [STDOUT]: Skipping unmapped packet type: serverbound/create:client_motion
[19:47:34] [Render thread/INFO]: [STDOUT]: Skipping unmapped packet type: serverbound/create:place_arm
[19:47:34] [Render thread/INFO]: [STDOUT]: Skipping unmapped packet type: serverbound/create:place_package_port
[19:47:34] [Render thread/INFO]: [STDOUT]: Skipping unmapped packet type: serverbound/create:minecart_coupling_creation
[19:47:34] [Render thread/INFO]: [STDOUT]: Skipping unmapped packet type: serverbound/create:instant_schematic
[19:47:34] [Render thread/INFO]: [STDOUT]: Skipping unmapped packet type: serverbound/create:sync_schematic
[19:47:34] [Render thread/INFO]: [STDOUT]: Skipping unmapped packet type: serverbound/create:left_click
[19:47:34] [Render thread/INFO]: [STDOUT]: Skipping unmapped packet type: serverbound/create:place_ejector
[19:47:34] [Render thread/INFO]: [STDOUT]: Skipping unmapped packet type: serverbound/create:trigger_ejector
[19:47:34] [Render thread/INFO]: [STDOUT]: Skipping unmapped packet type: serverbound/create:ejector_elytra
[19:47:34] [Render thread/INFO]: [STDOUT]: Skipping unmapped packet type: serverbound/create:linked_controller_input
[19:47:34] [Render thread/INFO]: [STDOUT]: Skipping unmapped packet type: serverbound/create:linked_controller_bind
[19:47:34] [Render thread/INFO]: [STDOUT]: Skipping unmapped packet type: serverbound/create:linked_controller_use_lectern
[19:47:34] [Render thread/INFO]: [STDOUT]: Skipping unmapped packet type: serverbound/create:submit_ghost_item
[19:47:34] [Render thread/INFO]: [STDOUT]: Skipping unmapped packet type: serverbound/create:blueprint_complete_recipe
[19:47:34] [Render thread/INFO]: [STDOUT]: Skipping unmapped packet type: serverbound/create:configure_symmetry_wand
[19:47:34] [Render thread/INFO]: [STDOUT]: Skipping unmapped packet type: serverbound/create:configure_worldshaper
[19:47:34] [Render thread/INFO]: [STDOUT]: Skipping unmapped packet type: serverbound/create:toolbox_equip
[19:47:34] [Render thread/INFO]: [STDOUT]: Skipping unmapped packet type: serverbound/create:toolbox_dispose_all
[19:47:34] [Render thread/INFO]: [STDOUT]: Skipping unmapped packet type: serverbound/create:configure_schedule
[19:47:34] [Render thread/INFO]: [STDOUT]: Skipping unmapped packet type: serverbound/create:configure_station
[19:47:34] [Render thread/INFO]: [STDOUT]: Skipping unmapped packet type: serverbound/create:c_configure_train
[19:47:34] [Render thread/INFO]: [STDOUT]: Skipping unmapped packet type: serverbound/create:relocate_train
[19:47:34] [Render thread/INFO]: [STDOUT]: Skipping unmapped packet type: serverbound/create:controls_input
[19:47:34] [Render thread/INFO]: [STDOUT]: Skipping unmapped packet type: serverbound/create:configure_data_gatherer
[19:47:34] [Render thread/INFO]: [STDOUT]: Skipping unmapped packet type: serverbound/create:destroy_curved_track
[19:47:34] [Render thread/INFO]: [STDOUT]: Skipping unmapped packet type: serverbound/create:select_curved_track
[19:47:34] [Render thread/INFO]: [STDOUT]: Skipping unmapped packet type: serverbound/create:place_curved_track
[19:47:34] [Render thread/INFO]: [STDOUT]: Skipping unmapped packet type: serverbound/create:glue_in_area
[19:47:34] [Render thread/INFO]: [STDOUT]: Skipping unmapped packet type: serverbound/create:glue_removed
[19:47:34] [Render thread/INFO]: [STDOUT]: Skipping unmapped packet type: serverbound/create:train_collision
[19:47:34] [Render thread/INFO]: [STDOUT]: Skipping unmapped packet type: serverbound/create:c_train_hud
[19:47:34] [Render thread/INFO]: [STDOUT]: Skipping unmapped packet type: serverbound/create:c_train_honk
[19:47:34] [Render thread/INFO]: [STDOUT]: Skipping unmapped packet type: serverbound/create:observer_stressometer
[19:47:34] [Render thread/INFO]: [STDOUT]: Skipping unmapped packet type: serverbound/create:ejector_award
[19:47:34] [Render thread/INFO]: [STDOUT]: Skipping unmapped packet type: serverbound/create:track_graph_request
[19:47:34] [Render thread/INFO]: [STDOUT]: Skipping unmapped packet type: serverbound/create:configure_elevator_contact
[19:47:34] [Render thread/INFO]: [STDOUT]: Skipping unmapped packet type: serverbound/create:request_floor_list
[19:47:34] [Render thread/INFO]: [STDOUT]: Skipping unmapped packet type: serverbound/create:elevator_set_floor
[19:47:34] [Render thread/INFO]: [STDOUT]: Skipping unmapped packet type: serverbound/create:value_settings
[19:47:34] [Render thread/INFO]: [STDOUT]: Skipping unmapped packet type: serverbound/create:clipboard_edit
[19:47:34] [Render thread/INFO]: [STDOUT]: Skipping unmapped packet type: serverbound/create:contraption_collider_lock_request
[19:47:34] [Render thread/INFO]: [STDOUT]: Skipping unmapped packet type: serverbound/create:radial_wrench_menu_submit
[19:47:34] [Render thread/INFO]: [STDOUT]: Skipping unmapped packet type: serverbound/create:logistics_stock_request
[19:47:34] [Render thread/INFO]: [STDOUT]: Skipping unmapped packet type: serverbound/create:logistics_package_request
[19:47:34] [Render thread/INFO]: [STDOUT]: Skipping unmapped packet type: serverbound/create:chain_conveyor_connection
[19:47:34] [Render thread/INFO]: [STDOUT]: Skipping unmapped packet type: serverbound/create:chain_conveyor_riding
[19:47:34] [Render thread/INFO]: [STDOUT]: Skipping unmapped packet type: serverbound/create:chain_package_interaction
[19:47:34] [Render thread/INFO]: [STDOUT]: Skipping unmapped packet type: serverbound/create:package_port_configuration
[19:47:34] [Render thread/INFO]: [STDOUT]: Skipping unmapped packet type: serverbound/create:train_map_request
[19:47:34] [Render thread/INFO]: [STDOUT]: Skipping unmapped packet type: serverbound/create:connect_factory_panel
[19:47:34] [Render thread/INFO]: [STDOUT]: Skipping unmapped packet type: serverbound/create:configure_factory_panel
[19:47:34] [Render thread/INFO]: [STDOUT]: Skipping unmapped packet type: serverbound/create:configure_redstone_requester
[19:47:34] [Render thread/INFO]: [STDOUT]: Skipping unmapped packet type: serverbound/create:configure_stock_keeper_categories
[19:47:34] [Render thread/INFO]: [STDOUT]: Skipping unmapped packet type: serverbound/create:refund_stock_keeper_category
[19:47:34] [Render thread/INFO]: [STDOUT]: Skipping unmapped packet type: serverbound/create:lock_stock_keeper
[19:47:34] [Render thread/INFO]: [STDOUT]: Skipping unmapped packet type: serverbound/create:stock_keeper_hide_category
[19:47:34] [Render thread/INFO]: [STDOUT]: Skipping unmapped packet type: serverbound/create:link_settings
[19:47:34] [Render thread/INFO]: [STDOUT]: Skipping unmapped packet type: serverbound/create:request_blueprint_preview
[19:47:34] [Render thread/INFO]: [STDOUT]: Raknetify: Using leak detector level SIMPLE
[19:47:35] [Render thread/INFO]: Registering items for rusticdelight
[19:47:35] [Render thread/INFO]: Registering blocks for rusticdelight
[19:47:35] [Render thread/INFO]: Registering potions for rusticdelight
[19:47:35] [Render thread/INFO]: Registering biome modifications for rusticdelight
[19:47:35] [Render thread/INFO]: Registering placement modifiers for rusticdelight
[19:47:35] [Render thread/INFO]: Registering item group for rusticdelight
[19:47:35] [Render thread/INFO]: Initializing Serene Seasons Plus (Fabric)
[19:47:35] [Render thread/INFO]: Constructing components for sheepvariety:common
[19:47:35] [Render thread/WARN]: Missing translation key for rename: item.minecraft.dune_armor_trim_smithing_template.new
[19:47:35] [Render thread/WARN]: Missing translation key for rename: item.minecraft.eye_armor_trim_smithing_template.new
[19:47:35] [Render thread/WARN]: Missing translation key for rename: item.minecraft.flow_armor_trim_smithing_template.new
[19:47:35] [Render thread/WARN]: Missing translation key for rename: item.minecraft.bolt_armor_trim_smithing_template.new
[19:47:35] [Render thread/WARN]: Missing translation key for rename: item.minecraft.host_armor_trim_smithing_template.new
[19:47:35] [Render thread/WARN]: Missing translation key for rename: item.minecraft.netherite_upgrade_smithing_template.new
[19:47:35] [Render thread/WARN]: Missing translation key for rename: item.minecraft.raiser_armor_trim_smithing_template.new
[19:47:35] [Render thread/WARN]: Missing translation key for rename: item.minecraft.rib_armor_trim_smithing_template.new
[19:47:35] [Render thread/WARN]: Missing translation key for rename: item.minecraft.sentry_armor_trim_smithing_template.new
[19:47:35] [Render thread/WARN]: Missing translation key for rename: item.minecraft.shaper_armor_trim_smithing_template.new
[19:47:35] [Render thread/WARN]: Missing translation key for rename: item.minecraft.silence_armor_trim_smithing_template.new
[19:47:35] [Render thread/WARN]: Missing translation key for rename: item.minecraft.snout_armor_trim_smithing_template.new
[19:47:35] [Render thread/WARN]: Missing translation key for rename: item.minecraft.spire_armor_trim_smithing_template.new
[19:47:35] [Render thread/WARN]: Missing translation key for rename: item.minecraft.tide_armor_trim_smithing_template.new
[19:47:35] [Render thread/WARN]: Missing translation key for rename: item.minecraft.vex_armor_trim_smithing_template.new
[19:47:35] [Render thread/WARN]: Missing translation key for rename: item.minecraft.ward_armor_trim_smithing_template.new
[19:47:35] [Render thread/WARN]: Missing translation key for rename: item.minecraft.wayfinder_armor_trim_smithing_template.new
[19:47:35] [Render thread/WARN]: Missing translation key for rename: item.minecraft.wild_armor_trim_smithing_template.new
[19:47:35] [Render thread/WARN]: Missing translation key for rename: item.minecraft.coast_armor_trim_smithing_template.new
[19:47:35] [Render thread/WARN]: Missing translation key for rename: item.minecraft.creeper_banner_pattern.new
[19:47:35] [Render thread/WARN]: Missing translation key for rename: item.minecraft.flow_banner_pattern.new
[19:47:35] [Render thread/WARN]: Missing translation key for rename: item.minecraft.flower_banner_pattern.new
[19:47:35] [Render thread/WARN]: Missing translation key for rename: item.minecraft.globe_banner_pattern.new
[19:47:35] [Render thread/WARN]: Missing translation key for rename: item.minecraft.guster_banner_pattern.new
[19:47:35] [Render thread/WARN]: Missing translation key for rename: item.minecraft.mojang_banner_pattern.new
[19:47:35] [Render thread/WARN]: Missing translation key for rename: item.minecraft.piglin_banner_pattern.new
[19:47:35] [Render thread/WARN]: Missing translation key for rename: item.minecraft.skull_banner_pattern.new
[19:47:35] [Render thread/WARN]: Missing translation key for rename: lanServer.port.unavailable.new
[19:47:35] [Render thread/WARN]: Missing translation key for rename: lanServer.port.invalid.new
[19:47:35] [Render thread/WARN]: Missing translation key for rename: multiplayer.disconnect.invalid_public_key_signature.new
[19:47:35] [Render thread/WARN]: Missing translation key for rename: selectWorld.allowCommands.new
[19:47:35] [Render thread/WARN]: Missing translation key for rename: gui.abuseReport.reason.generic
[19:47:35] [Render thread/WARN]: Missing translation key for rename: gui.abuseReport.reason.generic.description
[19:47:35] [Render thread/WARN]: Missing translation key for rename: commands.drop.no_loot_table
[19:47:35] [Render thread/WARN]: Missing translation key for rename: item.op_block_warning.line1
[19:47:35] [Render thread/WARN]: Missing translation key for rename: item.op_block_warning.line2
[19:47:35] [Render thread/WARN]: Missing translation key for rename: item.op_block_warning.line3
[19:47:35] [Render thread/WARN]: Missing translation key for rename: container.shulkerBox.unknownContents
[19:47:35] [Render thread/WARN]: Missing translation key for rename: container.shulkerBox.itemCount
[19:47:35] [Render thread/WARN]: Missing translation key for rename: container.shulkerBox.more
[19:47:35] [Render thread/WARN]: Missing translation key for rename: advancements.nether.use_lodestone.description
[19:47:35] [Render thread/WARN]: Missing translation key for rename: advancements.nether.use_lodestone.title
[19:47:35] [Render thread/WARN]: Missing translation key for rename: subtitles.block.sand.wind
[19:47:35] [Render thread/WARN]: Missing translation key for rename: snbt.parser.undescore_not_allowed
[19:47:35] [Render thread/WARN]: Missing translation key for rename: commands.setworldspawn.success.new
[19:47:35] [Render thread/WARN]: Missing translation key for rename: commands.spawnpoint.success.multiple.new
[19:47:35] [Render thread/WARN]: Missing translation key for rename: commands.spawnpoint.success.single.new
[19:47:35] [Render thread/WARN]: Missing translation key for rename: debug.crash.message.rebindable
[19:47:35] [Render thread/WARN]: Missing translation key for rename: debug.profiling.start.rebindable
[19:47:35] [Render thread/WARN]: Missing translation key for rename: subtitles.item.underwater_saddle.equip
[19:47:35] [Render thread/WARN]: Missing translation key for rename: gamerule.mobGriefing
[19:47:35] [Render thread/WARN]: Missing translation key for rename: gamerule.keepInventory
[19:47:35] [Render thread/WARN]: Missing translation key for rename: gamerule.doMobSpawning
[19:47:35] [Render thread/WARN]: Missing translation key for rename: gamerule.doMobLoot
[19:47:35] [Render thread/WARN]: Missing translation key for rename: gamerule.projectilesCanBreakBlocks
[19:47:35] [Render thread/WARN]: Missing translation key for rename: gamerule.doTileDrops
[19:47:35] [Render thread/WARN]: Missing translation key for rename: gamerule.doEntityDrops
[19:47:35] [Render thread/WARN]: Missing translation key for rename: gamerule.commandBlockOutput
[19:47:35] [Render thread/WARN]: Missing translation key for rename: gamerule.naturalRegeneration
[19:47:35] [Render thread/WARN]: Missing translation key for rename: gamerule.doDaylightCycle
[19:47:35] [Render thread/WARN]: Missing translation key for rename: gamerule.logAdminCommands
[19:47:35] [Render thread/WARN]: Missing translation key for rename: gamerule.showDeathMessages
[19:47:35] [Render thread/WARN]: Missing translation key for rename: gamerule.randomTickSpeed
[19:47:35] [Render thread/WARN]: Missing translation key for rename: gamerule.sendCommandFeedback
[19:47:35] [Render thread/WARN]: Missing translation key for rename: gamerule.reducedDebugInfo
[19:47:35] [Render thread/WARN]: Missing translation key for rename: gamerule.spectatorsGenerateChunks
[19:47:35] [Render thread/WARN]: Missing translation key for rename: gamerule.spawnRadius
[19:47:35] [Render thread/WARN]: Missing translation key for rename: gamerule.maxEntityCramming
[19:47:35] [Render thread/WARN]: Missing translation key for rename: gamerule.doWeatherCycle
[19:47:35] [Render thread/WARN]: Missing translation key for rename: gamerule.doLimitedCrafting
[19:47:35] [Render thread/WARN]: Missing translation key for rename: gamerule.maxCommandChainLength
[19:47:35] [Render thread/WARN]: Missing translation key for rename: gamerule.maxCommandForkCount
[19:47:35] [Render thread/WARN]: Missing translation key for rename: gamerule.commandModificationBlockLimit
[19:47:35] [Render thread/WARN]: Missing translation key for rename: gamerule.announceAdvancements
[19:47:35] [Render thread/WARN]: Missing translation key for rename: gamerule.doInsomnia
[19:47:35] [Render thread/WARN]: Missing translation key for rename: gamerule.doImmediateRespawn
[19:47:35] [Render thread/WARN]: Missing translation key for rename: gamerule.playersNetherPortalDefaultDelay
[19:47:35] [Render thread/WARN]: Missing translation key for rename: gamerule.playersNetherPortalCreativeDelay
[19:47:35] [Render thread/WARN]: Missing translation key for rename: gamerule.drowningDamage
[19:47:35] [Render thread/WARN]: Missing translation key for rename: gamerule.fallDamage
[19:47:35] [Render thread/WARN]: Missing translation key for rename: gamerule.fireDamage
[19:47:35] [Render thread/WARN]: Missing translation key for rename: gamerule.freezeDamage
[19:47:35] [Render thread/WARN]: Missing translation key for rename: gamerule.doPatrolSpawning
[19:47:35] [Render thread/WARN]: Missing translation key for rename: gamerule.doTraderSpawning
[19:47:35] [Render thread/WARN]: Missing translation key for rename: gamerule.doWardenSpawning
[19:47:35] [Render thread/WARN]: Missing translation key for rename: gamerule.forgiveDeadPlayers
[19:47:35] [Render thread/WARN]: Missing translation key for rename: gamerule.universalAnger
[19:47:35] [Render thread/WARN]: Missing translation key for rename: gamerule.playersSleepingPercentage
[19:47:35] [Render thread/WARN]: Missing translation key for rename: gamerule.blockExplosionDropDecay
[19:47:35] [Render thread/WARN]: Missing translation key for rename: gamerule.mobExplosionDropDecay
[19:47:35] [Render thread/WARN]: Missing translation key for rename: gamerule.tntExplosionDropDecay
[19:47:35] [Render thread/WARN]: Missing translation key for rename: gamerule.snowAccumulationHeight
[19:47:35] [Render thread/WARN]: Missing translation key for rename: gamerule.waterSourceConversion
[19:47:35] [Render thread/WARN]: Missing translation key for rename: gamerule.lavaSourceConversion
[19:47:35] [Render thread/WARN]: Missing translation key for rename: gamerule.globalSoundEvents
[19:47:35] [Render thread/WARN]: Missing translation key for rename: gamerule.doVinesSpread
[19:47:35] [Render thread/WARN]: Missing translation key for rename: gamerule.enderPearlsVanishOnDeath
[19:47:35] [Render thread/WARN]: Missing translation key for rename: gamerule.minecartMaxSpeed
[19:47:35] [Render thread/WARN]: Missing translation key for rename: gamerule.tntExplodes
[19:47:35] [Render thread/WARN]: Missing translation key for rename: gamerule.locatorBar
[19:47:35] [Render thread/WARN]: Missing translation key for rename: gamerule.pvp
[19:47:35] [Render thread/WARN]: Missing translation key for rename: gamerule.allowEnteringNetherUsingPortals
[19:47:35] [Render thread/WARN]: Missing translation key for rename: gamerule.spawnMonsters
[19:47:35] [Render thread/WARN]: Missing translation key for rename: gamerule.commandBlocksEnabled
[19:47:35] [Render thread/WARN]: Missing translation key for rename: gamerule.spawnerBlocksEnabled
[19:47:35] [Render thread/WARN]: Missing translation key for rename: gamerule.allowFireTicksAwayFromPlayer.description
[19:47:35] [Render thread/WARN]: Missing translation key for rename: gamerule.doMobSpawning.description
[19:47:35] [Render thread/WARN]: Missing translation key for rename: gamerule.doMobLoot.description
[19:47:35] [Render thread/WARN]: Missing translation key for rename: gamerule.projectilesCanBreakBlocks.description
[19:47:35] [Render thread/WARN]: Missing translation key for rename: gamerule.doTileDrops.description
[19:47:35] [Render thread/WARN]: Missing translation key for rename: gamerule.doEntityDrops.description
[19:47:35] [Render thread/WARN]: Missing translation key for rename: gamerule.reducedDebugInfo.description
[19:47:35] [Render thread/WARN]: Missing translation key for rename: gamerule.spawnRadius.description
[19:47:35] [Render thread/WARN]: Missing translation key for rename: gamerule.doLimitedCrafting.description
[19:47:35] [Render thread/WARN]: Missing translation key for rename: gamerule.maxCommandChainLength.description
[19:47:35] [Render thread/WARN]: Missing translation key for rename: gamerule.maxCommandForkCount.description
[19:47:35] [Render thread/WARN]: Missing translation key for rename: gamerule.commandModificationBlockLimit.description
[19:47:35] [Render thread/WARN]: Missing translation key for rename: gamerule.playersNetherPortalDefaultDelay.description
[19:47:35] [Render thread/WARN]: Missing translation key for rename: gamerule.playersNetherPortalCreativeDelay.description
[19:47:35] [Render thread/WARN]: Missing translation key for rename: gamerule.forgiveDeadPlayers.description
[19:47:35] [Render thread/WARN]: Missing translation key for rename: gamerule.universalAnger.description
[19:47:35] [Render thread/WARN]: Missing translation key for rename: gamerule.playersSleepingPercentage.description
[19:47:35] [Render thread/WARN]: Missing translation key for rename: gamerule.blockExplosionDropDecay.description
[19:47:35] [Render thread/WARN]: Missing translation key for rename: gamerule.mobExplosionDropDecay.description
[19:47:35] [Render thread/WARN]: Missing translation key for rename: gamerule.tntExplosionDropDecay.description
[19:47:35] [Render thread/WARN]: Missing translation key for rename: gamerule.snowAccumulationHeight.description
[19:47:35] [Render thread/WARN]: Missing translation key for rename: gamerule.waterSourceConversion.description
[19:47:35] [Render thread/WARN]: Missing translation key for rename: gamerule.lavaSourceConversion.description
[19:47:35] [Render thread/WARN]: Missing translation key for rename: gamerule.globalSoundEvents.description
[19:47:35] [Render thread/WARN]: Missing translation key for rename: gamerule.doVinesSpread.description
[19:47:35] [Render thread/WARN]: Missing translation key for rename: gamerule.enderPearlsVanishOnDeath.description
[19:47:35] [Render thread/WARN]: Missing translation key for rename: gamerule.minecartMaxSpeed.description
[19:47:35] [Render thread/WARN]: Missing translation key for rename: gamerule.locatorBar.description
[19:47:35] [Render thread/WARN]: Missing translation key for rename: gamerule.pvp.description
[19:47:35] [Render thread/WARN]: Missing translation key for rename: gamerule.allowEnteringNetherUsingPortals.description
[19:47:35] [Render thread/WARN]: Missing translation key for rename: gamerule.spawnMonsters.description
[19:47:35] [Render thread/WARN]: Missing translation key for rename: gamerule.category.chat
[19:47:35] [Render thread/WARN]: Missing translation key for rename: gamerule.category.drops
[19:47:35] [Render thread/WARN]: Missing translation key for rename: gamerule.category.misc
[19:47:35] [Render thread/WARN]: Missing translation key for rename: gamerule.category.mobs
[19:47:35] [Render thread/WARN]: Missing translation key for rename: gamerule.category.player
[19:47:35] [Render thread/WARN]: Missing translation key for rename: gamerule.category.spawning
[19:47:35] [Render thread/WARN]: Missing translation key for rename: gamerule.category.updates
[19:47:35] [Render thread/INFO]: [ShulkerBoxTooltip] Could not find configuration file, creating default file
[19:47:35] [Render thread/INFO]: Registering Mod Blocks for spanishdelight
[19:47:35] [Render thread/INFO]: Registering Mod Items for spanishdelight
[19:47:35] [Render thread/INFO]: Registering Item Groups forspanishdelight
[19:47:35] [Render thread/INFO]: Registering C2S receiver with id squatgrow:squat_grow_enabled
[19:47:35] [Render thread/INFO]: Registering mod blocks for stackedblocks
[19:47:35] [Render thread/INFO]: Registering item groups for stackedblocksfarmersdelight
[19:47:35] [Render thread/INFO]: Registering mod blocks for stackedblocksfarmersdelight
[19:47:35] [Render thread/INFO]: Constructing components for stoneworks:common
[19:47:35] [Render thread/INFO]: Dispatching loading event for config stoneworks-common.toml
[19:47:36] [Render thread/INFO]: Registering blocks for storagedelight
[19:47:36] [Render thread/INFO]: Registering block entity types for storagedelight
[19:47:36] [Render thread/INFO]: Registering furniture fuels for storagedelight
[19:47:36] [Render thread/INFO]: Registering creative mode tab for storagedelight
[19:47:36] [Render thread/INFO]: Deserializing ItTakesPillageConfig from 'config\takesapillage.json'
[19:47:36] [Render thread/INFO]: Registered region minecraft:overworld to index 0 for type OVERWORLD
[19:47:36] [Render thread/INFO]: Registered region minecraft:nether to index 0 for type NETHER
[19:47:36] [Render thread/INFO]: Registered region biomesoplenty:overworld_primary to index 1 for type OVERWORLD
[19:47:36] [Render thread/INFO]: Registered region biomesoplenty:overworld_secondary to index 2 for type OVERWORLD
[19:47:36] [Render thread/INFO]: Registered region biomesoplenty:overworld_rare to index 3 for type OVERWORLD
[19:47:36] [Render thread/INFO]: Registered region biomesoplenty:nether_common to index 1 for type NETHER
[19:47:36] [Render thread/INFO]: Registered region biomesoplenty:nether_rare to index 2 for type NETHER
[19:47:36] [Render thread/INFO]: Registered region biomeswevegone:region_0 to index 4 for type OVERWORLD
[19:47:36] [Render thread/INFO]: Registered region biomeswevegone:region_1 to index 5 for type OVERWORLD
[19:47:36] [Render thread/INFO]: Registered region biomeswevegone:region_2 to index 6 for type OVERWORLD
[19:47:36] [Render thread/INFO]: Registered region fishofthieves:tropical_island to index 7 for type OVERWORLD
[19:47:36] [Render thread/INFO]: Registered Lighter End's biomes with TerraBlender
[19:47:36] [Render thread/INFO]: Tom's Trading Network starting
[19:47:36] [Render thread/INFO]: Hello Fabric world!
[19:47:36] [Render thread/INFO]: Constructing components for tradingpost:common
[19:47:36] [Render thread/INFO]: Registered the FluidEffect with Unique ID of minecraft:water for block.minecraft.water (Fluid Amount Required: 81000) with the ID 0
[19:47:36] [Render thread/INFO]: Registered the FluidEffect with Unique ID of minecraft:lava for block.minecraft.lava (Fluid Amount Required: 81000) with the ID 1
[19:47:36] [Render thread/INFO]: Registered the FluidEffect with Unique ID of travelersbackpack:potion for block.travelersbackpack.potion_still (Fluid Amount Required: 27000) with the ID 2
[19:47:36] [Render thread/INFO]: Registered the FluidEffect with Unique ID of minecraft:milk for block.minecraft.air (Fluid Amount Required: 81000) with the ID 3
[19:47:37] [Render thread/INFO]: Constructing components for universalbonemeal:common
[19:47:37] [Render thread/INFO]: === Starting VillagerPack Validation ===
[19:47:37] [Render thread/WARN]: Failed to load pack.mcmeta for pack: mru
com.google.gson.JsonSyntaxException: com.google.gson.stream.MalformedJsonException: Unterminated object at line 4 column 26 path $.pack.pack_format
See https://github.com/google/gson/blob/main/Troubleshooting.md#malformed-json
at knot//com.google.gson.internal.Streams.parse(Streams.java:58)
at knot//com.google.gson.JsonParser.parseReader(JsonParser.java:144)
at knot//com.google.gson.JsonParser.parseReader(JsonParser.java:110)
at knot//com.frikinjay.villagerapi.villagerpack.VillagerPackLoader$VillagerPack.loadPackMeta(VillagerPackLoader.java:301)
at knot//com.frikinjay.villagerapi.villagerpack.VillagerPackLoader$VillagerPack.<init>(VillagerPackLoader.java:251)
at knot//com.frikinjay.villagerapi.villagerpack.VillagerPackValidator.lambda$validateAllPacks$15(VillagerPackValidator.java:571)
at java.base/java.util.HashMap.forEach(HashMap.java:1429)
at knot//com.frikinjay.villagerapi.villagerpack.VillagerPackValidator.validateAllPacks(VillagerPackValidator.java:568)
at knot//com.frikinjay.villagerapi.villagerpack.PackInitializationOrchestrator.initializeEarly(PackInitializationOrchestrator.java:31)
at knot//com.frikinjay.villagerapi.VillagerAPI.init(VillagerAPI.java:17)
at knot//com.frikinjay.villagerapi.fabric.VillagerAPIFabric.onInitialize(VillagerAPIFabric.java:25)
at net.fabricmc.loader.impl.FabricLoaderImpl.invokeEntrypoints(FabricLoaderImpl.java:405)
at net.fabricmc.loader.impl.game.minecraft.Hooks.startClient(Hooks.java:52)
at knot//fudge.notenoughcrashes.fabric.mixinhandlers.ModLoaders.fabricEntrypoints(ModLoaders.java:9)
at knot//net.minecraft.class_310.redirect$hhk000$notenoughcrashes$catchFabricInit(class_310.java:31131)
at knot//net.minecraft.class_310.<init>(class_310.java:475)
at knot//net.minecraft.client.main.Main.main(Main.java:234)
at net.fabricmc.loader.impl.game.minecraft.MinecraftGameProvider.launch(MinecraftGameProvider.java:514)
at net.fabricmc.loader.impl.launch.knot.Knot.launch(Knot.java:72)
at net.fabricmc.loader.impl.launch.knot.KnotClient.main(KnotClient.java:23)
at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)
at java.base/java.lang.reflect.Method.invoke(Method.java:580)
at org.multimc.onesix.OneSixLauncher.launchWithMainClass(OneSixLauncher.java:243)
at org.multimc.onesix.OneSixLauncher.launch(OneSixLauncher.java:278)
at org.multimc.EntryPoint.listen(EntryPoint.java:143)
at org.multimc.EntryPoint.main(EntryPoint.java:34)
Caused by: com.google.gson.stream.MalformedJsonException: Unterminated object at line 4 column 26 path $.pack.pack_format
See https://github.com/google/gson/blob/main/Troubleshooting.md#malformed-json
at knot//com.google.gson.stream.JsonReader.syntaxError(JsonReader.java:1817)
at knot//com.google.gson.stream.JsonReader.doPeek(JsonReader.java:616)
at knot//com.google.gson.stream.JsonReader.hasNext(JsonReader.java:538)
at knot//com.google.gson.internal.bind.JsonElementTypeAdapter.read(JsonElementTypeAdapter.java:95)
at knot//com.google.gson.internal.bind.JsonElementTypeAdapter.read(JsonElementTypeAdapter.java:35)
at knot//com.google.gson.internal.Streams.parse(Streams.java:46)
... 25 more
[19:47:37] [Render thread/INFO]: Validating pack: morevillagers
[19:47:37] [Render thread/INFO]: Pack 'morevillagers' validation completed - Pack will load
[19:47:37] [Render thread/INFO]: - Display Name: More Villagers
[19:47:37] [Render thread/INFO]: - Description: Adds new villager professions, types, workstations and trades
[19:47:37] [Render thread/INFO]: - Author: frikinjay
[19:47:37] [Render thread/INFO]: - Version: 1.25.12.1
[19:47:37] [Render thread/INFO]: - Has villagers folder: true
[19:47:37] [Render thread/INFO]: - Namespace: morevillagers
[19:47:37] [Render thread/INFO]: - Has assets folder: true
[19:47:37] [Render thread/INFO]: - Asset namespaces: morevillagers, minecraft
[19:47:37] [Render thread/INFO]: - Has data folder: true
[19:47:37] [Render thread/INFO]: - Data namespaces: neoforge, morevillagers, minecraft
[19:47:37] [Render thread/INFO]: - Pack format: 48
[19:47:37] [Render thread/INFO]: - Biome Mappings: 1
[19:47:37] [Render thread/INFO]: - Biome Trades: 0
[19:47:37] [Render thread/INFO]: - Gifts: 10
[19:47:37] [Render thread/INFO]: - Language files in morevillagers: 8
[19:47:37] [Render thread/INFO]: - Models in morevillagers: 23
[19:47:37] [Render thread/INFO]: - POI Types: 10
[19:47:37] [Render thread/INFO]: - Professions: 10
[19:47:37] [Render thread/INFO]: - Structure Tags: 8
[19:47:37] [Render thread/INFO]: - Structure tags in morevillagers: 8
[19:47:37] [Render thread/INFO]: - Textures in morevillagers: 73
[19:47:37] [Render thread/INFO]: - Trades: 10
[19:47:37] [Render thread/INFO]: - Villager Types: 1
[19:47:37] [Render thread/INFO]: - Workstations: 0
[19:47:37] [Render thread/INFO]: ---
[19:47:37] [Render thread/INFO]: === Validation Complete ===
[19:47:37] [Render thread/INFO]: Total packs identified: 1, Valid: 1, Invalid: 0, Critical failures: 0
[19:47:37] [Render thread/WARN]: Failed to load pack.mcmeta for pack: mru
com.google.gson.JsonSyntaxException: com.google.gson.stream.MalformedJsonException: Unterminated object at line 4 column 26 path $.pack.pack_format
See https://github.com/google/gson/blob/main/Troubleshooting.md#malformed-json
at knot//com.google.gson.internal.Streams.parse(Streams.java:58)
at knot//com.google.gson.JsonParser.parseReader(JsonParser.java:144)
at knot//com.google.gson.JsonParser.parseReader(JsonParser.java:110)
at knot//com.frikinjay.villagerapi.villagerpack.VillagerPackLoader$VillagerPack.loadPackMeta(VillagerPackLoader.java:301)
at knot//com.frikinjay.villagerapi.villagerpack.VillagerPackLoader$VillagerPack.<init>(VillagerPackLoader.java:251)
at knot//com.frikinjay.villagerapi.villagerpack.VillagerPackLoader.lambda$discoverPacks$2(VillagerPackLoader.java:111)
at java.base/java.util.HashMap.forEach(HashMap.java:1429)
at knot//com.frikinjay.villagerapi.villagerpack.VillagerPackLoader.discoverPacks(VillagerPackLoader.java:106)
at knot//com.frikinjay.villagerapi.villagerpack.VillagerPackLoader.getDiscoveredPacks(VillagerPackLoader.java:196)
at knot//com.frikinjay.villagerapi.villagerpack.VillagerPackRegistry.registerCreativeTabsFromPacks(VillagerPackRegistry.java:27)
at knot//com.frikinjay.villagerapi.villagerpack.PackInitializationOrchestrator.initializeEarly(PackInitializationOrchestrator.java:37)
at knot//com.frikinjay.villagerapi.VillagerAPI.init(VillagerAPI.java:17)
at knot//com.frikinjay.villagerapi.fabric.VillagerAPIFabric.onInitialize(VillagerAPIFabric.java:25)
at net.fabricmc.loader.impl.FabricLoaderImpl.invokeEntrypoints(FabricLoaderImpl.java:405)
at net.fabricmc.loader.impl.game.minecraft.Hooks.startClient(Hooks.java:52)
at knot//fudge.notenoughcrashes.fabric.mixinhandlers.ModLoaders.fabricEntrypoints(ModLoaders.java:9)
at knot//net.minecraft.class_310.redirect$hhk000$notenoughcrashes$catchFabricInit(class_310.java:31131)
at knot//net.minecraft.class_310.<init>(class_310.java:475)
at knot//net.minecraft.client.main.Main.main(Main.java:234)
at net.fabricmc.loader.impl.game.minecraft.MinecraftGameProvider.launch(MinecraftGameProvider.java:514)
at net.fabricmc.loader.impl.launch.knot.Knot.launch(Knot.java:72)
at net.fabricmc.loader.impl.launch.knot.KnotClient.main(KnotClient.java:23)
at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)
at java.base/java.lang.reflect.Method.invoke(Method.java:580)
at org.multimc.onesix.OneSixLauncher.launchWithMainClass(OneSixLauncher.java:243)
at org.multimc.onesix.OneSixLauncher.launch(OneSixLauncher.java:278)
at org.multimc.EntryPoint.listen(EntryPoint.java:143)
at org.multimc.EntryPoint.main(EntryPoint.java:34)
Caused by: com.google.gson.stream.MalformedJsonException: Unterminated object at line 4 column 26 path $.pack.pack_format
See https://github.com/google/gson/blob/main/Troubleshooting.md#malformed-json
at knot//com.google.gson.stream.JsonReader.syntaxError(JsonReader.java:1817)
at knot//com.google.gson.stream.JsonReader.doPeek(JsonReader.java:616)
at knot//com.google.gson.stream.JsonReader.hasNext(JsonReader.java:538)
at knot//com.google.gson.internal.bind.JsonElementTypeAdapter.read(JsonElementTypeAdapter.java:95)
at knot//com.google.gson.internal.bind.JsonElementTypeAdapter.read(JsonElementTypeAdapter.java:35)
at knot//com.google.gson.internal.Streams.parse(Streams.java:46)
... 27 more
[19:47:37] [Render thread/INFO]: Registered creative tab for villagerpack 'More Villagers' (namespace: morevillagers)
[19:47:37] [Render thread/WARN]: Failed to load pack.mcmeta for pack: mru
com.google.gson.JsonSyntaxException: com.google.gson.stream.MalformedJsonException: Unterminated object at line 4 column 26 path $.pack.pack_format
See https://github.com/google/gson/blob/main/Troubleshooting.md#malformed-json
at knot//com.google.gson.internal.Streams.parse(Streams.java:58)
at knot//com.google.gson.JsonParser.parseReader(JsonParser.java:144)
at knot//com.google.gson.JsonParser.parseReader(JsonParser.java:110)
at knot//com.frikinjay.villagerapi.villagerpack.VillagerPackLoader$VillagerPack.loadPackMeta(VillagerPackLoader.java:301)
at knot//com.frikinjay.villagerapi.villagerpack.VillagerPackLoader$VillagerPack.<init>(VillagerPackLoader.java:251)
at knot//com.frikinjay.villagerapi.villagerpack.VillagerPackLoader.lambda$discoverPacks$2(VillagerPackLoader.java:111)
at java.base/java.util.HashMap.forEach(HashMap.java:1429)
at knot//com.frikinjay.villagerapi.villagerpack.VillagerPackLoader.discoverPacks(VillagerPackLoader.java:106)
at knot//com.frikinjay.villagerapi.villagerpack.VillagerPackLoader.loadAllPacks(VillagerPackLoader.java:45)
at knot//com.frikinjay.villagerapi.villagerpack.PackInitializationOrchestrator.initializeEarly(PackInitializationOrchestrator.java:40)
at knot//com.frikinjay.villagerapi.VillagerAPI.init(VillagerAPI.java:17)
at knot//com.frikinjay.villagerapi.fabric.VillagerAPIFabric.onInitialize(VillagerAPIFabric.java:25)
at net.fabricmc.loader.impl.FabricLoaderImpl.invokeEntrypoints(FabricLoaderImpl.java:405)
at net.fabricmc.loader.impl.game.minecraft.Hooks.startClient(Hooks.java:52)
at knot//fudge.notenoughcrashes.fabric.mixinhandlers.ModLoaders.fabricEntrypoints(ModLoaders.java:9)
at knot//net.minecraft.class_310.redirect$hhk000$notenoughcrashes$catchFabricInit(class_310.java:31131)
at knot//net.minecraft.class_310.<init>(class_310.java:475)
at knot//net.minecraft.client.main.Main.main(Main.java:234)
at net.fabricmc.loader.impl.game.minecraft.MinecraftGameProvider.launch(MinecraftGameProvider.java:514)
at net.fabricmc.loader.impl.launch.knot.Knot.launch(Knot.java:72)
at net.fabricmc.loader.impl.launch.knot.KnotClient.main(KnotClient.java:23)
at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)
at java.base/java.lang.reflect.Method.invoke(Method.java:580)
at org.multimc.onesix.OneSixLauncher.launchWithMainClass(OneSixLauncher.java:243)
at org.multimc.onesix.OneSixLauncher.launch(OneSixLauncher.java:278)
at org.multimc.EntryPoint.listen(EntryPoint.java:143)
at org.multimc.EntryPoint.main(EntryPoint.java:34)
Caused by: com.google.gson.stream.MalformedJsonException: Unterminated object at line 4 column 26 path $.pack.pack_format
See https://github.com/google/gson/blob/main/Troubleshooting.md#malformed-json
at knot//com.google.gson.stream.JsonReader.syntaxError(JsonReader.java:1817)
at knot//com.google.gson.stream.JsonReader.doPeek(JsonReader.java:616)
at knot//com.google.gson.stream.JsonReader.hasNext(JsonReader.java:538)
at knot//com.google.gson.internal.bind.JsonElementTypeAdapter.read(JsonElementTypeAdapter.java:95)
at knot//com.google.gson.internal.bind.JsonElementTypeAdapter.read(JsonElementTypeAdapter.java:35)
at knot//com.google.gson.internal.Streams.parse(Streams.java:46)
... 26 more
[19:47:37] [Render thread/INFO]: Found 1 villager pack(s): 0 from villagerpacks/, 1 from mods/
[19:47:37] [Render thread/INFO]: Loading mod JAR 'More Villagers' (namespace: morevillagers)
[19:47:37] [Render thread/INFO]: Early pack initialization complete
[19:47:37] [Render thread/INFO]: Registering 1 villager types from packs
[19:47:37] [Render thread/INFO]: Registered villager type from pack: badlands
[19:47:37] [Render thread/INFO]: Registering 8 map decoration types from packs
[19:47:37] [Render thread/INFO]: Registered map decoration type from pack: swamp_hut_decoration -> swamp_hut_decoration (keys: morevillagers:swamp_hut_decoration, swamp_hut_decoration)
[19:47:37] [Render thread/INFO]: Registered map decoration type from pack: pillager_outpost_decoration -> pillager_outpost_decoration (keys: morevillagers:pillager_outpost_decoration, pillager_outpost_decoration)
[19:47:37] [Render thread/INFO]: Registered map decoration type from pack: mineshaft_decoration -> mineshaft_decoration (keys: morevillagers:mineshaft_decoration, mineshaft_decoration)
[19:47:37] [Render thread/INFO]: Registered map decoration type from pack: jungle_temple_decoration -> jungle_temple_decoration (keys: morevillagers:jungle_temple_decoration, jungle_temple_decoration)
[19:47:37] [Render thread/INFO]: Registered map decoration type from pack: fortress_decoration -> fortress_decoration (keys: morevillagers:fortress_decoration, fortress_decoration)
[19:47:37] [Render thread/INFO]: Registered map decoration type from pack: end_city_decoration -> end_city_decoration (keys: morevillagers:end_city_decoration, end_city_decoration)
[19:47:37] [Render thread/INFO]: Registered map decoration type from pack: bastion_remnant_decoration -> bastion_remnant_decoration (keys: morevillagers:bastion_remnant_decoration, bastion_remnant_decoration)
[19:47:37] [Render thread/INFO]: Registered map decoration type from pack: ancient_city_decoration -> ancient_city_decoration (keys: morevillagers:ancient_city_decoration, ancient_city_decoration)
[19:47:37] [Render thread/INFO]: Creating 8 structure tags from packs
[19:47:37] [Render thread/INFO]: Created structure tag from pack: TagKey[minecraft:worldgen/structure / morevillagers:on_swamp_hut_explorer_maps]
[19:47:37] [Render thread/INFO]: Created structure tag from pack: TagKey[minecraft:worldgen/structure / morevillagers:on_pillager_outpost_explorer_maps]
[19:47:37] [Render thread/INFO]: Created structure tag from pack: TagKey[minecraft:worldgen/structure / morevillagers:on_mineshaft_explorer_maps]
[19:47:37] [Render thread/INFO]: Created structure tag from pack: TagKey[minecraft:worldgen/structure / morevillagers:on_jungle_temple_explorer_maps]
[19:47:37] [Render thread/INFO]: Created structure tag from pack: TagKey[minecraft:worldgen/structure / morevillagers:on_fortress_explorer_maps]
[19:47:37] [Render thread/INFO]: Created structure tag from pack: TagKey[minecraft:worldgen/structure / morevillagers:on_end_city_explorer_maps]
[19:47:37] [Render thread/INFO]: Created structure tag from pack: TagKey[minecraft:worldgen/structure / morevillagers:on_bastion_remnant_explorer_maps]
[19:47:37] [Render thread/INFO]: Created structure tag from pack: TagKey[minecraft:worldgen/structure / morevillagers:on_ancient_city_maps]
[19:47:37] [Render thread/INFO]: Registering 10 POI types from packs
[19:47:37] [Render thread/INFO]: Registered POI type from pack: woodworker with namespace: morevillagers
[19:47:37] [Render thread/INFO]: Registered POI type from pack: oceanographer with namespace: morevillagers
[19:47:37] [Render thread/INFO]: Registered POI type from pack: netherian with namespace: morevillagers
[19:47:37] [Render thread/INFO]: Registered POI type from pack: miner with namespace: morevillagers
[19:47:37] [Render thread/INFO]: Registered POI type from pack: iceman with namespace: morevillagers
[19:47:37] [Render thread/INFO]: Registered POI type from pack: hunter with namespace: morevillagers
[19:47:37] [Render thread/INFO]: Registered POI type from pack: florist with namespace: morevillagers
[19:47:37] [Render thread/INFO]: Registered POI type from pack: explorer with namespace: morevillagers
[19:47:37] [Render thread/INFO]: Registered POI type from pack: engineer with namespace: morevillagers
[19:47:37] [Render thread/INFO]: Registered POI type from pack: enderian with namespace: morevillagers
[19:47:37] [Render thread/INFO]: Registering 10 professions from packs
[19:47:37] [Render thread/INFO]: Registered profession from pack: woodworker
[19:47:37] [Render thread/INFO]: Registered profession from pack: oceanographer
[19:47:37] [Render thread/INFO]: Registered profession from pack: netherian
[19:47:37] [Render thread/INFO]: Registered profession from pack: miner
[19:47:37] [Render thread/INFO]: Registered profession from pack: iceman
[19:47:37] [Render thread/INFO]: Registered profession from pack: hunter
[19:47:37] [Render thread/INFO]: Registered profession from pack: florist
[19:47:37] [Render thread/INFO]: Registered profession from pack: explorer
[19:47:37] [Render thread/INFO]: Registered profession from pack: engineer
[19:47:37] [Render thread/INFO]: Registered profession from pack: enderian
[19:47:37] [Render thread/INFO]: Staging 10 gifts from packs
[19:47:37] [Render thread/INFO]: Registered gift from pack: woodworker (will be applied lazily)
[19:47:37] [Render thread/INFO]: Registered gift from pack: oceanographer (will be applied lazily)
[19:47:37] [Render thread/INFO]: Registered gift from pack: netherian (will be applied lazily)
[19:47:37] [Render thread/INFO]: Registered gift from pack: miner (will be applied lazily)
[19:47:37] [Render thread/INFO]: Registered gift from pack: iceman (will be applied lazily)
[19:47:37] [Render thread/INFO]: Registered gift from pack: hunter (will be applied lazily)
[19:47:37] [Render thread/INFO]: Registered gift from pack: florist (will be applied lazily)
[19:47:37] [Render thread/INFO]: Registered gift from pack: explorer (will be applied lazily)
[19:47:37] [Render thread/INFO]: Registered gift from pack: engineer (will be applied lazily)
[19:47:37] [Render thread/INFO]: Registered gift from pack: enderian (will be applied lazily)
[19:47:37] [Render thread/INFO]: Content registration complete
[19:47:37] [Render thread/INFO]: Registered creative tab for villagerpack 'More Villagers' with 0 items
[19:47:37] [Render thread/INFO]: Registered villagerpack repository sources
[19:47:37] [Render thread/INFO]: [Collective] JSON file 'entity_names.json' generation requested by mod 'villagernames'.
[19:47:37] [Render thread/INFO]: Constructing components for visualworkbench:common
[19:47:37] [Render thread/INFO]: Dispatching loading event for config visualworkbench-client.toml
[19:47:37] [Render thread/INFO]: Voice Messages - Common initialized
[19:47:37] [Render thread/INFO]: [STDOUT]: Initialize WeaponMaster
[19:47:37] [Render thread/INFO]: Registering All The Wood We've Got Blocks
[19:47:37] [Render thread/INFO]: Registering Oh The Biomes We've Gone Wood
[19:47:37] [Render thread/INFO]: Registering All The Wood We've Got Block Entities
[19:47:39] [Render thread/WARN]: Failed to get system info for Render Extensions
java.lang.IllegalStateException: Can't getDevice() before it was initialized
at knot//com.mojang.blaze3d.systems.RenderSystem.getDevice(RenderSystem.java:299)
at knot//net.minecraft.class_310.method_68671(class_310.java:2527)
at knot//net.minecraft.class_6396.method_37123(class_6396.java:78)
at knot//net.minecraft.class_310.method_37274(class_310.java:2527)
at knot//net.minecraft.class_310.method_22681(class_310.java:2497)
at knot//net.minecraft.client.main.Main.main(Main.java:243)
at net.fabricmc.loader.impl.game.minecraft.MinecraftGameProvider.launch(MinecraftGameProvider.java:514)
at net.fabricmc.loader.impl.launch.knot.Knot.launch(Knot.java:72)
at net.fabricmc.loader.impl.launch.knot.KnotClient.main(KnotClient.java:23)
at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)
at java.base/java.lang.reflect.Method.invoke(Method.java:580)
at org.multimc.onesix.OneSixLauncher.launchWithMainClass(OneSixLauncher.java:243)
at org.multimc.onesix.OneSixLauncher.launch(OneSixLauncher.java:278)
at org.multimc.EntryPoint.listen(EntryPoint.java:143)
at org.multimc.EntryPoint.main(EntryPoint.java:34)
[19:47:39] [Render thread/WARN]: @Final field field_61862:Ljava/util/List; in flora.mixins.json:AtlasManagerMixin from mod flora should be final
---- Minecraft Crash Report ----
// Don't do that.
Time: 2026-06-09 19:47:39
Description: Initializing game
java.lang.RuntimeException: Could not execute entrypoint stage 'main' due to errors, provided by 'wishfulrecipes' at 'com.mars.wishfulrecipes.WishfulRecipes'!
at net.fabricmc.loader.impl.FabricLoaderImpl.lambda$invokeEntrypoints$0(FabricLoaderImpl.java:409)
at net.fabricmc.loader.impl.util.ExceptionUtil.gatherExceptions(ExceptionUtil.java:33)
at net.fabricmc.loader.impl.FabricLoaderImpl.invokeEntrypoints(FabricLoaderImpl.java:407)
at net.fabricmc.loader.impl.game.minecraft.Hooks.startClient(Hooks.java:52)
at knot//fudge.notenoughcrashes.fabric.mixinhandlers.ModLoaders.fabricEntrypoints(ModLoaders.java:9)
at knot//net.minecraft.class_310.redirect$hhk000$notenoughcrashes$catchFabricInit(class_310.java:31131)
at knot//net.minecraft.class_310.<init>(class_310.java:475)
at knot//net.minecraft.client.main.Main.main(Main.java:234)
at net.fabricmc.loader.impl.game.minecraft.MinecraftGameProvider.launch(MinecraftGameProvider.java:514)
at net.fabricmc.loader.impl.launch.knot.Knot.launch(Knot.java:72)
at net.fabricmc.loader.impl.launch.knot.KnotClient.main(KnotClient.java:23)
at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)
at java.base/java.lang.reflect.Method.invoke(Method.java:580)
at org.multimc.onesix.OneSixLauncher.launchWithMainClass(OneSixLauncher.java:243)
at org.multimc.onesix.OneSixLauncher.launch(OneSixLauncher.java:278)
at org.multimc.EntryPoint.listen(EntryPoint.java:143)
at org.multimc.EntryPoint.main(EntryPoint.java:34)
Caused by: net.minecraft.class_151: Non [a-z0-9_.-] character in namespace of location: #c:nuggets
at knot//net.minecraft.class_2960.method_45135(class_2960.java:250)
at knot//net.minecraft.class_2960.method_60936(class_2960.java:39)
at knot//net.minecraft.class_2960.method_12838(class_2960.java:71)
at knot//net.minecraft.class_2960.method_60654(class_2960.java:47)
at knot//com.mars.deimos.datagen.DeimosRecipeGenerator.createShapelessRecipeJson(DeimosRecipeGenerator.java:40)
at knot//com.mars.wishfulrecipes.CommonClass.init(CommonClass.java:54)
at knot//com.mars.wishfulrecipes.WishfulRecipes.onInitialize(WishfulRecipes.java:8)
at net.fabricmc.loader.impl.FabricLoaderImpl.invokeEntrypoints(FabricLoaderImpl.java:405)
... 14 more
A detailed walkthrough of the error, its code path and all known details is as follows:
---------------------------------------------------------------------------------------
-- Head --
Thread: Render thread
Stacktrace:
at net.fabricmc.loader.impl.FabricLoaderImpl.lambda$invokeEntrypoints$0(FabricLoaderImpl.java:409)
at net.fabricmc.loader.impl.util.ExceptionUtil.gatherExceptions(ExceptionUtil.java:33)
at net.fabricmc.loader.impl.FabricLoaderImpl.invokeEntrypoints(FabricLoaderImpl.java:407)
at net.fabricmc.loader.impl.game.minecraft.Hooks.startClient(Hooks.java:52)
at knot//fudge.notenoughcrashes.fabric.mixinhandlers.ModLoaders.fabricEntrypoints(ModLoaders.java:9)
at knot//net.minecraft.class_310.redirect$hhk000$notenoughcrashes$catchFabricInit(class_310.java:31131)
at knot//net.minecraft.class_310.<init>(class_310.java:475)
-- Initialization --
Details:
Modules:
ADVAPI32.dll:API avancées Windows 32:10.0.26100.8457 (WinBuild.160101.0800):Microsoft Corporation
COMCTL32.dll:Bibliothèque de contrôles de l’expérience utilisateur:6.10 (WinBuild.160101.0800):Microsoft Corporation
CRYPT32.dll:Crypto API32:10.0.26100.8457 (WinBuild.160101.0800):Microsoft Corporation
CRYPTBASE.dll:Base cryptographic API DLL:10.0.26100.8246 (WinBuild.160101.0800):Microsoft Corporation
CRYPTSP.dll:Cryptographic Service Provider API:10.0.26100.8328 (WinBuild.160101.0800):Microsoft Corporation
DBGHELP.DLL:Windows Image Helper:10.0.26100.8328 (WinBuild.160101.0800):Microsoft Corporation
DNSAPI.dll:DNS DLL de l’API Client:10.0.26100.8457 (WinBuild.160101.0800):Microsoft Corporation
GDI32.dll:GDI Client DLL:10.0.26100.8328 (WinBuild.160101.0800):Microsoft Corporation
IMM32.DLL:Multi-User Windows IMM32 API Client DLL:10.0.26100.8328 (WinBuild.160101.0800):Microsoft Corporation
IPHLPAPI.DLL:API de l’application d’assistance IP:10.0.26100.8457 (WinBuild.160101.0800):Microsoft Corporation
KERNEL32.DLL:DLL du client API BASE Windows NT:10.0.26100.8457 (WinBuild.160101.0800):Microsoft Corporation
KERNELBASE.dll:DLL du client API BASE Windows NT:10.0.26100.8457 (WinBuild.160101.0800):Microsoft Corporation
NSI.dll:NSI User-mode interface DLL:10.0.26100.8246 (WinBuild.160101.0800):Microsoft Corporation
NTASN1.dll:Microsoft ASN.1 API:10.0.26100.1 (WinBuild.160101.0800):Microsoft Corporation
OLEAUT32.dll:OLEAUT32.DLL:10.0.26100.8328 (WinBuild.160101.0800):Microsoft Corporation
Ole32.dll:Microsoft OLE pour Windows:10.0.26100.8457 (WinBuild.160101.0800):Microsoft Corporation
POWRPROF.dll:DLL d’assistance du profil d’alimentation:10.0.26100.8457 (WinBuild.160101.0800):Microsoft Corporation
PSAPI.DLL:Process Status Helper:10.0.26100.1 (WinBuild.160101.0800):Microsoft Corporation
Pdh.dll:DLL d’application d’assistance Windows pour les données de performance:10.0.26100.8457 (WinBuild.160101.0800):Microsoft Corporation
RPCRT4.dll:Runtime d’appel de procédure distante:10.0.26100.8457 (WinBuild.160101.0800):Microsoft Corporation
SHCORE.dll:SHCORE:10.0.26100.8457 (WinBuild.160101.0800):Microsoft Corporation
SHELL32.dll:DLL commune du shell Windows:10.0.26100.8457 (WinBuild.160101.0800):Microsoft Corporation
UMPDC.dll:User Mode Power Dependency Coordinator:10.0.26100.8115 (WinBuild.160101.0800):Microsoft Corporation
USER32.dll:DLL client de l’API uilisateur de Windows multi-utilisateurs:10.0.26100.8457 (WinBuild.160101.0800):Microsoft Corporation
USERENV.dll:Userenv:10.0.26100.8457 (WinBuild.160101.0800):Microsoft Corporation
VCRUNTIME140.dll:Microsoft® C Runtime Library:14.31.31103.0:Microsoft Corporation
VERSION.dll:Version Checking and File Installation Libraries:10.0.26100.1150 (WinBuild.160101.0800):Microsoft Corporation
WINHTTP.dll:Services HTTP Windows:10.0.26100.8457 (WinBuild.160101.0800):Microsoft Corporation
WINMM.dll:DLL API MCI:10.0.26100.8457 (WinBuild.160101.0800):Microsoft Corporation
WS2_32.dll:Windows Socket 2.0 32-Bit DLL:10.0.26100.8457 (WinBuild.160101.0800):Microsoft Corporation
amsi.dll:Anti-Malware Scan Interface:10.0.26100.7309 (WinBuild.160101.0800):Microsoft Corporation
apphelp.dll:Fichier DLL du client de compatibilité des applications:10.0.26100.8457 (WinBuild.160101.0800):Microsoft Corporation
aswAMSI.dll:Avast AMSI COM object:26.5.10994.0:Gen Digital Inc.
aswhook.dll:Avast Hook Library:26.5.10994.0:Gen Digital Inc.
awt.dll:OpenJDK Platform binary:21.0.2.0:Oracle Corporation
bcrypt.dll:Bibliothèque de primitives de chiffrement Windows:10.0.26100.8457 (WinBuild.160101.0800):Microsoft Corporation
bcryptPrimitives.dll:Windows Cryptographic Primitives Library:10.0.26100.8328 (WinBuild.160101.0800):Microsoft Corporation
clbcatq.dll:COM+ Configuration Catalog:2001.12.10941.16384 (WinBuild.160101.0800):Microsoft Corporation
combase.dll:Microsoft COM pour Windows:10.0.26100.8457 (WinBuild.160101.0800):Microsoft Corporation
dbgcore.DLL:Windows Core Debugging Helpers:10.0.26100.8328 (WinBuild.160101.0800):Microsoft Corporation
dxcore.dll:DXCore:10.0.26100.8328 (WinBuild.160101.0800):Microsoft Corporation
extnet.dll:OpenJDK Platform binary:21.0.2.0:Oracle Corporation
fwpuclnt.dll:API en mode utilisateur FWP/IPsec:10.0.26100.8457 (WinBuild.160101.0800):Microsoft Corporation
gdi32full.dll:GDI Client DLL:10.0.26100.8457 (WinBuild.160101.0800):Microsoft Corporation
glfw.dll:GLFW 3.4.0 DLL:3.4.0:GLFW
java.dll:OpenJDK Platform binary:21.0.2.0:Oracle Corporation
javaw.exe:OpenJDK Platform binary:21.0.2.0:Oracle Corporation
jemalloc.dll
jimage.dll:OpenJDK Platform binary:21.0.2.0:Oracle Corporation
jli.dll:OpenJDK Platform binary:21.0.2.0:Oracle Corporation
jna16913810522923957533.dll:JNA native library:7.0.2:Java(TM) Native Access (JNA)
jsvml.dll:OpenJDK Platform binary:21.0.2.0:Oracle Corporation
jvm.dll:OpenJDK 64-Bit server VM:21.0.2.0:Oracle Corporation
kernel.appcore.dll:AppModel API Host:10.0.26100.8328 (WinBuild.160101.0800):Microsoft Corporation
lwjgl.dll
lwjgl_stb.dll
management.dll:OpenJDK Platform binary:21.0.2.0:Oracle Corporation
management_ext.dll:OpenJDK Platform binary:21.0.2.0:Oracle Corporation
msvcp140.dll:Microsoft® C Runtime Library:14.31.31103.0:Microsoft Corporation
msvcp_win.dll:Microsoft® C Runtime Library:10.0.26100.8328 (WinBuild.160101.0800):Microsoft Corporation
msvcrt.dll:Windows NT CRT DLL:7.0.26100.8246 (WinBuild.160101.0800):Microsoft Corporation
mswsock.dll:Fournisseur de service Sockets 2.0 de Microsoft Windows:10.0.26100.8457 (WinBuild.160101.0800):Microsoft Corporation
napinsp.dll:Fournisseur Shim d’affectation de noms de messagerie:10.0.26100.8457 (WinBuild.160101.0800):Microsoft Corporation
ncrypt.dll:Routeur Windows NCrypt:10.0.26100.8457 (WinBuild.160101.0800):Microsoft Corporation
net.dll:OpenJDK Platform binary:21.0.2.0:Oracle Corporation
nio.dll:OpenJDK Platform binary:21.0.2.0:Oracle Corporation
nlansp_c.dll:NLA Namespace Service Provider DLL:10.0.26100.8115 (WinBuild.160101.0800):Microsoft Corporation
ntdll.dll:DLL Couche NT:10.0.26100.8457 (WinBuild.160101.0800):Microsoft Corporation
perfos.dll:DLL d’objets Performances système Windows:10.0.26100.8457 (WinBuild.160101.0800):Microsoft Corporation
pfclient.dll:SysMain Client:10.0.26100.4202 (WinBuild.160101.0800):Microsoft Corporation
profapi.dll:User Profile Basic API:10.0.26100.8328 (WinBuild.160101.0800):Microsoft Corporation
rasadhlp.dll:Remote Access AutoDial Helper:10.0.26100.7920 (WinBuild.160101.0800):Microsoft Corporation
rsaenh.dll:Microsoft Enhanced Cryptographic Provider:10.0.26100.1 (WinBuild.160101.0800):Microsoft Corporation
sechost.dll:Host for SCM/SDDL/LSA Lookup APIs:10.0.26100.1 (WinBuild.160101.0800):Microsoft Corporation
shlwapi.dll:Bibliothèque d’utilitaires légers du Shell:10.0.26100.8457 (WinBuild.160101.0800):Microsoft Corporation
sunmscapi.dll:OpenJDK Platform binary:21.0.2.0:Oracle Corporation
ucrtbase.dll:Microsoft® C Runtime Library:10.0.26100.8328 (WinBuild.160101.0800):Microsoft Corporation
vcruntime140_1.dll:Microsoft® C Runtime Library:14.31.31103.0:Microsoft Corporation
verify.dll:OpenJDK Platform binary:21.0.2.0:Oracle Corporation
win32u.dll:Win32u:10.0.26100.8457 (WinBuild.160101.0800):Microsoft Corporation
windows.storage.dll:API de stockage Microsoft WinRT:10.0.26100.8457 (WinBuild.160101.0800):Microsoft Corporation
winrnr.dll:LDAP RnR Provider DLL:10.0.26100.8328 (WinBuild.160101.0800):Microsoft Corporation
wshbth.dll:Windows Sockets Helper DLL:10.0.26100.5074 (WinBuild.160101.0800):Microsoft Corporation
wshunix.dll:AF_UNIX Winsock2 Helper DLL:10.0.26100.1 (WinBuild.160101.0800):Microsoft Corporation
zip.dll:OpenJDK Platform binary:21.0.2.0:Oracle Corporation
Stacktrace:
at knot//net.minecraft.client.main.Main.main(Main.java:234)
at net.fabricmc.loader.impl.game.minecraft.MinecraftGameProvider.launch(MinecraftGameProvider.java:514)
at net.fabricmc.loader.impl.launch.knot.Knot.launch(Knot.java:72)
at net.fabricmc.loader.impl.launch.knot.KnotClient.main(KnotClient.java:23)
at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)
at java.base/java.lang.reflect.Method.invoke(Method.java:580)
at org.multimc.onesix.OneSixLauncher.launchWithMainClass(OneSixLauncher.java:243)
at org.multimc.onesix.OneSixLauncher.launch(OneSixLauncher.java:278)
at org.multimc.EntryPoint.listen(EntryPoint.java:143)
at org.multimc.EntryPoint.main(EntryPoint.java:34)
-- System Details --
Details:
Minecraft Version: 1.21.11
Minecraft Version ID: 1.21.11
Operating System: Windows 11 (amd64) version 10.0
Java Version: 21.0.2, Oracle Corporation
Java VM Version: OpenJDK 64-Bit Server VM (mixed mode, sharing), Oracle Corporation
Memory: 1227156288 bytes (1170 MiB) / 2369781760 bytes (2260 MiB) up to 8388608000 bytes (8000 MiB)
CPUs: 12
Processor Vendor: GenuineIntel
Processor Name: 13th Gen Intel(R) Core(TM) i5-1334U
Identifier: Intel64 Family 6 Model 186 Stepping 3
Microarchitecture: Raptor Lake
Frequency (GHz): 2.50
Number of physical packages: 1
Number of physical CPUs: 10
Number of logical CPUs: 12
Graphics card #0 name: Intel(R) Iris(R) Xe Graphics
Graphics card #0 vendor: Intel Corporation
Graphics card #0 VRAM (MiB): 2048.00
Graphics card #0 deviceId: VideoController1
Graphics card #0 versionInfo: 32.0.101.7076
Memory slot #0 capacity (MiB): 8192.00
Memory slot #0 clockSpeed (GHz): 3.20
Memory slot #0 type: DDR4
Memory slot #1 capacity (MiB): 8192.00
Memory slot #1 clockSpeed (GHz): 3.20
Memory slot #1 type: DDR4
Virtual memory max (MiB): 36258.50
Virtual memory used (MiB): 17796.42
Swap memory total (MiB): 20249.36
Swap memory used (MiB): 1139.91
Space in storage for jna.tmpdir (MiB): <path not set>
Space in storage for org.lwjgl.system.SharedLibraryExtractPath (MiB): <path not set>
Space in storage for io.netty.native.workdir (MiB): <path not set>
Space in storage for java.io.tmpdir (MiB): available: 44348.43, total: 486735.31
Space in storage for workdir (MiB): available: 44348.43, total: 486735.31
JVM Flags: 3 total; -XX:HeapDumpPath=MojangTricksIntelDriversForPerformance_javaw.exe_minecraft.exe.heapdump -Xms500m -Xmx8000m
Debug Flags: 0 total;
Fabric Mods:
adabranium: Adabranium 2.7.0+1.21.11
additionallanterns: Additional Lanterns 1.1.2
addonslib: AddonsLib 1.21.6-1.6
adorabuild_structures: AdoraBuild: Structures 2.11.0
advancedlocate: AdvancedLocate 1.4.1-1.21.11
advancednetherite: Advanced Netherite 2.3.1-1.21.11
advancements_reloaded: Advancements Reloaded 0.12.0
aerialhell: Aerial Hell 1.0.0
ali: AdvancedLootInfo 1.7.0
almanac: Almanac 1.6.2
ambientsounds: AmbientSounds 6.3.5
animal_feeding_trough: Animal Feeding Trough 1.2.0+1.21.11
animalgarden_manatee: Animal Garden - Manatee 0.140.0
animalgarden_meerkat: Animal Garden - Meerkat 1.0.1
animalgarden_mouse: Animal Garden - Mouse 1.0.1
animalgarden_owl: Animal Garden - Owl 0.140.0
animalgarden_porcupine: Animal Garden - Porcupine 0.140.0
animalgarden_redpanda: Animal Garden - Red Panda 0.140.0
animalgarden_seaotter: animalgarden_seaotter 0.140.0
appleskin: AppleSkin 3.0.8+mc1.21.11
arcanelanterns: Arcane Lanterns 21.11.1
architectury: Architectury 19.0.1
armored-elytra: Armored Elytra 1.12.0
automodpack: AutoModpack 4.0.5
automodpack_mod: AutoModpack 4.0.5
axolotlitemfix: Axolotl Item Fix 1.1.11
badoptimizations: BadOptimizations 2.4.1
balm: Balm 21.11.6
kuma_api: KumaAPI 21.11.12
basicweapons: Basic Weapons 2.3.1
beautify: Beautify 1.8.0+1.21.11
better-selection: Better Text Selection 1.8
betterdays: BetterDays 3.3.6.3
whitenoise: WhiteNoise 2.0.7
betterstats: Better Statistics Screen 5.0.0-beta.5+fabric-1.21.11
bigger_stack_size: Bigger Stack Size 1-v2.4.2
biomesoplenty: BiomesOPlenty 21.11.0.28
net_jodah_typetools: typetools 0.6.3
biomeswevegone: Oh The Biomes We've Gone 4.3.1
blockrunner: Block Runner 21.11.0
blurperfected: Blur Perfected 5.3.2-rev.3
boatiview: Boat Item View 0.0.8
bronze: Bronze 2.1.5
butterbee: ButterBee 1.0.4
camerapture: Camerapture 1.10.12
dev_matrixlab_webp4j: webp4j 1.3.0
camerautils: Camera Utils 1.21.11-1.1.2
fabric-api-base: Fabric API Base 1.0.5+4ebb5c083e
fabric-key-binding-api-v1: Fabric Key Binding API (v1) 1.1.7+4fc5413f3e
fabric-lifecycle-events-v1: Fabric Lifecycle Events (v1) 2.6.15+4ebb5c083e
fabric-resource-loader-v0: Fabric Resource Loader (v0) 3.3.4+4fc5413f3e
fabric-resource-loader-v1: Fabric Resource Loader (v1) 1.0.10+78c8b4663e
capes: Capes 1.5.10+1.21.11
cardinal-components: Cardinal Components API 7.3.0
cardinal-components-base: Cardinal Components API (base) 7.3.0
cardinal-components-block: Cardinal Components API (blocks) 7.3.0
cardinal-components-chunk: Cardinal Components API (chunks) 7.3.0
cardinal-components-entity: Cardinal Components API (entities) 7.3.0
cardinal-components-item: Cardinal Components API (items) 7.3.0
cardinal-components-level: Cardinal Components API (world saves) 7.3.0
cardinal-components-scoreboard: Cardinal Components API (scoreboard) 7.3.0
cardinal-components-world: Cardinal Components API (worlds) 7.3.0
carryon: Carry On 2.9.0
chat_heads: Chat Heads 1.2.1
chatanimation: ChatAnimation 1.1.3
chunksfadein: Chunks Fade In 3.0.20-1.21.11
com_moandjiezana_toml_toml4j: toml4j 0.7.2
classicpipes: Classic Pipes 1.0.10
clickthrough: ClickThrough Plus 3.5.4+1.21.11
folk_sisby_kaleido-config: kaleido-config 0.3.3+1.3.2
clumps: Clumps 29.0.0.1
coins: Coins 3.0.0
collective: Collective 8.22
configurable: Configurable 3.3.2
com_google_auto_service_auto-service: auto-service 1.0
org_quiltmc_parsers_gson: gson 0.3.1
org_quiltmc_parsers_json: json 0.3.1
connectedglass: Connected Glass 1.1.14
connectiblechains: Connectible Chains 2.5.7+1.21.11
com_moulberry_mixinconstraints: mixinconstraints 1.0.9
controlling: Controlling 29.0.1
corgilib: CorgiLib 9.0.0.0
cratedelight: Crate Delight 25.9.22-1.21.7-fabric
create: Create Fly 6.0.9-3
creativecore: CreativeCore 2.14.9
net_neoforged_bus: bus 7.2.0
cubes-without-borders: Cubes Without Borders 3.0.0-build.14+mc1.21.11
cullleaves: Cull Leaves 4.1.1.1
cupboard: cupboard 1.21.11-3.1
cutthrough: Cut Through 21.11.0
decocraft: Decocraft 3.0.7
decocraft_nature: Decocraft Nature 1.0.5
deimos: Deimos 2.5
detailabreconst: Detail Armor Bar Reconstructed 5.2.0+1.21.9_11-fabric
displaydelight: Display Delight [Fabric] 1.6.1-mc1.21.11
drippyloadingscreen: Drippy Loading Screen 3.1.1
dynamic_fps: Dynamic FPS 3.11.4
net_lostluma_battery: battery 2.0.0
dynamiccrosshair: Dynamic Crosshair 9.11
dynamiccrosshair-api: DynamicCrosshair API 1.2
libbamboo: LibBamboo 2.25
dynamiccrosshaircompat: Dynamic Crosshair Compat 4.4
easymagic: Easy Magic 21.11.0
easyshulkerboxes: Easy Shulker Boxes 21.11.0
iteminteractions: Item Interactions 21.11.0
elementa: Elementa 712
emojitype: Emoji Type 3.0.0-1.21.10
org_yaml_snakeyaml: snakeyaml 2.5
enchdesc: EnchantmentDescriptions 21.11.1
enderitemod: Enderite Mod 1.8.1
enderscape: Enderscape 2.1.0
mixson: Mixson 1.3.2
endless_inventory: Endless Inventory 1.1.3.3
entity-view-distance: Entity View Distance 1.7.1+1.21.11
essential: Essential 1.3.10.8
essential-container: essential-container 1.0.0
essential-loader: essential-loader 1.2.5
eternalnether: Eternal Nether 21.11.0
evs: Enchanted Vertical Slabs 2.6.5
explorerscompass: Explorer's Compass 1.21.11-2.5.1-fabric
fabric-api: Fabric API 0.141.3+1.21.11
fabric-api-base: Fabric API Base 1.0.5+4ebb5c083e
fabric-api-lookup-api-v1: Fabric API Lookup API (v1) 1.6.114+20dc27073e
fabric-biome-api-v1: Fabric Biome API (v1) 17.1.1+4fc5413f3e
fabric-block-api-v1: Fabric Block API (v1) 1.1.10+4ebb5c083e
fabric-block-view-api-v2: Fabric BlockView API (v2) 1.0.39+4ebb5c083e
fabric-command-api-v2: Fabric Command API (v2) 2.4.7+6b42a6003e
fabric-content-registries-v0: Fabric Content Registries (v0) 10.2.14+4fc5413f3e
fabric-convention-tags-v1: Fabric Convention Tags 2.1.55+7f945d5b3e
fabric-convention-tags-v2: Fabric Convention Tags (v2) 2.17.3+8ef948ba3e
fabric-crash-report-info-v1: Fabric Crash Report Info (v1) 0.3.23+4ebb5c083e
fabric-data-attachment-api-v1: Fabric Data Attachment API (v1) 1.8.47+eed0806f3e
fabric-data-generation-api-v1: Fabric Data Generation API (v1) 23.4.0+69974c4e3e
fabric-dimensions-v1: Fabric Dimensions API (v1) 4.0.28+4fc5413f3e
fabric-entity-events-v1: Fabric Entity Events (v1) 3.1.1+1d0ab4303e
fabric-events-interaction-v0: Fabric Events Interaction (v0) 4.1.0+3b89ecf63e
fabric-game-rule-api-v1: Fabric Game Rule API (v1) 2.0.3+4fc5413f3e
fabric-item-api-v1: Fabric Item API (v1) 11.5.20+d0c46b9e3e
fabric-item-group-api-v1: Fabric Item Group API (v1) 4.2.36+4fc5413f3e
fabric-key-binding-api-v1: Fabric Key Binding API (v1) 1.1.7+4fc5413f3e
fabric-lifecycle-events-v1: Fabric Lifecycle Events (v1) 2.6.15+4ebb5c083e
fabric-loot-api-v2: Fabric Loot API (v2) 3.0.73+3f89f5a53e
fabric-loot-api-v3: Fabric Loot API (v3) 2.0.20+78c8b4663e
fabric-message-api-v1: Fabric Message API (v1) 6.1.12+4ebb5c083e
fabric-model-loading-api-v1: Fabric Model Loading API (v1) 6.0.15+4fc5413f3e
fabric-networking-api-v1: Fabric Networking API (v1) 5.1.5+ae1e07683e
fabric-object-builder-api-v1: Fabric Object Builder API (v1) 21.1.39+4fc5413f3e
fabric-particles-v1: Fabric Particles (v1) 4.2.11+4fc5413f3e
fabric-recipe-api-v1: Fabric Recipe API (v1) 8.2.3+4ebb5c083e
fabric-registry-sync-v0: Fabric Registry Sync (v0) 6.2.5+1718722b3e
fabric-renderer-api-v1: Fabric Renderer API (v1) 8.0.3+f4ffd2e53e
fabric-renderer-indigo: Fabric Renderer - Indigo 5.0.3+f4ffd2e53e
fabric-rendering-fluids-v1: Fabric Rendering Fluids (v1) 3.1.43+4ebb5c083e
fabric-rendering-v1: Fabric Rendering (v1) 16.2.10+0290ad933e
fabric-resource-conditions-api-v1: Fabric Resource Conditions API (v1) 5.0.35+4fc5413f3e
fabric-resource-loader-v0: Fabric Resource Loader (v0) 3.3.4+4fc5413f3e
fabric-resource-loader-v1: Fabric Resource Loader (v1) 1.0.10+78c8b4663e
fabric-screen-api-v1: Fabric Screen API (v1) 3.1.7+4ebb5c083e
fabric-screen-handler-api-v1: Fabric Screen Handler API (v1) 1.3.161+4fc5413f3e
fabric-serialization-api-v1: Fabric Serialization API (v1) 1.0.5+4ebb5c083e
fabric-sound-api-v1: Fabric Sound API (v1) 1.0.51+4fc5413f3e
fabric-tag-api-v1: Fabric Tag API (v1) 1.2.20+4fc5413f3e
fabric-transfer-api-v1: Fabric Transfer API (v1) 6.0.25+4fc5413f3e
fabric-transitive-access-wideners-v1: Fabric Transitive Access Wideners (v1) 7.1.0+014c8cec3e
fabric-language-kotlin: Fabric Language Kotlin 1.13.9+kotlin.2.3.10
org_jetbrains_kotlin_kotlin-reflect: kotlin-reflect 2.3.10
org_jetbrains_kotlin_kotlin-stdlib: kotlin-stdlib 2.3.10
org_jetbrains_kotlin_kotlin-stdlib-jdk7: kotlin-stdlib-jdk7 2.3.10
org_jetbrains_kotlin_kotlin-stdlib-jdk8: kotlin-stdlib-jdk8 2.3.10
org_jetbrains_kotlinx_atomicfu-jvm: atomicfu-jvm 0.31.0
org_jetbrains_kotlinx_kotlinx-coroutines-core-jvm: kotlinx-coroutines-core-jvm 1.10.2
org_jetbrains_kotlinx_kotlinx-coroutines-jdk8: kotlinx-coroutines-jdk8 1.10.2
org_jetbrains_kotlinx_kotlinx-datetime-jvm: kotlinx-datetime-jvm 0.7.1
org_jetbrains_kotlinx_kotlinx-io-bytestring-jvm: kotlinx-io-bytestring-jvm 0.8.2
org_jetbrains_kotlinx_kotlinx-io-core-jvm: kotlinx-io-core-jvm 0.8.2
org_jetbrains_kotlinx_kotlinx-serialization-cbor-jvm: kotlinx-serialization-cbor-jvm 1.10.0
org_jetbrains_kotlinx_kotlinx-serialization-core-jvm: kotlinx-serialization-core-jvm 1.10.0
org_jetbrains_kotlinx_kotlinx-serialization-json-jvm: kotlinx-serialization-json-jvm 1.10.0
fabricloader: Fabric Loader 0.18.4
mixinextras: MixinExtras 0.5.0
fancy_entity_renderer: Fancy Entity Renderer 0.5.3
fancymenu: FancyMenu 3.8.4
com_github_keksuccino_japng: japng 0.5.3
com_github_rtyley_animated-gif-lib-for-java: animated-gif-lib-for-java animated-gif-lib-1.7
farmersdelight: Farmer's Delight 1.21.11-3.4.6+refabricated
mm: Manningham Mills 2.3
farmersknives: Farmer's Knives 1.21.11-4.0.5
farmtweaks: FarmTweaks 1.8
fastitemframes: Fast Item Frames 21.11.1
ferritecore: FerriteCore 8.2.0
fishofthieves: Fish of Thieves 21.11.0.3
flora: flora 1.0.3-1.21.11
flowerymooblooms: Friends&Foes - Flowery Mooblooms 3.0.2
forgeconfigapiport: Forge Config API Port 21.11.1
com_electronwill_night-config_core: core 3.8.3
com_electronwill_night-config_toml: toml 3.8.3
forgivingvoid: Forgiving Void 21.11.3
friendsandfoes: Friends&Foes 4.0.19
frightsdelight: Fright's Delight 1.4.5
fusion: Fusion 1.2.12+a
fzzy_config: Fzzy Config 0.7.6+1.21.11
blue_endless_jankson: jankson 1.2.3
net_peanuuutz_tomlkt_tomlkt-jvm: tomlkt-jvm 0.3.7
geckolib: GeckoLib 5 5.4.3
giant_cherry_blossom_bonsai_tree: Giant Cherry Blossom Bonsai Tree 1.0.1
glitchcore: GlitchCore 21.11.0.2
gravestones: Gravestones 1.2.10
illagerinvasion: Illager Invasion 21.11.1
neoforgedatapackextensions: NeoForge Data Pack Extensions 21.11.3
immediatelyfast: ImmediatelyFast 1.14.2+1.21.11
net_lenni0451_reflect: Reflect 1.6.1+curseforge
immersiveores: ImmersiveOres 1.21.11-0.1
playerabilitylib: Pal 1.15.0
infinitetrading: Infinite Trading 5.0
inventoryessentials: Inventory Essentials 21.11.3
inventorymanagement: Inventory Management 1.6.1
iris: Iris 1.10.5+mc1.21.11
io_github_douira_glsl-transformer: glsl-transformer 3.0.0-pre3
org_anarres_jcpp: jcpp 1.4.14
org_antlr_antlr4-runtime: antlr4-runtime 4.13.1
itemphysiclite: ItemPhysicLite 1.6.10
jade: Jade 21.1.1+fabric
jademoddedentities: Jade Modded Entities 1.2.0
jamlib: JamLib 1.3.5+1.21.11
java: OpenJDK 64-Bit Server VM 21
jei: Just Enough Items 27.4.0.15
justenoughbreeding: Just Enough Breeding 1.6.6
konkrete: Konkrete 1.9.18
lambdynlights: LambDynamicLights 4.9.1+1.21.11
lambdynlights_runtime: LambDynamicLights (Runtime) 4.9.1+1.21.11
lambdynlights_api: LambDynamicLights (API) 4.9.1+1.21.11
yumi_commons_collections: Yumi Commons: Collections 1.0.0
yumi_commons_core: Yumi Commons: Core 1.0.0
yumi_commons_event: Yumi Commons: Event 1.0.0
pride: Pride Lib 1.5.1+1.21.11
spruceui: SpruceUI 9.1.0+1.21.11
yumi_mc_core: Yumi Minecraft Libraries: Foundation 1.0.0-beta.1+1.21.11
libipn: libIPN 6.6.2
lighterend: Lighter End 1.0.4-0-1.21.11
litematica: Litematica 0.26.0
conditional-mixin: conditional mixin 0.6.4
lithium: Lithium 0.21.3+mc1.21.11
lithostitched: Lithostitched 1.5.8+beta1
lolmblv: More Barrel Variants 1.8.0
lolmbv: More Bookshelf Variants 1.0.7
lolmcbv: More Chiseled Bookshelf Variants 1.7.3
lolmcmv: More Composter Variants 1.8.1
lolmcmv-aft: More Feeding Trough Variants 1.2.1
lolmcv: More Chest Variants 1.5.14
lootr: Lootr 1.21.11-1.20.34.101
magnumtorch: Magnum Torch 21.11.0
malilib: MaLiLib 0.27.6
mavapi: More Axolotl Variants API 2.1.0+1.21.11-fabric
mavm: More Axolotl Variants Mod 2.1.0+1.21.11-fabric
mcwbiomesoplenty: Macaw's Biomes O' Plenty 1.21.10-1.5
mcwbyg: Macaw's - Oh The Biomes We've Gone 1.21.4-1.5
mcwdoors: Macaw's Doors 1.1.2
mcwfences: Macaw's Fences and Walls 1.2.1
mcwfurnitures: Macaw's Furniture 3.4.2
mcwholidays: Macaw's Holidays 1.1.2
mcwlights: Macaw's Lights and Lamps 1.1.5
mcwpaintings: Macaw's Paintings 1.0.5
mcwpaths: Macaw's Paths and Pavings 1.1.1
mcwroofs: Macaw's Roofs 2.3.2
mcwstairs: Macaw's Stairs and Balconies 1.0.2
mcwtrpdoors: Macaw's Trapdoors 1.1.5
mcwwindows: Macaw's Windows 2.4.2
medieval_buildings: Medieval Buildings 1.1.2
medievalend: Medieval Buildings [The End Edition] 1.0.5
melody: Melody 1.0.15
mermod: Mermod 4.0.1
midnightlib: MidnightLib 1.9.2
minecraft: Minecraft 1.21.11
minecraftcapes: MinecraftCapes 1.0.1
mineify: Mineify 1.3.0
modmenu: Mod Menu 17.0.0-beta.2
placeholder-api: Placeholder API 2.8.1+1.21.10
more_armor_trims: More Armor Trims 1.5.2-1.21.5
morechathistory: More Chat History 1.3.1
moreculling: More Culling 1.6.1
mixinsquared: MixinSquared 0.2.0
moredelight: More Delight 25.12.10-1.21.11-fabric
morediscs: More Music Discs 35.1
moretotems: MoreTotems 2.24.0
morevillagers: MoreVillagers 1.25.12.3
mousetweaks: Mouse Tweaks 2.30
mr_auto_oresmelting: Auto Smelt Ores 1.21.11
mr_fast_smelt: Fast Smelt 1-v1.0.9
mr_pocket_dimension: Pocket Dimensions 1.21.11.1.3
mr_spectator_nightvision: Spectator Night Vision 0.1
mr_unlimited_enchants: Unlimited Enchantments 1-unlimited-enchants-1.21.11
mr_vegan_recipes: notblue's Vegan Recipes 2.1
mru: M.R.U 1.0.26+edge+1.21.10
naturescompass: Nature's Compass 1.21.11-2.2.9-fabric
nbt_ac: NBT Autocomplete 1.3.14
neruina: Neruina 3.2.1
org_apache_httpcomponents_httpclient: httpclient 4.5
org_apache_httpcomponents_httpcore: httpcore 4.4
org_kohsuke_github-api: github-api 2.0-rc.4
netherwartblock: Nether Wart Blocks to Nether Warts 7.3
no-telemetry: No Telemetry 1.10.0
nochatreports: No Chat Reports 1.21.11-v2.18.0
notenoughanimations: NotEnoughAnimations 1.11.2
transition: TRansition 1.0.12
trender: TRender 1.0.10
notenoughcrashes: Not Enough Crashes 4.4.9+1.21.11
nowplaying: Now Playing 1.6.0+1.21.11
ohthetreesyoullgrow: Oh The Trees You'll Grow 9.0.0
optigui: OptiGUI 2.3.0-beta.9+1.21.9
org_apache_commons_commons-text: commons-text 1.12.0
org_ini4j_ini4j: ini4j 0.5.4
org_jetbrains_annotations: annotations 13.0
packetfixer: Packet Fixer 3.3.4
philipsruins: Philip`s Ruins 1.21.11
pickupnotifier: Pick Up Notifier 21.11.0
pingwheel: Ping Wheel 1.12.1
plasmovoice: Plasmo Voice 2.1.8
pneumonocore: PneumonoCore 1.2.1
polymer-bundled: Polymer 0.15.2+1.21.11
polymer-autohost: Polymer (Auto Host) 0.15.2+1.21.11
polymer-blocks: Polymer (Textured Blocks) 0.15.2+1.21.11
polymer-common: Polymer (Common) 0.15.2+1.21.11
packet_tweaker: Packet Tweaker 0.6.0+1.21.10
polymer-core: Polymer (Core) 0.15.2+1.21.11
polymer-networking: Polymer (Networking) 0.15.2+1.21.11
polymer-registry-sync-manipulator: Polymer (Registry Sync Manipulator) 0.15.2+1.21.11
polymer-resource-pack: Polymer (Resource Pack) 0.15.2+1.21.11
polymer-resource-pack-extras: Polymer (Resource Pack Extras) 0.15.2+1.21.11
polymer-sound-patcher: Polymer (Sound Patcher) 0.15.2+1.21.11
polymer-virtual-entity: Polymer (Virtual Entity) 0.15.2+1.21.11
prehistoric_paintings: Prehistoric Paintings 1.1.0
prickle: PrickleMC 21.11.1
promenade: Promenade 5.4.0
biolith: Biolith 3.5.0-beta.3
puzzle: Puzzle 2.3.0
puzzleslib: Puzzles Lib 21.11.10
pv-addon-soundphysics: pv-addon-soundphysics 1.1.2
quad: Quad 1.2.14
raknetify: Raknetify (Fabric) 0.1.0+alpha.5.195
rechiseled: Rechiseled 1.2.2
reeses-sodium-options: Reese's Sodium Options 2.0.2+mc1.21.11
reinfchest: Reinforced Chests 4.0.0-beta+1.21.11
reinfshulker: Reinforced Shulker Boxes 3.5.0-beta+1.21.11
reinfcore: Reinforced Core 4.0.9+1.21.11
cloth-config: Cloth Config v20 21.11.153
cloth-basic-math: cloth-basic-math 0.6.1
resourcefulconfig: Resourcefulconfig 3.11.2
resourcefullib: Resourceful Lib 3.11.0
com_teamresourceful_bytecodecs: bytecodecs 1.1.3
com_teamresourceful_yabn: yabn 1.0.3
resourcify: Resourcify 1.8.0
respawnablepets: Respawnable Pets 1.21.11-r2
rrls: Remove Reloading Screen 5.1.15+mc.1.21.11
rusticdelight: Rustic Delight 1.5.3
scholar: Scholar 1.1.13
scoreboard-overhaul: Scoreboard Overhaul 1.4.2+mc1.21.9
searchables: Searchables 1.0.2
sereneseasons: SereneSeasons 21.11.0.1
sereneseasonsplus: Serene Seasons Plus 4.2.2
sheepvariety: Sheep Variety 21.11.0
shulker-in-shulker: Shulker in shulker 1.0.0
shulkerboxtooltip: Shulker Box Tooltip 5.2.15+1.21.11
silk-all: Silk (All modules) 1.11.5
silk-commands: Silk Commands 1.11.5
silk-core: Silk Core 1.11.5
silk-game: Silk Game 1.11.5
silk-igui: Silk Inventory GUI 1.11.5
silk-nbt: Silk NBT 1.11.5
silk-network: Silk Network 1.11.5
silk-persistence: Silk Persistence 1.11.5
sit: Sit 29
skinlayers3d: 3d-Skin-Layers 1.10.1
smartblockplacement: SmartBlockPlacement 1.6
snuffles: Snuffles 1.7.0+1.21.11
sodium: Sodium 0.8.4+mc1.21.11
sodium-extra: Sodium Extra 0.8.3+mc1.21.11
sound_physics_remastered: Sound Physics Remastered 1.21.11-1.5.1
sounds: Sounds 2.4.22+edge
spanishdelight: Spanish Delight Refabricated 1.21.11-1.0.8a
spark: spark 1.10.165
squatgrow: Squat Grow 21.11.0+mc1.21.11
sspb: Sodium Shadowy Path Blocks 6.0.0
stackedblocks: Stacked Blocks 25.7.4-1.21.5-fabric
stackedblocksfarmersdelight: Stacked Blocks: Farmer's Delight 25.7.31-1.21.7-fabric
status-effect-bars: Status Effect Bars 1.0.10
stoneworks: Stoneworks 21.11.0
storagedelight: Storage Delight 25.12.9-1.21.11-fabric
strawberrylib: StrawberryLib 1.21.11-r4
datasync_minecraft: DataSync-Minecraft 0.10.3
subtle_effects: Subtle Effects 1.13.2
superbsteeds: Superb Steeds 1.21.11-r1
supermartijn642configlib: SuperMartijn642's Config Library 1.1.8
supermartijn642corelib: SuperMartijn642's Core Lib 1.1.20
takesapillage: It Takes a Pillage Continuation 1.0.10
talkingheads: Talking Heads 1.0.10+1.21.11+fabric
taxfreelevels: Tax Free Levels 1.4.20
tcdcommons: TCDCommons API 5.0.0-beta.5+fabric-1.21.11
terrablender: TerraBlender 21.11.0.0
toms_trading_network: Tom's Trading Network 0.3.11
toomanypaintings: Too Many Paintings! 25.10.20-1.21.2-fabric
totw_modded: Towers of the Wild Modded fabric-1.21-1.0.9
tradingpost: Trading Post 21.11.0
trashcans: Trash Cans 1.0.18
team_reborn_energy: Energy 4.2.0
trashslot: TrashSlot 21.11.4
travelersbackpack: Traveler's Backpack 10.11.5
treeharvester: Tree Harvester 9.3
ubesdelight: Ube's Delight 0.4.8
uncrafteverything: UncraftEverything 2.2.0+1.21.11-fabric
universalbonemeal: Universal Bone Meal 21.11.0
universalcraft: UniversalCraft 463
universalenchants: Universal Enchants 21.11.2
untitledduckmod: Untitled Duck Mod 1.5.2
veinminer: Veinminer 2.5.2
de_miraculixx_core_dev: core 2.5.2
fabric-permissions-api-v0: fabric-permissions-api 0.6.1
vigilance: Vigilance 306
villagerapi: VillagerAPI 1.26.1.3
villagernames: Villager Names 8.3
visuality: Visuality 0.7.12+1.21.11
visualworkbench: Visual Workbench 21.11.1
voicemessages: Plasmo Voice Messages 1.1.0
walljump: Wall-Jump TXF 1.21.11-1.3.5-fabric
configlibtxf: ConfigLib TXF 13.2.8-fabric
waystones: Waystones 21.11.4
weaponmaster_ydm: YDM's Weapon Master 4.4.3
wishfulrecipes: Wishful Recipes 0.1
woodwevegot: All The Wood We've Got 4.3.1
xaerominimap: Xaero's Minimap 25.3.10
xaerolib: XaeroLib 1.1.0
xaeroplus: XaeroPlus 2.30.8
xaeroworldmap: Xaero's World Map 1.40.11
xmxw: Xaero's Maps x Waystones 2.6.0+1.21.11-fabric
xray: Advanced XRay (Fabric) 21.11.0
yet_another_config_lib_v3: YetAnotherConfigLib 3.8.2+1.21.11-fabric
com_twelvemonkeys_common_common-image: common-image 3.12.0
com_twelvemonkeys_common_common-io: common-io 3.12.0
com_twelvemonkeys_common_common-lang: common-lang 3.12.0
com_twelvemonkeys_imageio_imageio-core: imageio-core 3.12.0
com_twelvemonkeys_imageio_imageio-metadata: imageio-metadata 3.12.0
com_twelvemonkeys_imageio_imageio-webp: imageio-webp 3.12.0
zoomify: Zoomify 2.15.2+1.21.11
com_akuleshov7_ktoml-core-jvm: ktoml-core-jvm 0.7.1
Launched Version: 1.21.11
Backend library: LWJGL version 3.3.3-snapshot
Backend API: Unknown
Window size: <not initialized>
GFLW Platform: <error>
Render Extensions: ERR
GL debug messages: <no renderer available>
Is Modded: Definitely; Client brand changed to 'fabric'
Universe: 404
Type: Client (map_client.txt)
Locale: en_FR
System encoding: Cp1252
File encoding: UTF-8
CPU: 12x 13th Gen Intel(R) Core(TM) i5-1334U
Suspected Mods: Minecraft (minecraft), Fabric Loader (fabricloader), Deimos (deimos), Not Enough Crashes (notenoughcrashes), Wishful Recipes (wishfulrecipes)
#@!@# Game crashed! Crash report saved to: #@!@# C:\Users\Blueb\Desktop\MultiMC\instances\Blue\.minecraft\crash-reports\crash-2026-06-09_19.47.39-client.txt
Process exited with exit code -1 (0xffffffffffffffff).
Please note that usually neither the exit code, nor its description are enough to diagnose issues!
Always upload the entire log and not just the exit code.
MultiMC: Log upload triggered at: 09 Jun 2026 19:47:50 +0200