parent
2b5cd49e06
commit
fca7188b63
@ -0,0 +1,70 @@ |
|||||||
|
# This is an example mods.toml file. It contains the data relating to the loading mods. |
||||||
|
# There are several mandatory fields (#mandatory), and many more that are optional (#optional). |
||||||
|
# The overall format is standard TOML format, v0.5.0. |
||||||
|
# Note that there are a couple of TOML lists in this file. |
||||||
|
# Find more information on toml format here: https://github.com/toml-lang/toml |
||||||
|
# The name of the mod loader type to load - for regular FML @Mod mods it should be javafml |
||||||
|
modLoader="javafml" #mandatory |
||||||
|
# A version range to match for said mod loader - for regular FML @Mod it will be the forge version |
||||||
|
loaderVersion="[41,)" #mandatory This is typically bumped every Minecraft version by Forge. See our download page for lists of versions. |
||||||
|
# The license for you mod. This is mandatory metadata and allows for easier comprehension of your redistributive properties. |
||||||
|
# Review your options at https://choosealicense.com/. All rights reserved is the default copyright stance, and is thus the default here. |
||||||
|
license="All rights reserved" |
||||||
|
# A URL to refer people to when problems occur with this mod |
||||||
|
#issueTrackerURL="https://change.me.to.your.issue.tracker.example.invalid/" #optional |
||||||
|
# A list of mods - how many allowed here is determined by the individual mod loader |
||||||
|
[[mods]] #mandatory |
||||||
|
# The modid of the mod |
||||||
|
modId="examplemod" #mandatory |
||||||
|
# The version number of the mod - there's a few well known ${} variables useable here or just hardcode it |
||||||
|
# ${file.jarVersion} will substitute the value of the Implementation-Version as read from the mod's JAR file metadata |
||||||
|
# see the associated build.gradle script for how to populate this completely automatically during a build |
||||||
|
version="${file.jarVersion}" #mandatory |
||||||
|
# A display name for the mod |
||||||
|
displayName="Example Mod" #mandatory |
||||||
|
# A URL to query for updates for this mod. See the JSON update specification https://mcforge.readthedocs.io/en/latest/gettingstarted/autoupdate/ |
||||||
|
#updateJSONURL="https://change.me.example.invalid/updates.json" #optional |
||||||
|
# A URL for the "homepage" for this mod, displayed in the mod UI |
||||||
|
#displayURL="https://change.me.to.your.mods.homepage.example.invalid/" #optional |
||||||
|
# A file name (in the root of the mod JAR) containing a logo for display |
||||||
|
logoFile="examplemod.png" #optional |
||||||
|
# A text field displayed in the mod UI |
||||||
|
credits="Thanks for this example mod goes to Java" #optional |
||||||
|
# A text field displayed in the mod UI |
||||||
|
authors="Love, Cheese and small house plants" #optional |
||||||
|
# Display Test controls the display for your mod in the server connection screen |
||||||
|
# MATCH_VERSION means that your mod will cause a red X if the versions on client and server differ. This is the default behaviour and should be what you choose if you have server and client elements to your mod. |
||||||
|
# IGNORE_SERVER_VERSION means that your mod will not cause a red X if it's present on the server but not on the client. This is what you should use if you're a server only mod. |
||||||
|
# IGNORE_ALL_VERSION means that your mod will not cause a red X if it's present on the client or the server. This is a special case and should only be used if your mod has no server component. |
||||||
|
# NONE means that no display test is set on your mod. You need to do this yourself, see IExtensionPoint.DisplayTest for more information. You can define any scheme you wish with this value. |
||||||
|
# IMPORTANT NOTE: this is NOT an instruction as to which environments (CLIENT or DEDICATED SERVER) your mod loads on. Your mod should load (and maybe do nothing!) whereever it finds itself. |
||||||
|
#displayTest="MATCH_VERSION" # MATCH_VERSION is the default if nothing is specified (#optional) |
||||||
|
|
||||||
|
# The description text for the mod (multi line!) (#mandatory) |
||||||
|
description=''' |
||||||
|
This is a long form description of the mod. You can write whatever you want here |
||||||
|
|
||||||
|
Have some lorem ipsum. |
||||||
|
|
||||||
|
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed mollis lacinia magna. Orci varius natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Sed sagittis luctus odio eu tempus. Interdum et malesuada fames ac ante ipsum primis in faucibus. Pellentesque volutpat ligula eget lacus auctor sagittis. In hac habitasse platea dictumst. Nunc gravida elit vitae sem vehicula efficitur. Donec mattis ipsum et arcu lobortis, eleifend sagittis sem rutrum. Cras pharetra quam eget posuere fermentum. Sed id tincidunt justo. Lorem ipsum dolor sit amet, consectetur adipiscing elit. |
||||||
|
''' |
||||||
|
# A dependency - use the . to indicate dependency for a specific modid. Dependencies are optional. |
||||||
|
[[dependencies.examplemod]] #optional |
||||||
|
# the modid of the dependency |
||||||
|
modId="forge" #mandatory |
||||||
|
# Does this dependency have to exist - if not, ordering below must be specified |
||||||
|
mandatory=true #mandatory |
||||||
|
# The version range of the dependency |
||||||
|
versionRange="[41,)" #mandatory |
||||||
|
# An ordering relationship for the dependency - BEFORE or AFTER required if the relationship is not mandatory |
||||||
|
ordering="NONE" |
||||||
|
# Side this dependency is applied on - BOTH, CLIENT or SERVER |
||||||
|
side="BOTH" |
||||||
|
# Here's another dependency |
||||||
|
[[dependencies.examplemod]] |
||||||
|
modId="minecraft" |
||||||
|
mandatory=true |
||||||
|
# This version range declares a minimum of the current minecraft version up to but not including the next major version |
||||||
|
versionRange="[1.19,1.20)" |
||||||
|
ordering="NONE" |
||||||
|
side="BOTH" |
Binary file not shown.
Binary file not shown.
@ -0,0 +1,8 @@ |
|||||||
|
{ |
||||||
|
"pack": { |
||||||
|
"description": "examplemod resources", |
||||||
|
"pack_format": 9, |
||||||
|
"forge:resource_pack_format": 9, |
||||||
|
"forge:data_pack_format": 10 |
||||||
|
} |
||||||
|
} |
@ -0,0 +1 @@ |
|||||||
|
[] |
@ -0,0 +1 @@ |
|||||||
|
[] |
@ -0,0 +1,9 @@ |
|||||||
|
# Enable forge global version checking |
||||||
|
versionCheck = true |
||||||
|
# does the splashscreen run |
||||||
|
splashscreen = true |
||||||
|
# Disables Optimized DFU client-side. |
||||||
|
disableOptimizedDFU = true |
||||||
|
defaultConfigPath = "defaultconfigs" |
||||||
|
maxThreads = -1 |
||||||
|
|
@ -0,0 +1,16 @@ |
|||||||
|
|
||||||
|
#Client only settings, mostly things related to rendering |
||||||
|
[client] |
||||||
|
#Enable Forge to queue all chunk updates to the Chunk Update thread. |
||||||
|
#May increase FPS significantly, but may also cause weird rendering lag. |
||||||
|
#Not recommended for computers without a significant number of cores available. |
||||||
|
alwaysSetupTerrainOffThread = false |
||||||
|
#EXPERIMENTAL: Enable the Forge block rendering pipeline - fixes the lighting of custom models. |
||||||
|
experimentalForgeLightPipelineEnabled = false |
||||||
|
#When enabled, Forge will show any warnings that occurred during loading. |
||||||
|
showLoadWarnings = true |
||||||
|
#Set to true to use a combined DEPTH_STENCIL attachment instead of two separate ones. |
||||||
|
useCombinedDepthStencilAttachment = false |
||||||
|
#When enabled, Forge will convert discovered 'Open to LAN' IPv6 addresses to their more compact, compressed representation |
||||||
|
compressLanIPv6Addresses = true |
||||||
|
|
@ -0,0 +1,10 @@ |
|||||||
|
|
||||||
|
#General configuration settings |
||||||
|
[general] |
||||||
|
#Set this to true to cache resource listings in resource and data packs |
||||||
|
cachePackAccess = true |
||||||
|
#Set this to true to index vanilla resource and data packs on thread |
||||||
|
indexVanillaPackCachesOnThread = false |
||||||
|
#Set this to true to index mod resource and data packs on thread |
||||||
|
indexModPackCachesOnThread = false |
||||||
|
|
@ -0,0 +1,10 @@ |
|||||||
|
|
||||||
|
#General configuration settings |
||||||
|
[general] |
||||||
|
#Set this to true to cache resource listings in resource and data packs |
||||||
|
cachePackAccess = true |
||||||
|
#Set this to true to index vanilla resource and data packs on thread |
||||||
|
indexVanillaPackCachesOnThread = false |
||||||
|
#Set this to true to index mod resource and data packs on thread |
||||||
|
indexModPackCachesOnThread = false |
||||||
|
|
@ -0,0 +1,3 @@ |
|||||||
|
#By changing the setting below to TRUE you are indicating your agreement to our EULA (https://aka.ms/MinecraftEULA). |
||||||
|
#Tue Jul 12 21:53:40 CDT 2022 |
||||||
|
eula=true |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -0,0 +1,927 @@ |
|||||||
|
[12Jul2022 21:59:35.221] [main/INFO] [cpw.mods.modlauncher.Launcher/MODLAUNCHER]: ModLauncher running: args [--launchTarget, forgeserveruserdev, --gameDir, ., --fml.forgeVersion, 41.0.98, --fml.mcVersion, 1.19, --fml.forgeGroup, net.minecraftforge, --fml.mcpVersion, 20220607.102129] |
||||||
|
[12Jul2022 21:59:35.229] [main/INFO] [cpw.mods.modlauncher.Launcher/MODLAUNCHER]: ModLauncher 10.0.8+10.0.8+main.0ef7e830 starting: java version 17.0.3 by Private Build; OS Linux arch amd64 version 5.17.15-76051715-generic |
||||||
|
[12Jul2022 21:59:35.265] [main/DEBUG] [cpw.mods.modlauncher.LaunchServiceHandler/MODLAUNCHER]: Found launch services [fmlclientdev,forgeclient,minecraft,forgegametestserverdev,fmlserveruserdev,fmlclient,fmldatauserdev,forgeserverdev,forgeserveruserdev,forgeclientdev,forgeclientuserdev,forgeserver,forgedatadev,fmlserver,fmlclientuserdev,fmlserverdev,forgedatauserdev,testharness,forgegametestserveruserdev] |
||||||
|
[12Jul2022 21:59:35.291] [main/DEBUG] [cpw.mods.modlauncher.NameMappingServiceHandler/MODLAUNCHER]: Found naming services : [srgtomcp] |
||||||
|
[12Jul2022 21:59:35.323] [main/DEBUG] [cpw.mods.modlauncher.LaunchPluginHandler/MODLAUNCHER]: Found launch plugins: [mixin,eventbus,slf4jfixer,object_holder_definalize,runtime_enum_extender,capability_token_subclass,accesstransformer,runtimedistcleaner] |
||||||
|
[12Jul2022 21:59:35.340] [main/DEBUG] [cpw.mods.modlauncher.TransformationServicesHandler/MODLAUNCHER]: Discovering transformation services |
||||||
|
[12Jul2022 21:59:35.363] [main/DEBUG] [cpw.mods.modlauncher.TransformationServicesHandler/MODLAUNCHER]: Found additional transformation services from discovery services: |
||||||
|
[12Jul2022 21:59:35.388] [main/DEBUG] [cpw.mods.modlauncher.TransformationServicesHandler/MODLAUNCHER]: Found transformer services : [mixin,fml] |
||||||
|
[12Jul2022 21:59:35.390] [main/DEBUG] [cpw.mods.modlauncher.TransformationServicesHandler/MODLAUNCHER]: Transformation services loading |
||||||
|
[12Jul2022 21:59:35.396] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Loading service mixin |
||||||
|
[12Jul2022 21:59:35.399] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Loaded service mixin |
||||||
|
[12Jul2022 21:59:35.405] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Loading service fml |
||||||
|
[12Jul2022 21:59:35.419] [main/DEBUG] [net.minecraftforge.fml.loading.LauncherVersion/CORE]: Found FMLLauncher version 1.0 |
||||||
|
[12Jul2022 21:59:35.422] [main/DEBUG] [net.minecraftforge.fml.loading.FMLLoader/CORE]: FML 1.0 loading |
||||||
|
[12Jul2022 21:59:35.426] [main/DEBUG] [net.minecraftforge.fml.loading.FMLLoader/CORE]: FML found ModLauncher version : 10.0.8+10.0.8+main.0ef7e830 |
||||||
|
[12Jul2022 21:59:35.430] [main/DEBUG] [net.minecraftforge.fml.loading.FMLLoader/CORE]: FML found AccessTransformer version : 8.0.4+66+master.c09db6d7 |
||||||
|
[12Jul2022 21:59:35.436] [main/DEBUG] [net.minecraftforge.fml.loading.FMLLoader/CORE]: FML found EventBus version : 6.0.0+6.0.0+master.901864e5 |
||||||
|
[12Jul2022 21:59:35.437] [main/DEBUG] [net.minecraftforge.fml.loading.FMLLoader/CORE]: Found Runtime Dist Cleaner |
||||||
|
[12Jul2022 21:59:35.441] [main/DEBUG] [net.minecraftforge.fml.loading.FMLLoader/CORE]: FML found CoreMod version : 5.0.1+15+master.dc5a2922 |
||||||
|
[12Jul2022 21:59:35.443] [main/DEBUG] [net.minecraftforge.fml.loading.FMLLoader/CORE]: Found ForgeSPI package implementation version 6.0.0+6.0.0+master.42474703 |
||||||
|
[12Jul2022 21:59:35.444] [main/DEBUG] [net.minecraftforge.fml.loading.FMLLoader/CORE]: Found ForgeSPI package specification 5 |
||||||
|
[12Jul2022 21:59:35.452] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Loaded service fml |
||||||
|
[12Jul2022 21:59:35.468] [main/DEBUG] [cpw.mods.modlauncher.TransformationServicesHandler/MODLAUNCHER]: Configuring option handling for services |
||||||
|
[12Jul2022 21:59:35.500] [main/DEBUG] [cpw.mods.modlauncher.TransformationServicesHandler/MODLAUNCHER]: Transformation services initializing |
||||||
|
[12Jul2022 21:59:35.505] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Initializing transformation service mixin |
||||||
|
[12Jul2022 21:59:35.532] [main/DEBUG] [mixin/]: MixinService [ModLauncher] was successfully booted in cpw.mods.cl.ModuleClassLoader@1c72da34 |
||||||
|
[12Jul2022 21:59:35.554] [main/INFO] [mixin/]: SpongePowered MIXIN Subsystem Version=0.8.5 Source=union:/home/niconiconii/.gradle/caches/modules-2/files-2.1/org.spongepowered/mixin/0.8.5/9d1c0c3a304ae6697ecd477218fa61b850bf57fc/mixin-0.8.5.jar%23113!/ Service=ModLauncher Env=SERVER |
||||||
|
[12Jul2022 21:59:35.561] [main/DEBUG] [mixin/]: Initialising Mixin Platform Manager |
||||||
|
[12Jul2022 21:59:35.562] [main/DEBUG] [mixin/]: Adding mixin platform agents for container ModLauncher Root Container(ModLauncher:4f56a0a2) |
||||||
|
[12Jul2022 21:59:35.564] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for ModLauncher Root Container(ModLauncher:4f56a0a2) |
||||||
|
[12Jul2022 21:59:35.566] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container ModLauncher Root Container(ModLauncher:4f56a0a2) |
||||||
|
[12Jul2022 21:59:35.568] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for ModLauncher Root Container(ModLauncher:4f56a0a2) |
||||||
|
[12Jul2022 21:59:35.569] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container ModLauncher Root Container(ModLauncher:4f56a0a2) |
||||||
|
[12Jul2022 21:59:35.572] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Initialized transformation service mixin |
||||||
|
[12Jul2022 21:59:35.573] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Initializing transformation service fml |
||||||
|
[12Jul2022 21:59:35.574] [main/DEBUG] [net.minecraftforge.fml.loading.FMLServiceProvider/CORE]: Setting up basic FML game directories |
||||||
|
[12Jul2022 21:59:35.578] [main/DEBUG] [net.minecraftforge.fml.loading.FileUtils/CORE]: Found existing GAMEDIR directory : /home/niconiconii/Documents/SigsUniverse/run |
||||||
|
[12Jul2022 21:59:35.579] [main/DEBUG] [net.minecraftforge.fml.loading.FMLPaths/CORE]: Path GAMEDIR is /home/niconiconii/Documents/SigsUniverse/run |
||||||
|
[12Jul2022 21:59:35.579] [main/DEBUG] [net.minecraftforge.fml.loading.FileUtils/CORE]: Found existing MODSDIR directory : /home/niconiconii/Documents/SigsUniverse/run/mods |
||||||
|
[12Jul2022 21:59:35.580] [main/DEBUG] [net.minecraftforge.fml.loading.FMLPaths/CORE]: Path MODSDIR is /home/niconiconii/Documents/SigsUniverse/run/mods |
||||||
|
[12Jul2022 21:59:35.580] [main/DEBUG] [net.minecraftforge.fml.loading.FileUtils/CORE]: Found existing CONFIGDIR directory : /home/niconiconii/Documents/SigsUniverse/run/config |
||||||
|
[12Jul2022 21:59:35.580] [main/DEBUG] [net.minecraftforge.fml.loading.FMLPaths/CORE]: Path CONFIGDIR is /home/niconiconii/Documents/SigsUniverse/run/config |
||||||
|
[12Jul2022 21:59:35.580] [main/DEBUG] [net.minecraftforge.fml.loading.FMLPaths/CORE]: Path FMLCONFIG is /home/niconiconii/Documents/SigsUniverse/run/config/fml.toml |
||||||
|
[12Jul2022 21:59:35.581] [main/DEBUG] [net.minecraftforge.fml.loading.FMLServiceProvider/CORE]: Loading configuration |
||||||
|
[12Jul2022 21:59:35.683] [main/DEBUG] [net.minecraftforge.fml.loading.FileUtils/CORE]: Found existing default config directory directory : /home/niconiconii/Documents/SigsUniverse/run/defaultconfigs |
||||||
|
[12Jul2022 21:59:35.687] [main/DEBUG] [net.minecraftforge.fml.loading.FMLServiceProvider/CORE]: Preparing ModFile |
||||||
|
[12Jul2022 21:59:35.691] [main/DEBUG] [net.minecraftforge.fml.loading.FMLServiceProvider/CORE]: Preparing launch handler |
||||||
|
[12Jul2022 21:59:35.692] [main/DEBUG] [net.minecraftforge.fml.loading.FMLLoader/CORE]: Using forgeserveruserdev as launch service |
||||||
|
[12Jul2022 21:59:35.731] [main/DEBUG] [net.minecraftforge.fml.loading.FMLLoader/CORE]: Received command line version data : VersionInfo[forgeVersion=41.0.98, mcVersion=1.19, mcpVersion=20220607.102129, forgeGroup=net.minecraftforge] |
||||||
|
[12Jul2022 21:59:35.736] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Initialized transformation service fml |
||||||
|
[12Jul2022 21:59:35.738] [main/DEBUG] [cpw.mods.modlauncher.NameMappingServiceHandler/MODLAUNCHER]: Current naming domain is 'mcp' |
||||||
|
[12Jul2022 21:59:35.743] [main/DEBUG] [cpw.mods.modlauncher.NameMappingServiceHandler/MODLAUNCHER]: Identified name mapping providers {srg=srgtomcp:1234} |
||||||
|
[12Jul2022 21:59:35.744] [main/DEBUG] [cpw.mods.modlauncher.TransformationServicesHandler/MODLAUNCHER]: Transformation services begin scanning |
||||||
|
[12Jul2022 21:59:35.747] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Beginning scan trigger - transformation service mixin |
||||||
|
[12Jul2022 21:59:35.749] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: End scan trigger - transformation service mixin |
||||||
|
[12Jul2022 21:59:35.749] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Beginning scan trigger - transformation service fml |
||||||
|
[12Jul2022 21:59:35.750] [main/DEBUG] [net.minecraftforge.fml.loading.FMLServiceProvider/CORE]: Initiating mod scan |
||||||
|
[12Jul2022 21:59:35.772] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModListHandler/CORE]: Found mod coordinates from lists: [] |
||||||
|
[12Jul2022 21:59:35.778] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModDiscoverer/CORE]: Found Mod Locators : (mods folder:null),(maven libs:null),(exploded directory:null),(minecraft:null),(userdev classpath:null) |
||||||
|
[12Jul2022 21:59:35.782] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModDiscoverer/CORE]: Found Dependency Locators : (JarInJar:null) |
||||||
|
[12Jul2022 21:59:35.796] [main/DEBUG] [net.minecraftforge.fml.loading.targets.CommonLaunchHandler/CORE]: Got mod coordinates examplemod%%/home/niconiconii/Documents/SigsUniverse/build/resources/main:examplemod%%/home/niconiconii/Documents/SigsUniverse/build/classes/java/main from env |
||||||
|
[12Jul2022 21:59:35.799] [main/DEBUG] [net.minecraftforge.fml.loading.targets.CommonLaunchHandler/CORE]: Found supplied mod coordinates [{examplemod=[/home/niconiconii/Documents/SigsUniverse/build/resources/main, /home/niconiconii/Documents/SigsUniverse/build/classes/java/main]}] |
||||||
|
[12Jul2022 21:59:36.170] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file forge-1.19-41.0.98_mapped_official_1.19-recomp.jar with {minecraft} mods - versions {1.19} |
||||||
|
[12Jul2022 21:59:36.181] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate /home/niconiconii/.gradle/caches/modules-2/files-2.1/net.minecraftforge/javafmllanguage/1.19-41.0.98/625570d49ae21b91c1460a3b7f806ebdce61ed85/javafmllanguage-1.19-41.0.98.jar |
||||||
|
[12Jul2022 21:59:36.183] [main/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Mod file /home/niconiconii/.gradle/caches/modules-2/files-2.1/net.minecraftforge/javafmllanguage/1.19-41.0.98/625570d49ae21b91c1460a3b7f806ebdce61ed85/javafmllanguage-1.19-41.0.98.jar is missing mods.toml file |
||||||
|
[12Jul2022 21:59:36.185] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate /home/niconiconii/.gradle/caches/modules-2/files-2.1/net.minecraftforge/lowcodelanguage/1.19-41.0.98/3ba0f5d44ce25e5f31b0659530e9267d07dc2d8d/lowcodelanguage-1.19-41.0.98.jar |
||||||
|
[12Jul2022 21:59:36.186] [main/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Mod file /home/niconiconii/.gradle/caches/modules-2/files-2.1/net.minecraftforge/lowcodelanguage/1.19-41.0.98/3ba0f5d44ce25e5f31b0659530e9267d07dc2d8d/lowcodelanguage-1.19-41.0.98.jar is missing mods.toml file |
||||||
|
[12Jul2022 21:59:36.188] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate /home/niconiconii/.gradle/caches/modules-2/files-2.1/net.minecraftforge/mclanguage/1.19-41.0.98/cc475e6c9e436479a8eb003245eea5c2abaefbf1/mclanguage-1.19-41.0.98.jar |
||||||
|
[12Jul2022 21:59:36.189] [main/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Mod file /home/niconiconii/.gradle/caches/modules-2/files-2.1/net.minecraftforge/mclanguage/1.19-41.0.98/cc475e6c9e436479a8eb003245eea5c2abaefbf1/mclanguage-1.19-41.0.98.jar is missing mods.toml file |
||||||
|
[12Jul2022 21:59:36.198] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate /home/niconiconii/.gradle/caches/modules-2/files-2.1/net.minecraftforge/fmlcore/1.19-41.0.98/cc1a226d7b80d3e9e5980ec9f2ff9b1d46d36fee/fmlcore-1.19-41.0.98.jar |
||||||
|
[12Jul2022 21:59:36.199] [main/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Mod file /home/niconiconii/.gradle/caches/modules-2/files-2.1/net.minecraftforge/fmlcore/1.19-41.0.98/cc1a226d7b80d3e9e5980ec9f2ff9b1d46d36fee/fmlcore-1.19-41.0.98.jar is missing mods.toml file |
||||||
|
[12Jul2022 21:59:36.204] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate /home/niconiconii/Documents/SigsUniverse/build/resources/main |
||||||
|
[12Jul2022 21:59:36.219] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file main with {examplemod} mods - versions {0.0NONE} |
||||||
|
[12Jul2022 21:59:36.223] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate / |
||||||
|
[12Jul2022 21:59:36.230] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file with {forge} mods - versions {41.0.98} |
||||||
|
[12Jul2022 21:59:36.272] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF/jarjar/metadata.json from forge-1.19-41.0.98_mapped_official_1.19-recomp.jar, it does not contain dependency information. |
||||||
|
[12Jul2022 21:59:36.274] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF/jarjar/metadata.json from , it does not contain dependency information. |
||||||
|
[12Jul2022 21:59:36.274] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF/jarjar/metadata.json from main, it does not contain dependency information. |
||||||
|
[12Jul2022 21:59:36.275] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF/jarjar/metadata.json from mclanguage-1.19-41.0.98.jar, it does not contain dependency information. |
||||||
|
[12Jul2022 21:59:36.277] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF/jarjar/metadata.json from javafmllanguage-1.19-41.0.98.jar, it does not contain dependency information. |
||||||
|
[12Jul2022 21:59:36.277] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF/jarjar/metadata.json from fmlcore-1.19-41.0.98.jar, it does not contain dependency information. |
||||||
|
[12Jul2022 21:59:36.278] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF/jarjar/metadata.json from lowcodelanguage-1.19-41.0.98.jar, it does not contain dependency information. |
||||||
|
[12Jul2022 21:59:36.323] [main/INFO] [net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator/]: No dependencies to load found. Skipping! |
||||||
|
[12Jul2022 21:59:36.331] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file forge-1.19-41.0.98_mapped_official_1.19-recomp.jar with {minecraft} mods - versions {1.19} |
||||||
|
[12Jul2022 21:59:36.348] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file /home/niconiconii/.gradle/caches/forge_gradle/minecraft_user_repo/net/minecraftforge/forge/1.19-41.0.98_mapped_official_1.19/forge-1.19-41.0.98_mapped_official_1.19-recomp.jar with languages [LanguageSpec[languageName=minecraft, acceptedVersions=1]] |
||||||
|
[12Jul2022 21:59:36.352] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate / |
||||||
|
[12Jul2022 21:59:36.355] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file with {forge} mods - versions {41.0.98} |
||||||
|
[12Jul2022 21:59:36.356] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file / with languages [LanguageSpec[languageName=javafml, acceptedVersions=[24,]]] |
||||||
|
[12Jul2022 21:59:36.415] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Found coremod field_to_method with Javascript path coremods/field_to_method.js |
||||||
|
[12Jul2022 21:59:36.416] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Found coremod field_to_instanceof with Javascript path coremods/field_to_instanceof.js |
||||||
|
[12Jul2022 21:59:36.417] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Found coremod add_bouncer_method with Javascript path coremods/add_bouncer_method.js |
||||||
|
[12Jul2022 21:59:36.417] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Found coremod coremods/field_to_method.js |
||||||
|
[12Jul2022 21:59:36.417] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Found coremod coremods/field_to_instanceof.js |
||||||
|
[12Jul2022 21:59:36.418] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Found coremod coremods/add_bouncer_method.js |
||||||
|
[12Jul2022 21:59:36.418] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate /home/niconiconii/Documents/SigsUniverse/build/resources/main |
||||||
|
[12Jul2022 21:59:36.424] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file main with {examplemod} mods - versions {0.0NONE} |
||||||
|
[12Jul2022 21:59:36.425] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file /home/niconiconii/Documents/SigsUniverse/build/resources/main with languages [LanguageSpec[languageName=javafml, acceptedVersions=[41,)]] |
||||||
|
[12Jul2022 21:59:36.427] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: End scan trigger - transformation service fml |
||||||
|
[12Jul2022 21:59:36.495] [main/DEBUG] [net.minecraftforge.fml.loading.LanguageLoadingProvider/CORE]: Found 3 language providers |
||||||
|
[12Jul2022 21:59:36.502] [main/DEBUG] [net.minecraftforge.fml.loading.LanguageLoadingProvider/CORE]: Found language provider minecraft, version 1.0 |
||||||
|
[12Jul2022 21:59:36.506] [main/DEBUG] [net.minecraftforge.fml.loading.LanguageLoadingProvider/CORE]: Found language provider lowcodefml, version 41 |
||||||
|
[12Jul2022 21:59:36.513] [main/DEBUG] [net.minecraftforge.fml.loading.LanguageLoadingProvider/CORE]: Found language provider javafml, version 41 |
||||||
|
[12Jul2022 21:59:36.535] [main/DEBUG] [net.minecraftforge.fml.loading.ModSorter/]: Configured system mods: [minecraft, forge] |
||||||
|
[12Jul2022 21:59:36.536] [main/DEBUG] [net.minecraftforge.fml.loading.ModSorter/]: Found system mod: minecraft |
||||||
|
[12Jul2022 21:59:36.537] [main/DEBUG] [net.minecraftforge.fml.loading.ModSorter/]: Found system mod: forge |
||||||
|
[12Jul2022 21:59:36.539] [main/DEBUG] [net.minecraftforge.fml.loading.ModSorter/LOADING]: Found 2 mod requirements (2 mandatory, 0 optional) |
||||||
|
[12Jul2022 21:59:36.551] [main/DEBUG] [net.minecraftforge.fml.loading.ModSorter/LOADING]: Found 0 mod requirements missing (0 mandatory, 0 optional) |
||||||
|
[12Jul2022 21:59:37.497] [main/DEBUG] [net.minecraftforge.fml.loading.MCPNamingService/CORE]: Loaded 29755 method mappings from methods.csv |
||||||
|
[12Jul2022 21:59:37.568] [main/DEBUG] [net.minecraftforge.fml.loading.MCPNamingService/CORE]: Loaded 28488 field mappings from fields.csv |
||||||
|
[12Jul2022 21:59:37.675] [main/DEBUG] [cpw.mods.modlauncher.TransformationServicesHandler/MODLAUNCHER]: Transformation services loading transformers |
||||||
|
[12Jul2022 21:59:37.676] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Initializing transformers for transformation service mixin |
||||||
|
[12Jul2022 21:59:37.677] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Initialized transformers for transformation service mixin |
||||||
|
[12Jul2022 21:59:37.677] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Initializing transformers for transformation service fml |
||||||
|
[12Jul2022 21:59:37.678] [main/DEBUG] [net.minecraftforge.fml.loading.FMLServiceProvider/CORE]: Loading coremod transformers |
||||||
|
[12Jul2022 21:59:37.678] [main/DEBUG] [net.minecraftforge.coremod.CoreModEngine/COREMOD]: Loading CoreMod from coremods/field_to_method.js |
||||||
|
[12Jul2022 21:59:38.044] [main/DEBUG] [net.minecraftforge.coremod.CoreModEngine/COREMOD]: CoreMod loaded successfully |
||||||
|
[12Jul2022 21:59:38.044] [main/DEBUG] [net.minecraftforge.coremod.CoreModEngine/COREMOD]: Loading CoreMod from coremods/field_to_instanceof.js |
||||||
|
[12Jul2022 21:59:38.238] [main/DEBUG] [net.minecraftforge.coremod.CoreModEngine/COREMOD]: CoreMod loaded successfully |
||||||
|
[12Jul2022 21:59:38.239] [main/DEBUG] [net.minecraftforge.coremod.CoreModEngine/COREMOD]: Loading CoreMod from coremods/add_bouncer_method.js |
||||||
|
[12Jul2022 21:59:38.304] [main/DEBUG] [net.minecraftforge.coremod.CoreModEngine/COREMOD]: CoreMod loaded successfully |
||||||
|
[12Jul2022 21:59:38.325] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@70887727 to Target : CLASS {Lnet/minecraft/world/level/biome/Biome;} {} {V} |
||||||
|
[12Jul2022 21:59:38.327] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@588f63c to Target : CLASS {Lnet/minecraft/world/level/levelgen/structure/Structure;} {} {V} |
||||||
|
[12Jul2022 21:59:38.329] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@5a6fa56e to Target : CLASS {Lnet/minecraft/world/effect/MobEffectInstance;} {} {V} |
||||||
|
[12Jul2022 21:59:38.329] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@1981d861 to Target : CLASS {Lnet/minecraft/world/level/block/LiquidBlock;} {} {V} |
||||||
|
[12Jul2022 21:59:38.330] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@118ffcfd to Target : CLASS {Lnet/minecraft/world/item/BucketItem;} {} {V} |
||||||
|
[12Jul2022 21:59:38.331] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@53f4c1e6 to Target : CLASS {Lnet/minecraft/world/level/block/StairBlock;} {} {V} |
||||||
|
[12Jul2022 21:59:38.331] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@74174a23 to Target : CLASS {Lnet/minecraft/world/level/block/FlowerPotBlock;} {} {V} |
||||||
|
[12Jul2022 21:59:38.332] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@6342d610 to Target : CLASS {Lnet/minecraft/world/item/ItemStack;} {} {V} |
||||||
|
[12Jul2022 21:59:38.333] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@dc4a691 to Target : CLASS {Lnet/minecraft/network/play/client/CClientSettingsPacket;} {} {V} |
||||||
|
[12Jul2022 21:59:38.333] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Initialized transformers for transformation service fml |
||||||
|
[12Jul2022 21:59:38.837] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:ModLauncher Root Container(ModLauncher:4f56a0a2)] |
||||||
|
[12Jul2022 21:59:38.838] [main/DEBUG] [mixin/]: Processing launch tasks for PlatformAgent[MixinPlatformAgentDefault:ModLauncher Root Container(ModLauncher:4f56a0a2)] |
||||||
|
[12Jul2022 21:59:38.839] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(minecraft) |
||||||
|
[12Jul2022 21:59:38.840] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(minecraft) |
||||||
|
[12Jul2022 21:59:38.841] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(minecraft) |
||||||
|
[12Jul2022 21:59:38.842] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(minecraft) |
||||||
|
[12Jul2022 21:59:38.843] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(minecraft) |
||||||
|
[12Jul2022 21:59:38.844] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(minecraft)] |
||||||
|
[12Jul2022 21:59:38.845] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(forge) |
||||||
|
[12Jul2022 21:59:38.846] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(forge) |
||||||
|
[12Jul2022 21:59:38.847] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(forge) |
||||||
|
[12Jul2022 21:59:38.848] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(forge) |
||||||
|
[12Jul2022 21:59:38.849] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(forge) |
||||||
|
[12Jul2022 21:59:38.850] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(forge)] |
||||||
|
[12Jul2022 21:59:38.850] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(examplemod) |
||||||
|
[12Jul2022 21:59:38.851] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(examplemod) |
||||||
|
[12Jul2022 21:59:38.852] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(examplemod) |
||||||
|
[12Jul2022 21:59:38.854] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(examplemod) |
||||||
|
[12Jul2022 21:59:38.856] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(examplemod) |
||||||
|
[12Jul2022 21:59:38.856] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(examplemod)] |
||||||
|
[12Jul2022 21:59:38.857] [main/DEBUG] [mixin/]: inject() running with 4 agents |
||||||
|
[12Jul2022 21:59:38.858] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:ModLauncher Root Container(ModLauncher:4f56a0a2)] |
||||||
|
[12Jul2022 21:59:38.859] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(minecraft)] |
||||||
|
[12Jul2022 21:59:38.860] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(forge)] |
||||||
|
[12Jul2022 21:59:38.861] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(examplemod)] |
||||||
|
[12Jul2022 21:59:38.861] [main/INFO] [cpw.mods.modlauncher.LaunchServiceHandler/MODLAUNCHER]: Launching target 'forgeserveruserdev' with arguments [--gameDir, .] |
||||||
|
[12Jul2022 21:59:38.945] [main/DEBUG] [mixin/]: Error cleaning class output directory: .mixin.out |
||||||
|
[12Jul2022 21:59:38.951] [main/DEBUG] [mixin/]: Preparing mixins for MixinEnvironment[DEFAULT] |
||||||
|
[12Jul2022 21:59:39.023] [main/DEBUG] [io.netty.util.internal.logging.InternalLoggerFactory/]: Using SLF4J as the default logging framework |
||||||
|
[12Jul2022 21:59:39.029] [main/DEBUG] [io.netty.util.ResourceLeakDetector/]: -Dio.netty.leakDetection.level: simple |
||||||
|
[12Jul2022 21:59:39.031] [main/DEBUG] [io.netty.util.ResourceLeakDetector/]: -Dio.netty.leakDetection.targetRecords: 4 |
||||||
|
[12Jul2022 21:59:39.293] [main/DEBUG] [oshi.util.FileUtil/]: No oshi.properties file found from ClassLoader cpw.mods.modlauncher.TransformingClassLoader@698fee9a |
||||||
|
[12Jul2022 21:59:39.350] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /proc/cpuinfo |
||||||
|
[12Jul2022 21:59:39.352] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /proc/cpuinfo |
||||||
|
[12Jul2022 21:59:39.383] [main/DEBUG] [oshi.util.FileUtil/]: No oshi.architecture.properties file found from ClassLoader cpw.mods.modlauncher.TransformingClassLoader@698fee9a |
||||||
|
[12Jul2022 21:59:39.515] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /proc/meminfo |
||||||
|
[12Jul2022 21:59:39.519] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /proc/meminfo |
||||||
|
[12Jul2022 21:59:40.128] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/level/levelgen/structure/Structure |
||||||
|
[12Jul2022 21:59:40.495] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/level/block/LiquidBlock |
||||||
|
[12Jul2022 21:59:40.685] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/level/block/StairBlock |
||||||
|
[12Jul2022 21:59:40.960] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/level/block/FlowerPotBlock |
||||||
|
[12Jul2022 21:59:42.858] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/item/ItemStack |
||||||
|
[12Jul2022 21:59:45.303] [main/INFO] [net.minecraft.util.datafix.DataFixers/]: Building unoptimized datafixer |
||||||
|
[12Jul2022 21:59:46.815] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/level/biome/Biome |
||||||
|
[12Jul2022 21:59:47.655] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/item/BucketItem |
||||||
|
[12Jul2022 21:59:47.778] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/effect/MobEffectInstance |
||||||
|
[12Jul2022 21:59:48.608] [main/DEBUG] [net.minecraftforge.common.ForgeI18n/CORE]: Loading I18N data entries: 5544 |
||||||
|
[12Jul2022 21:59:48.637] [main/DEBUG] [net.minecraftforge.fml.ModWorkManager/LOADING]: Using 8 threads for parallel mod-loading |
||||||
|
[12Jul2022 21:59:48.657] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLJavaModLanguageProvider/LOADING]: Loading FMLModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@698fee9a - got cpw.mods.cl.ModuleClassLoader@29006752 |
||||||
|
[12Jul2022 21:59:48.658] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Creating FMLModContainer instance for net.minecraftforge.common.ForgeMod |
||||||
|
[12Jul2022 21:59:48.676] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLJavaModLanguageProvider/LOADING]: Loading FMLModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@698fee9a - got cpw.mods.cl.ModuleClassLoader@29006752 |
||||||
|
[12Jul2022 21:59:48.680] [main/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Creating FMLModContainer instance for com.example.examplemod.ExampleMod |
||||||
|
[12Jul2022 21:59:48.756] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Attempting to inject @EventBusSubscriber classes into the eventbus for examplemod |
||||||
|
[12Jul2022 21:59:48.765] [modloading-worker-0/DEBUG] [net.minecraftforge.versions.forge.ForgeVersion/CORE]: Forge Version package package net.minecraftforge.versions.forge, Forge, version 41.0 from cpw.mods.modlauncher.TransformingClassLoader@698fee9a |
||||||
|
[12Jul2022 21:59:48.765] [modloading-worker-0/DEBUG] [net.minecraftforge.versions.forge.ForgeVersion/CORE]: Found Forge version 41.0.98 |
||||||
|
[12Jul2022 21:59:48.766] [modloading-worker-0/DEBUG] [net.minecraftforge.versions.forge.ForgeVersion/CORE]: Found Forge spec 41.0 |
||||||
|
[12Jul2022 21:59:48.766] [modloading-worker-0/DEBUG] [net.minecraftforge.versions.forge.ForgeVersion/CORE]: Found Forge group net.minecraftforge |
||||||
|
[12Jul2022 21:59:48.767] [modloading-worker-0/DEBUG] [net.minecraftforge.versions.mcp.MCPVersion/CORE]: MCP Version package package net.minecraftforge.versions.mcp, Minecraft, version 1.19 from cpw.mods.modlauncher.TransformingClassLoader@698fee9a |
||||||
|
[12Jul2022 21:59:48.767] [modloading-worker-0/DEBUG] [net.minecraftforge.versions.mcp.MCPVersion/CORE]: Found MC version information 1.19 |
||||||
|
[12Jul2022 21:59:48.767] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing com.example.examplemod.ExampleMod$ClientModEvents to MOD |
||||||
|
[12Jul2022 21:59:48.767] [modloading-worker-0/DEBUG] [net.minecraftforge.versions.mcp.MCPVersion/CORE]: Found MCP version information 20220607.102129 |
||||||
|
[12Jul2022 21:59:48.768] [modloading-worker-0/INFO] [net.minecraftforge.common.ForgeMod/FORGEMOD]: Forge mod loading, version 41.0.98, for MC 1.19 with MCP 20220607.102129 |
||||||
|
[12Jul2022 21:59:48.772] [modloading-worker-0/INFO] [net.minecraftforge.common.MinecraftForge/FORGE]: MinecraftForge v41.0.98 Initialized |
||||||
|
[12Jul2022 21:59:48.885] [modloading-worker-0/DEBUG] [io.netty.util.internal.PlatformDependent0/]: -Dio.netty.noUnsafe: false |
||||||
|
[12Jul2022 21:59:48.886] [modloading-worker-0/DEBUG] [io.netty.util.internal.PlatformDependent0/]: Java version: 17 |
||||||
|
[12Jul2022 21:59:48.887] [modloading-worker-0/DEBUG] [io.netty.util.internal.PlatformDependent0/]: sun.misc.Unsafe.theUnsafe: available |
||||||
|
[12Jul2022 21:59:48.888] [modloading-worker-0/DEBUG] [io.netty.util.internal.PlatformDependent0/]: sun.misc.Unsafe.copyMemory: available |
||||||
|
[12Jul2022 21:59:48.889] [modloading-worker-0/DEBUG] [io.netty.util.internal.PlatformDependent0/]: sun.misc.Unsafe.storeFence: available |
||||||
|
[12Jul2022 21:59:48.889] [modloading-worker-0/DEBUG] [io.netty.util.internal.PlatformDependent0/]: java.nio.Buffer.address: available |
||||||
|
[12Jul2022 21:59:48.890] [modloading-worker-0/DEBUG] [io.netty.util.internal.PlatformDependent0/]: direct buffer constructor: unavailable |
||||||
|
java.lang.UnsupportedOperationException: Reflective setAccessible(true) disabled |
||||||
|
at io.netty.util.internal.ReflectionUtil.trySetAccessible(ReflectionUtil.java:31) ~[netty-common-4.1.77.Final.jar%23135!/:4.1.77.Final] |
||||||
|
at io.netty.util.internal.PlatformDependent0$5.run(PlatformDependent0.java:287) ~[netty-common-4.1.77.Final.jar%23135!/:4.1.77.Final] |
||||||
|
at java.security.AccessController.doPrivileged(AccessController.java:318) ~[?:?] |
||||||
|
at io.netty.util.internal.PlatformDependent0.<clinit>(PlatformDependent0.java:281) ~[netty-common-4.1.77.Final.jar%23135!/:4.1.77.Final] |
||||||
|
at io.netty.util.internal.PlatformDependent.isAndroid(PlatformDependent.java:294) ~[netty-common-4.1.77.Final.jar%23135!/:4.1.77.Final] |
||||||
|
at io.netty.util.internal.PlatformDependent.<clinit>(PlatformDependent.java:88) ~[netty-common-4.1.77.Final.jar%23135!/:4.1.77.Final] |
||||||
|
at io.netty.util.ConstantPool.<init>(ConstantPool.java:34) ~[netty-common-4.1.77.Final.jar%23135!/:4.1.77.Final] |
||||||
|
at io.netty.util.AttributeKey$1.<init>(AttributeKey.java:27) ~[netty-common-4.1.77.Final.jar%23135!/:4.1.77.Final] |
||||||
|
at io.netty.util.AttributeKey.<clinit>(AttributeKey.java:27) ~[netty-common-4.1.77.Final.jar%23135!/:4.1.77.Final] |
||||||
|
at net.minecraftforge.network.NetworkConstants.<clinit>(NetworkConstants.java:34) ~[forge-1.19-41.0.98_mapped_official_1.19-recomp.jar%23177%23184!/:?] |
||||||
|
at net.minecraftforge.common.ForgeMod.<init>(ForgeMod.java:383) ~[forge-1.19-41.0.98_mapped_official_1.19-recomp.jar%23177%23184!/:?] |
||||||
|
at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) ~[?:?] |
||||||
|
at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:77) ~[?:?] |
||||||
|
at jdk.internal.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) ~[?:?] |
||||||
|
at java.lang.reflect.Constructor.newInstanceWithCaller(Constructor.java:499) ~[?:?] |
||||||
|
at java.lang.reflect.Constructor.newInstance(Constructor.java:480) ~[?:?] |
||||||
|
at net.minecraftforge.fml.javafmlmod.FMLModContainer.constructMod(FMLModContainer.java:68) ~[javafmllanguage-1.19-41.0.98.jar%23179!/:?] |
||||||
|
at net.minecraftforge.fml.ModContainer.lambda$buildTransitionHandler$10(ModContainer.java:121) ~[fmlcore-1.19-41.0.98.jar%23182!/:?] |
||||||
|
at java.util.concurrent.CompletableFuture$AsyncRun.run(CompletableFuture.java:1804) [?:?] |
||||||
|
at java.util.concurrent.CompletableFuture$AsyncRun.exec(CompletableFuture.java:1796) [?:?] |
||||||
|
at java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:373) [?:?] |
||||||
|
at java.util.concurrent.ForkJoinPool$WorkQueue.topLevelExec(ForkJoinPool.java:1182) [?:?] |
||||||
|
at java.util.concurrent.ForkJoinPool.scan(ForkJoinPool.java:1655) [?:?] |
||||||
|
at java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1622) [?:?] |
||||||
|
at java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:165) [?:?] |
||||||
|
[12Jul2022 21:59:48.897] [modloading-worker-0/DEBUG] [io.netty.util.internal.PlatformDependent0/]: java.nio.Bits.unaligned: available, true |
||||||
|
[12Jul2022 21:59:48.901] [modloading-worker-0/DEBUG] [io.netty.util.internal.PlatformDependent0/]: jdk.internal.misc.Unsafe.allocateUninitializedArray(int): unavailable |
||||||
|
java.lang.IllegalAccessException: class io.netty.util.internal.PlatformDependent0$7 (in module io.netty.common) cannot access class jdk.internal.misc.Unsafe (in module java.base) because module java.base does not export jdk.internal.misc to module io.netty.common |
||||||
|
at jdk.internal.reflect.Reflection.newIllegalAccessException(Reflection.java:392) ~[?:?] |
||||||
|
at java.lang.reflect.AccessibleObject.checkAccess(AccessibleObject.java:674) ~[?:?] |
||||||
|
at java.lang.reflect.Method.invoke(Method.java:560) ~[?:?] |
||||||
|
at io.netty.util.internal.PlatformDependent0$7.run(PlatformDependent0.java:409) ~[netty-common-4.1.77.Final.jar%23135!/:4.1.77.Final] |
||||||
|
at java.security.AccessController.doPrivileged(AccessController.java:318) ~[?:?] |
||||||
|
at io.netty.util.internal.PlatformDependent0.<clinit>(PlatformDependent0.java:400) ~[netty-common-4.1.77.Final.jar%23135!/:4.1.77.Final] |
||||||
|
at io.netty.util.internal.PlatformDependent.isAndroid(PlatformDependent.java:294) ~[netty-common-4.1.77.Final.jar%23135!/:4.1.77.Final] |
||||||
|
at io.netty.util.internal.PlatformDependent.<clinit>(PlatformDependent.java:88) ~[netty-common-4.1.77.Final.jar%23135!/:4.1.77.Final] |
||||||
|
at io.netty.util.ConstantPool.<init>(ConstantPool.java:34) ~[netty-common-4.1.77.Final.jar%23135!/:4.1.77.Final] |
||||||
|
at io.netty.util.AttributeKey$1.<init>(AttributeKey.java:27) ~[netty-common-4.1.77.Final.jar%23135!/:4.1.77.Final] |
||||||
|
at io.netty.util.AttributeKey.<clinit>(AttributeKey.java:27) ~[netty-common-4.1.77.Final.jar%23135!/:4.1.77.Final] |
||||||
|
at net.minecraftforge.network.NetworkConstants.<clinit>(NetworkConstants.java:34) ~[forge-1.19-41.0.98_mapped_official_1.19-recomp.jar%23177%23184!/:?] |
||||||
|
at net.minecraftforge.common.ForgeMod.<init>(ForgeMod.java:383) ~[forge-1.19-41.0.98_mapped_official_1.19-recomp.jar%23177%23184!/:?] |
||||||
|
at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) ~[?:?] |
||||||
|
at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:77) ~[?:?] |
||||||
|
at jdk.internal.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) ~[?:?] |
||||||
|
at java.lang.reflect.Constructor.newInstanceWithCaller(Constructor.java:499) ~[?:?] |
||||||
|
at java.lang.reflect.Constructor.newInstance(Constructor.java:480) ~[?:?] |
||||||
|
at net.minecraftforge.fml.javafmlmod.FMLModContainer.constructMod(FMLModContainer.java:68) ~[javafmllanguage-1.19-41.0.98.jar%23179!/:?] |
||||||
|
at net.minecraftforge.fml.ModContainer.lambda$buildTransitionHandler$10(ModContainer.java:121) ~[fmlcore-1.19-41.0.98.jar%23182!/:?] |
||||||
|
at java.util.concurrent.CompletableFuture$AsyncRun.run(CompletableFuture.java:1804) [?:?] |
||||||
|
at java.util.concurrent.CompletableFuture$AsyncRun.exec(CompletableFuture.java:1796) [?:?] |
||||||
|
at java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:373) [?:?] |
||||||
|
at java.util.concurrent.ForkJoinPool$WorkQueue.topLevelExec(ForkJoinPool.java:1182) [?:?] |
||||||
|
at java.util.concurrent.ForkJoinPool.scan(ForkJoinPool.java:1655) [?:?] |
||||||
|
at java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1622) [?:?] |
||||||
|
at java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:165) [?:?] |
||||||
|
[12Jul2022 21:59:48.907] [modloading-worker-0/DEBUG] [io.netty.util.internal.PlatformDependent0/]: java.nio.DirectByteBuffer.<init>(long, int): unavailable |
||||||
|
[12Jul2022 21:59:48.907] [modloading-worker-0/DEBUG] [io.netty.util.internal.PlatformDependent/]: sun.misc.Unsafe: available |
||||||
|
[12Jul2022 21:59:48.909] [modloading-worker-0/DEBUG] [io.netty.util.internal.PlatformDependent/]: maxDirectMemory: 4185915392 bytes (maybe) |
||||||
|
[12Jul2022 21:59:48.909] [modloading-worker-0/DEBUG] [io.netty.util.internal.PlatformDependent/]: -Dio.netty.tmpdir: /tmp (java.io.tmpdir) |
||||||
|
[12Jul2022 21:59:48.909] [modloading-worker-0/DEBUG] [io.netty.util.internal.PlatformDependent/]: -Dio.netty.bitMode: 64 (sun.arch.data.model) |
||||||
|
[12Jul2022 21:59:48.913] [modloading-worker-0/DEBUG] [io.netty.util.internal.PlatformDependent/]: -Dio.netty.maxDirectMemory: -1 bytes |
||||||
|
[12Jul2022 21:59:48.914] [modloading-worker-0/DEBUG] [io.netty.util.internal.PlatformDependent/]: -Dio.netty.uninitializedArrayAllocationThreshold: -1 |
||||||
|
[12Jul2022 21:59:48.921] [modloading-worker-0/DEBUG] [io.netty.util.internal.CleanerJava9/]: java.nio.ByteBuffer.cleaner(): available |
||||||
|
[12Jul2022 21:59:48.921] [modloading-worker-0/DEBUG] [io.netty.util.internal.PlatformDependent/]: -Dio.netty.noPreferDirect: false |
||||||
|
[12Jul2022 21:59:48.974] [modloading-worker-0/DEBUG] [net.minecraftforge.common.ForgeMod/FORGEMOD]: Loading Network data for FML net version: FML3 |
||||||
|
[12Jul2022 21:59:49.065] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.config.ConfigTracker/CONFIG]: Config file forge-client.toml for forge tracking |
||||||
|
[12Jul2022 21:59:49.065] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.config.ConfigTracker/CONFIG]: Config file forge-server.toml for forge tracking |
||||||
|
[12Jul2022 21:59:49.066] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.config.ConfigTracker/CONFIG]: Config file forge-common.toml for forge tracking |
||||||
|
[12Jul2022 21:59:49.117] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Attempting to inject @EventBusSubscriber classes into the eventbus for forge |
||||||
|
[12Jul2022 21:59:49.118] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing net.minecraftforge.common.ForgeSpawnEggItem$CommonHandler to MOD |
||||||
|
[12Jul2022 21:59:49.495] [main/DEBUG] [net.minecraftforge.fml.config.ConfigTracker/CONFIG]: Loading configs type COMMON |
||||||
|
[12Jul2022 21:59:49.496] [main/DEBUG] [net.minecraftforge.fml.config.ConfigFileTypeHandler/CONFIG]: Built TOML config for /home/niconiconii/Documents/SigsUniverse/run/config/forge-common.toml |
||||||
|
[12Jul2022 21:59:49.497] [main/DEBUG] [net.minecraftforge.fml.config.ConfigFileTypeHandler/CONFIG]: Loaded TOML config file /home/niconiconii/Documents/SigsUniverse/run/config/forge-common.toml |
||||||
|
[12Jul2022 21:59:49.499] [main/DEBUG] [net.minecraftforge.fml.config.ConfigFileTypeHandler/CONFIG]: Watching TOML config file /home/niconiconii/Documents/SigsUniverse/run/config/forge-common.toml for changes |
||||||
|
[12Jul2022 21:59:49.501] [main/DEBUG] [net.minecraftforge.common.ForgeConfig/FORGEMOD]: Loaded forge config file forge-common.toml |
||||||
|
[12Jul2022 21:59:49.502] [Thread-0/DEBUG] [net.minecraftforge.fml.config.ConfigFileTypeHandler/CONFIG]: Config file forge-common.toml changed, sending notifies |
||||||
|
[12Jul2022 21:59:49.503] [Thread-0/DEBUG] [net.minecraftforge.common.ForgeConfig/FORGEMOD]: Forge config just got changed on the file system! |
||||||
|
[12Jul2022 21:59:49.503] [Thread-0/DEBUG] [net.minecraftforge.fml.config.ConfigFileTypeHandler/CONFIG]: Config file forge-common.toml changed, sending notifies |
||||||
|
[12Jul2022 21:59:49.504] [Thread-0/DEBUG] [net.minecraftforge.common.ForgeConfig/FORGEMOD]: Forge config just got changed on the file system! |
||||||
|
[12Jul2022 21:59:49.506] [modloading-worker-0/INFO] [com.example.examplemod.ExampleMod/]: HELLO FROM COMMON SETUP |
||||||
|
[12Jul2022 21:59:49.506] [modloading-worker-0/INFO] [com.example.examplemod.ExampleMod/]: DIRT BLOCK >> minecraft:dirt |
||||||
|
[12Jul2022 21:59:49.805] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [forge] Starting version check at https://files.minecraftforge.net/net/minecraftforge/forge/promotions_slim.json |
||||||
|
[12Jul2022 21:59:50.398] [Forge Version Check/DEBUG] [net.minecraftforge.fml.VersionChecker/]: [forge] Received version check data: |
||||||
|
{ |
||||||
|
"homepage": "https://files.minecraftforge.net/net/minecraftforge/forge/", |
||||||
|
"promos": { |
||||||
|
"1.1-latest": "1.3.4.29", |
||||||
|
"1.2.3-latest": "1.4.1.64", |
||||||
|
"1.2.4-latest": "2.0.0.68", |
||||||
|
"1.2.5-latest": "3.4.9.171", |
||||||
|
"1.3.2-latest": "4.3.5.318", |
||||||
|
"1.4.0-latest": "5.0.0.326", |
||||||
|
"1.4.1-latest": "6.0.0.329", |
||||||
|
"1.4.2-latest": "6.0.1.355", |
||||||
|
"1.4.3-latest": "6.2.1.358", |
||||||
|
"1.4.4-latest": "6.3.0.378", |
||||||
|
"1.4.5-latest": "6.4.2.448", |
||||||
|
"1.4.6-latest": "6.5.0.489", |
||||||
|
"1.4.7-latest": "6.6.2.534", |
||||||
|
"1.5-latest": "7.7.0.598", |
||||||
|
"1.5.1-latest": "7.7.2.682", |
||||||
|
"1.5.2-latest": "7.8.1.738", |
||||||
|
"1.5.2-recommended": "7.8.1.738", |
||||||
|
"1.6.1-latest": "8.9.0.775", |
||||||
|
"1.6.2-latest": "9.10.1.871", |
||||||
|
"1.6.2-recommended": "9.10.1.871", |
||||||
|
"1.6.3-latest": "9.11.0.878", |
||||||
|
"1.6.4-latest": "9.11.1.1345", |
||||||
|
"1.6.4-recommended": "9.11.1.1345", |
||||||
|
"1.7.2-latest": "10.12.2.1161", |
||||||
|
"1.7.2-recommended": "10.12.2.1161", |
||||||
|
"1.7.10_pre4-latest": "10.12.2.1149", |
||||||
|
"1.7.10-latest": "10.13.4.1614", |
||||||
|
"1.7.10-recommended": "10.13.4.1614", |
||||||
|
"1.8-latest": "11.14.4.1577", |
||||||
|
"1.8-recommended": "11.14.4.1563", |
||||||
|
"1.8.8-latest": "11.15.0.1655", |
||||||
|
"1.8.9-latest": "11.15.1.2318", |
||||||
|
"1.8.9-recommended": "11.15.1.2318", |
||||||
|
"1.9-latest": "12.16.1.1938", |
||||||
|
"1.9-recommended": "12.16.1.1887", |
||||||
|
"1.9.4-latest": "12.17.0.2317", |
||||||
|
"1.9.4-recommended": "12.17.0.2317", |
||||||
|
"1.10-latest": "12.18.0.2000", |
||||||
|
"1.10.2-latest": "12.18.3.2511", |
||||||
|
"1.10.2-recommended": "12.18.3.2511", |
||||||
|
"1.11-latest": "13.19.1.2199", |
||||||
|
"1.11-recommended": "13.19.1.2189", |
||||||
|
"1.11.2-latest": "13.20.1.2588", |
||||||
|
"1.11.2-recommended": "13.20.1.2588", |
||||||
|
"1.12-latest": "14.21.1.2443", |
||||||
|
"1.12-recommended": "14.21.1.2387", |
||||||
|
"1.12.1-latest": "14.22.1.2485", |
||||||
|
"1.12.1-recommended": "14.22.1.2478", |
||||||
|
"1.12.2-latest": "14.23.5.2860", |
||||||
|
"1.12.2-recommended": "14.23.5.2859", |
||||||
|
"1.13.2-latest": "25.0.223", |
||||||
|
"1.14.2-latest": "26.0.63", |
||||||
|
"1.14.3-latest": "27.0.60", |
||||||
|
"1.14.4-latest": "28.2.26", |
||||||
|
"1.14.4-recommended": "28.2.26", |
||||||
|
"1.15-latest": "29.0.4", |
||||||
|
"1.15.1-latest": "30.0.51", |
||||||
|
"1.15.2-latest": "31.2.57", |
||||||
|
"1.15.2-recommended": "31.2.57", |
||||||
|
"1.16.1-latest": "32.0.108", |
||||||
|
"1.16.2-latest": "33.0.61", |
||||||
|
"1.16.3-latest": "34.1.42", |
||||||
|
"1.16.3-recommended": "34.1.0", |
||||||
|
"1.16.4-latest": "35.1.37", |
||||||
|
"1.16.4-recommended": "35.1.4", |
||||||
|
"1.16.5-latest": "36.2.35", |
||||||
|
"1.16.5-recommended": "36.2.34", |
||||||
|
"1.17.1-latest": "37.1.1", |
||||||
|
"1.17.1-recommended": "37.1.1", |
||||||
|
"1.18-latest": "38.0.17", |
||||||
|
"1.18.1-latest": "39.1.2", |
||||||
|
"1.18.1-recommended": "39.1.0", |
||||||
|
"1.18.2-latest": "40.1.60", |
||||||
|
"1.18.2-recommended": "40.1.0", |
||||||
|
"1.19-latest": "41.0.98" |
||||||
|
} |
||||||
|
} |
||||||
|
[12Jul2022 21:59:50.400] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [forge] Found status: BETA Current: 41.0.98 Target: 41.0.98 |
||||||
|
[12Jul2022 21:59:51.286] [main/INFO] [com.mojang.authlib.yggdrasil.YggdrasilAuthenticationService/]: Environment: authHost='https://authserver.mojang.com', accountsHost='https://api.mojang.com', sessionHost='https://sessionserver.mojang.com', servicesHost='https://api.minecraftservices.com', name='PROD' |
||||||
|
[12Jul2022 21:59:52.502] [main/WARN] [net.minecraft.server.packs.VanillaPackResources/]: Assets URL 'union:/home/niconiconii/.gradle/caches/forge_gradle/minecraft_user_repo/net/minecraftforge/forge/1.19-41.0.98_mapped_official_1.19/forge-1.19-41.0.98_mapped_official_1.19-recomp.jar%23178!/assets/.mcassetsroot' uses unexpected schema |
||||||
|
[12Jul2022 21:59:52.503] [main/WARN] [net.minecraft.server.packs.VanillaPackResources/]: Assets URL 'union:/home/niconiconii/.gradle/caches/forge_gradle/minecraft_user_repo/net/minecraftforge/forge/1.19-41.0.98_mapped_official_1.19/forge-1.19-41.0.98_mapped_official_1.19-recomp.jar%23178!/data/.mcassetsroot' uses unexpected schema |
||||||
|
[12Jul2022 21:59:52.576] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:forge for mod file / |
||||||
|
[12Jul2022 21:59:52.591] [main/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:examplemod for mod file /home/niconiconii/Documents/SigsUniverse/build/resources/main |
||||||
|
[12Jul2022 21:59:52.621] [Worker-Main-3/DEBUG] [net.minecraftforge.resource.ResourceCacheManager$NamespacedResourceCacheManager/]: Failed to cache resources, the directory does not exist! |
||||||
|
cpw.mods.niofs.union.UnionFileSystem$NoSuchFileException: /assets/minecraft |
||||||
|
[12Jul2022 21:59:52.644] [Worker-Main-5/DEBUG] [net.minecraftforge.resource.ResourceCacheManager$NamespacedResourceCacheManager/]: Failed to cache resources, the directory does not exist! |
||||||
|
cpw.mods.niofs.union.UnionFileSystem$NoSuchFileException: /data/realms |
||||||
|
[12Jul2022 21:59:52.648] [Worker-Main-4/DEBUG] [net.minecraftforge.resource.ResourceCacheManager$NamespacedResourceCacheManager/]: Failed to cache resources, the directory does not exist! |
||||||
|
cpw.mods.niofs.union.UnionFileSystem$NoSuchFileException: /assets/minecraft |
||||||
|
[12Jul2022 21:59:52.654] [Worker-Main-4/DEBUG] [net.minecraftforge.resource.ResourceCacheManager$NamespacedResourceCacheManager/]: Failed to cache resources, the directory does not exist! |
||||||
|
cpw.mods.niofs.union.UnionFileSystem$NoSuchFileException: /assets/minecraft |
||||||
|
[12Jul2022 21:59:56.652] [main/INFO] [net.minecraft.world.item.crafting.RecipeManager/]: Loaded 7 recipes |
||||||
|
[12Jul2022 21:59:57.618] [main/INFO] [net.minecraft.advancements.AdvancementList/]: Loaded 1179 advancements |
||||||
|
[12Jul2022 21:59:58.280] [main/DEBUG] [net.minecraftforge.common.ForgeHooks/WP]: Gathering id map for writing to world save world |
||||||
|
[12Jul2022 21:59:58.294] [main/DEBUG] [net.minecraftforge.common.ForgeHooks/WP]: ID Map collection complete world |
||||||
|
[12Jul2022 21:59:59.100] [Server thread/INFO] [net.minecraft.server.dedicated.DedicatedServer/]: Starting minecraft server version 1.19 |
||||||
|
[12Jul2022 21:59:59.102] [Server thread/INFO] [net.minecraft.server.dedicated.DedicatedServer/]: Loading properties |
||||||
|
[12Jul2022 21:59:59.103] [Server thread/INFO] [net.minecraft.server.dedicated.DedicatedServer/]: Default game type: SURVIVAL |
||||||
|
[12Jul2022 21:59:59.103] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Generating keypair |
||||||
|
[12Jul2022 21:59:59.294] [Server thread/INFO] [net.minecraft.server.dedicated.DedicatedServer/]: Starting Minecraft server on *:25565 |
||||||
|
[12Jul2022 21:59:59.306] [Server thread/DEBUG] [io.netty.util.internal.NativeLibraryLoader/]: -Dio.netty.native.workdir: /tmp (io.netty.tmpdir) |
||||||
|
[12Jul2022 21:59:59.307] [Server thread/DEBUG] [io.netty.util.internal.NativeLibraryLoader/]: -Dio.netty.native.deleteLibAfterLoading: true |
||||||
|
[12Jul2022 21:59:59.308] [Server thread/DEBUG] [io.netty.util.internal.NativeLibraryLoader/]: -Dio.netty.native.tryPatchShadedId: true |
||||||
|
[12Jul2022 21:59:59.313] [Server thread/DEBUG] [io.netty.util.internal.NativeLibraryLoader/]: -Dio.netty.native.detectNativeLibraryDuplicates: true |
||||||
|
[12Jul2022 21:59:59.343] [Server thread/DEBUG] [io.netty.util.internal.NativeLibraryLoader/]: Successfully loaded the library /tmp/libnetty_transport_native_epoll_x86_64502496183730745319.so |
||||||
|
[12Jul2022 21:59:59.348] [Server thread/DEBUG] [io.netty.util.NetUtil/]: -Djava.net.preferIPv4Stack: false |
||||||
|
[12Jul2022 21:59:59.348] [Server thread/DEBUG] [io.netty.util.NetUtil/]: -Djava.net.preferIPv6Addresses: true |
||||||
|
[12Jul2022 21:59:59.352] [Server thread/DEBUG] [io.netty.util.NetUtilInitializations/]: Loopback interface: lo (lo, 0:0:0:0:0:0:0:1%lo) |
||||||
|
[12Jul2022 21:59:59.355] [Server thread/DEBUG] [io.netty.util.NetUtil/]: /proc/sys/net/core/somaxconn: 4096 |
||||||
|
[12Jul2022 21:59:59.368] [Server thread/INFO] [net.minecraft.server.network.ServerConnectionListener/]: Using epoll channel type |
||||||
|
[12Jul2022 21:59:59.391] [Server thread/DEBUG] [io.netty.channel.MultithreadEventLoopGroup/]: -Dio.netty.eventLoopThreads: 16 |
||||||
|
[12Jul2022 21:59:59.413] [Server thread/DEBUG] [io.netty.util.internal.InternalThreadLocalMap/]: -Dio.netty.threadLocalMap.stringBuilder.initialSize: 1024 |
||||||
|
[12Jul2022 21:59:59.414] [Server thread/DEBUG] [io.netty.util.internal.InternalThreadLocalMap/]: -Dio.netty.threadLocalMap.stringBuilder.maxSize: 4096 |
||||||
|
[12Jul2022 21:59:59.434] [Server thread/DEBUG] [io.netty.util.internal.PlatformDependent/]: org.jctools-core.MpscChunkedArrayQueue: available |
||||||
|
[12Jul2022 21:59:59.449] [Server thread/DEBUG] [io.netty.channel.DefaultChannelId/]: -Dio.netty.processId: 574012 (auto-detected) |
||||||
|
[12Jul2022 21:59:59.452] [Server thread/DEBUG] [io.netty.channel.DefaultChannelId/]: -Dio.netty.machineId: 4c:cc:6a:ff:fe:4b:77:a4 (auto-detected) |
||||||
|
[12Jul2022 21:59:59.492] [Server thread/DEBUG] [io.netty.buffer.PooledByteBufAllocator/]: -Dio.netty.allocator.numHeapArenas: 16 |
||||||
|
[12Jul2022 21:59:59.493] [Server thread/DEBUG] [io.netty.buffer.PooledByteBufAllocator/]: -Dio.netty.allocator.numDirectArenas: 16 |
||||||
|
[12Jul2022 21:59:59.493] [Server thread/DEBUG] [io.netty.buffer.PooledByteBufAllocator/]: -Dio.netty.allocator.pageSize: 8192 |
||||||
|
[12Jul2022 21:59:59.494] [Server thread/DEBUG] [io.netty.buffer.PooledByteBufAllocator/]: -Dio.netty.allocator.maxOrder: 9 |
||||||
|
[12Jul2022 21:59:59.494] [Server thread/DEBUG] [io.netty.buffer.PooledByteBufAllocator/]: -Dio.netty.allocator.chunkSize: 4194304 |
||||||
|
[12Jul2022 21:59:59.495] [Server thread/DEBUG] [io.netty.buffer.PooledByteBufAllocator/]: -Dio.netty.allocator.smallCacheSize: 256 |
||||||
|
[12Jul2022 21:59:59.495] [Server thread/DEBUG] [io.netty.buffer.PooledByteBufAllocator/]: -Dio.netty.allocator.normalCacheSize: 64 |
||||||
|
[12Jul2022 21:59:59.496] [Server thread/DEBUG] [io.netty.buffer.PooledByteBufAllocator/]: -Dio.netty.allocator.maxCachedBufferCapacity: 32768 |
||||||
|
[12Jul2022 21:59:59.496] [Server thread/DEBUG] [io.netty.buffer.PooledByteBufAllocator/]: -Dio.netty.allocator.cacheTrimInterval: 8192 |
||||||
|
[12Jul2022 21:59:59.497] [Server thread/DEBUG] [io.netty.buffer.PooledByteBufAllocator/]: -Dio.netty.allocator.cacheTrimIntervalMillis: 0 |
||||||
|
[12Jul2022 21:59:59.497] [Server thread/DEBUG] [io.netty.buffer.PooledByteBufAllocator/]: -Dio.netty.allocator.useCacheForAllThreads: false |
||||||
|
[12Jul2022 21:59:59.497] [Server thread/DEBUG] [io.netty.buffer.PooledByteBufAllocator/]: -Dio.netty.allocator.maxCachedByteBuffersPerChunk: 1023 |
||||||
|
[12Jul2022 21:59:59.525] [Server thread/DEBUG] [io.netty.buffer.ByteBufUtil/]: -Dio.netty.allocator.type: pooled |
||||||
|
[12Jul2022 21:59:59.525] [Server thread/DEBUG] [io.netty.buffer.ByteBufUtil/]: -Dio.netty.threadLocalDirectBufferSize: 0 |
||||||
|
[12Jul2022 21:59:59.525] [Server thread/DEBUG] [io.netty.buffer.ByteBufUtil/]: -Dio.netty.maxThreadLocalCharBufferSize: 16384 |
||||||
|
[12Jul2022 21:59:59.544] [Server thread/WARN] [net.minecraft.server.dedicated.DedicatedServer/]: **** SERVER IS RUNNING IN OFFLINE/INSECURE MODE! |
||||||
|
[12Jul2022 21:59:59.546] [Server thread/WARN] [net.minecraft.server.dedicated.DedicatedServer/]: The server will make no attempt to authenticate usernames. Beware. |
||||||
|
[12Jul2022 21:59:59.547] [Server thread/WARN] [net.minecraft.server.dedicated.DedicatedServer/]: While this makes the game possible to play without internet access, it also opens up the ability for hackers to connect with any username they choose. |
||||||
|
[12Jul2022 21:59:59.547] [Server thread/WARN] [net.minecraft.server.dedicated.DedicatedServer/]: To change this, set "online-mode" to "true" in the server.properties file. |
||||||
|
[12Jul2022 21:59:59.590] [Server thread/DEBUG] [net.minecraftforge.fml.loading.FileUtils/CORE]: Found existing serverconfig directory : ./world/serverconfig |
||||||
|
[12Jul2022 21:59:59.592] [Server thread/DEBUG] [net.minecraftforge.fml.config.ConfigTracker/CONFIG]: Loading configs type SERVER |
||||||
|
[12Jul2022 21:59:59.593] [Server thread/DEBUG] [net.minecraftforge.fml.config.ConfigFileTypeHandler/CONFIG]: Built TOML config for ./world/serverconfig/forge-server.toml |
||||||
|
[12Jul2022 21:59:59.603] [Server thread/DEBUG] [net.minecraftforge.fml.config.ConfigFileTypeHandler/CONFIG]: Loaded TOML config file ./world/serverconfig/forge-server.toml |
||||||
|
[12Jul2022 21:59:59.613] [Server thread/DEBUG] [net.minecraftforge.fml.config.ConfigFileTypeHandler/CONFIG]: Watching TOML config file ./world/serverconfig/forge-server.toml for changes |
||||||
|
[12Jul2022 21:59:59.618] [Server thread/DEBUG] [net.minecraftforge.common.ForgeConfig/FORGEMOD]: Loaded forge config file forge-server.toml |
||||||
|
[12Jul2022 21:59:59.620] [Thread-0/DEBUG] [net.minecraftforge.fml.config.ConfigFileTypeHandler/CONFIG]: Config file forge-server.toml changed, sending notifies |
||||||
|
[12Jul2022 21:59:59.621] [Thread-0/DEBUG] [net.minecraftforge.common.ForgeConfig/FORGEMOD]: Forge config just got changed on the file system! |
||||||
|
[12Jul2022 21:59:59.659] [Server thread/INFO] [net.minecraft.server.dedicated.DedicatedServer/]: Preparing level "world" |
||||||
|
[12Jul2022 22:00:00.212] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Preparing start region for dimension minecraft:overworld |
||||||
|
[12Jul2022 22:00:07.359] [Worker-Main-7/INFO] [net.minecraft.server.level.progress.LoggerChunkProgressListener/]: Preparing spawn area: 0% |
||||||
|
[12Jul2022 22:00:07.367] [Worker-Main-5/INFO] [net.minecraft.server.level.progress.LoggerChunkProgressListener/]: Preparing spawn area: 0% |
||||||
|
[12Jul2022 22:00:07.368] [Worker-Main-5/INFO] [net.minecraft.server.level.progress.LoggerChunkProgressListener/]: Preparing spawn area: 0% |
||||||
|
[12Jul2022 22:00:07.368] [Worker-Main-5/INFO] [net.minecraft.server.level.progress.LoggerChunkProgressListener/]: Preparing spawn area: 0% |
||||||
|
[12Jul2022 22:00:07.370] [Worker-Main-3/INFO] [net.minecraft.server.level.progress.LoggerChunkProgressListener/]: Preparing spawn area: 0% |
||||||
|
[12Jul2022 22:00:07.371] [Worker-Main-3/INFO] [net.minecraft.server.level.progress.LoggerChunkProgressListener/]: Preparing spawn area: 0% |
||||||
|
[12Jul2022 22:00:07.372] [Worker-Main-7/INFO] [net.minecraft.server.level.progress.LoggerChunkProgressListener/]: Preparing spawn area: 0% |
||||||
|
[12Jul2022 22:00:07.377] [Worker-Main-7/INFO] [net.minecraft.server.level.progress.LoggerChunkProgressListener/]: Preparing spawn area: 0% |
||||||
|
[12Jul2022 22:00:07.378] [Worker-Main-4/INFO] [net.minecraft.server.level.progress.LoggerChunkProgressListener/]: Preparing spawn area: 0% |
||||||
|
[12Jul2022 22:00:07.379] [Worker-Main-4/INFO] [net.minecraft.server.level.progress.LoggerChunkProgressListener/]: Preparing spawn area: 0% |
||||||
|
[12Jul2022 22:00:07.380] [Worker-Main-4/INFO] [net.minecraft.server.level.progress.LoggerChunkProgressListener/]: Preparing spawn area: 0% |
||||||
|
[12Jul2022 22:00:07.380] [Worker-Main-4/INFO] [net.minecraft.server.level.progress.LoggerChunkProgressListener/]: Preparing spawn area: 0% |
||||||
|
[12Jul2022 22:00:07.381] [Worker-Main-4/INFO] [net.minecraft.server.level.progress.LoggerChunkProgressListener/]: Preparing spawn area: 0% |
||||||
|
[12Jul2022 22:00:07.382] [Worker-Main-4/INFO] [net.minecraft.server.level.progress.LoggerChunkProgressListener/]: Preparing spawn area: 0% |
||||||
|
[12Jul2022 22:00:07.384] [Worker-Main-4/INFO] [net.minecraft.server.level.progress.LoggerChunkProgressListener/]: Preparing spawn area: 0% |
||||||
|
[12Jul2022 22:00:07.713] [Worker-Main-2/INFO] [net.minecraft.server.level.progress.LoggerChunkProgressListener/]: Preparing spawn area: 0% |
||||||
|
[12Jul2022 22:00:07.873] [Thread-0/DEBUG] [net.minecraftforge.fml.config.ConfigFileTypeHandler/CONFIG]: Config file forge-common.toml changed, sending notifies |
||||||
|
[12Jul2022 22:00:07.875] [Thread-0/DEBUG] [net.minecraftforge.common.ForgeConfig/FORGEMOD]: Forge config just got changed on the file system! |
||||||
|
[12Jul2022 22:00:08.213] [Worker-Main-7/INFO] [net.minecraft.server.level.progress.LoggerChunkProgressListener/]: Preparing spawn area: 22% |
||||||
|
[12Jul2022 22:00:08.713] [Worker-Main-2/INFO] [net.minecraft.server.level.progress.LoggerChunkProgressListener/]: Preparing spawn area: 80% |
||||||
|
[12Jul2022 22:00:09.230] [Worker-Main-2/INFO] [net.minecraft.server.level.progress.LoggerChunkProgressListener/]: Preparing spawn area: 86% |
||||||
|
[12Jul2022 22:00:09.533] [Server thread/INFO] [net.minecraft.server.level.progress.LoggerChunkProgressListener/]: Time elapsed: 9321 ms |
||||||
|
[12Jul2022 22:00:09.534] [Server thread/INFO] [net.minecraft.server.dedicated.DedicatedServer/]: Done (9.960s)! For help, type "help" |
||||||
|
[12Jul2022 22:00:09.545] [Server thread/DEBUG] [net.minecraftforge.common.ForgeI18n/CORE]: Loading I18N data entries: 208 |
||||||
|
[12Jul2022 22:00:09.549] [Server thread/INFO] [net.minecraftforge.gametest.ForgeGameTestHooks/]: Enabled Gametest Namespaces: [examplemod] |
||||||
|
[12Jul2022 22:00:09.573] [Server thread/INFO] [net.minecraftforge.server.permission.PermissionAPI/]: Successfully initialized permission handler forge:default_handler |
||||||
|
[12Jul2022 22:00:09.574] [Server thread/INFO] [com.example.examplemod.ExampleMod/]: HELLO from server starting |
||||||
|
[12Jul2022 22:00:26.781] [Netty Epoll Server IO #1/DEBUG] [io.netty.util.Recycler/]: -Dio.netty.recycler.maxCapacityPerThread: 4096 |
||||||
|
[12Jul2022 22:00:26.788] [Netty Epoll Server IO #1/DEBUG] [io.netty.util.Recycler/]: -Dio.netty.recycler.ratio: 8 |
||||||
|
[12Jul2022 22:00:26.788] [Netty Epoll Server IO #1/DEBUG] [io.netty.util.Recycler/]: -Dio.netty.recycler.chunkSize: 32 |
||||||
|
[12Jul2022 22:00:26.789] [Netty Epoll Server IO #1/DEBUG] [io.netty.util.Recycler/]: -Dio.netty.recycler.blocking: false |
||||||
|
[12Jul2022 22:00:26.803] [Netty Epoll Server IO #1/DEBUG] [io.netty.buffer.AbstractByteBuf/]: -Dio.netty.buffer.checkAccessible: true |
||||||
|
[12Jul2022 22:00:26.806] [Netty Epoll Server IO #1/DEBUG] [io.netty.buffer.AbstractByteBuf/]: -Dio.netty.buffer.checkBounds: true |
||||||
|
[12Jul2022 22:00:26.807] [Netty Epoll Server IO #1/DEBUG] [io.netty.util.ResourceLeakDetectorFactory/]: Loaded default ResourceLeakDetector: io.netty.util.ResourceLeakDetector@5fd1654d |
||||||
|
[12Jul2022 22:00:27.594] [Netty Epoll Server IO #2/DEBUG] [net.minecraftforge.network.HandshakeHandler/FMLHANDSHAKE]: Starting new modded impl connection. Found 20 messages to dispatch. |
||||||
|
[12Jul2022 22:00:27.625] [Server thread/DEBUG] [net.minecraftforge.network.HandshakeHandler/FMLHANDSHAKE]: Sending ticking packet info 'net.minecraftforge.network.HandshakeMessages$S2CModData' to 'fml:handshake' sequence 0 |
||||||
|
[12Jul2022 22:00:27.674] [Server thread/DEBUG] [net.minecraftforge.network.HandshakeHandler/FMLHANDSHAKE]: Sending ticking packet info 'net.minecraftforge.network.HandshakeMessages$S2CModList' to 'fml:handshake' sequence 1 |
||||||
|
[12Jul2022 22:00:27.686] [Netty Epoll Server IO #2/DEBUG] [net.minecraftforge.network.LoginWrapper/FMLHANDSHAKE]: Recieved login wrapper packet event for channel fml:handshake with index 1 |
||||||
|
[12Jul2022 22:00:27.688] [Netty Epoll Server IO #2/DEBUG] [net.minecraftforge.network.HandshakeHandler/FMLHANDSHAKE]: Received client indexed reply 1 of type net.minecraftforge.network.HandshakeMessages$C2SModListReply |
||||||
|
[12Jul2022 22:00:27.688] [Netty Epoll Server IO #2/DEBUG] [net.minecraftforge.network.HandshakeHandler/FMLHANDSHAKE]: Received client connection with modlist [minecraft, forge, examplemod] |
||||||
|
[12Jul2022 22:00:27.689] [Netty Epoll Server IO #2/DEBUG] [net.minecraftforge.network.NetworkRegistry/NETREGISTRY]: Channel 'fml:loginwrapper' : Version test of 'FML3' from client : ACCEPTED |
||||||
|
[12Jul2022 22:00:27.690] [Netty Epoll Server IO #2/DEBUG] [net.minecraftforge.network.NetworkRegistry/NETREGISTRY]: Channel 'forge:tier_sorting' : Version test of '1.0' from client : ACCEPTED |
||||||
|
[12Jul2022 22:00:27.690] [Netty Epoll Server IO #2/DEBUG] [net.minecraftforge.network.NetworkRegistry/NETREGISTRY]: Channel 'fml:handshake' : Version test of 'FML3' from client : ACCEPTED |
||||||
|
[12Jul2022 22:00:27.690] [Netty Epoll Server IO #2/DEBUG] [net.minecraftforge.network.NetworkRegistry/NETREGISTRY]: Channel 'minecraft:unregister' : Version test of 'FML3' from client : ACCEPTED |
||||||
|
[12Jul2022 22:00:27.690] [Netty Epoll Server IO #2/DEBUG] [net.minecraftforge.network.NetworkRegistry/NETREGISTRY]: Channel 'fml:play' : Version test of 'FML3' from client : ACCEPTED |
||||||
|
[12Jul2022 22:00:27.690] [Netty Epoll Server IO #2/DEBUG] [net.minecraftforge.network.NetworkRegistry/NETREGISTRY]: Channel 'minecraft:register' : Version test of 'FML3' from client : ACCEPTED |
||||||
|
[12Jul2022 22:00:27.690] [Netty Epoll Server IO #2/DEBUG] [net.minecraftforge.network.NetworkRegistry/NETREGISTRY]: Channel 'forge:split' : Version test of '1.1' from client : ACCEPTED |
||||||
|
[12Jul2022 22:00:27.690] [Netty Epoll Server IO #2/DEBUG] [net.minecraftforge.network.NetworkRegistry/NETREGISTRY]: Accepting channel list from client |
||||||
|
[12Jul2022 22:00:27.692] [Netty Epoll Server IO #2/DEBUG] [net.minecraftforge.network.HandshakeHandler/FMLHANDSHAKE]: Accepted client connection mod list |
||||||
|
[12Jul2022 22:00:27.724] [Server thread/DEBUG] [net.minecraftforge.network.HandshakeHandler/FMLHANDSHAKE]: Sending ticking packet info 'Registry minecraft:recipe_serializer' to 'fml:handshake' sequence 2 |
||||||
|
[12Jul2022 22:00:27.730] [Netty Epoll Server IO #2/DEBUG] [net.minecraftforge.network.LoginWrapper/FMLHANDSHAKE]: Recieved login wrapper packet event for channel fml:handshake with index 2 |
||||||
|
[12Jul2022 22:00:27.730] [Netty Epoll Server IO #2/DEBUG] [net.minecraftforge.network.HandshakeHandler/FMLHANDSHAKE]: Received client indexed reply 2 of type net.minecraftforge.network.HandshakeMessages$C2SAcknowledge |
||||||
|
[12Jul2022 22:00:27.730] [Netty Epoll Server IO #2/DEBUG] [net.minecraftforge.network.HandshakeHandler/FMLHANDSHAKE]: Received acknowledgement from client |
||||||
|
[12Jul2022 22:00:27.774] [Server thread/DEBUG] [net.minecraftforge.network.HandshakeHandler/FMLHANDSHAKE]: Sending ticking packet info 'Registry minecraft:sound_event' to 'fml:handshake' sequence 3 |
||||||
|
[12Jul2022 22:00:27.785] [Netty Epoll Server IO #2/DEBUG] [net.minecraftforge.network.LoginWrapper/FMLHANDSHAKE]: Recieved login wrapper packet event for channel fml:handshake with index 3 |
||||||
|
[12Jul2022 22:00:27.785] [Netty Epoll Server IO #2/DEBUG] [net.minecraftforge.network.HandshakeHandler/FMLHANDSHAKE]: Received client indexed reply 3 of type net.minecraftforge.network.HandshakeMessages$C2SAcknowledge |
||||||
|
[12Jul2022 22:00:27.785] [Netty Epoll Server IO #2/DEBUG] [net.minecraftforge.network.HandshakeHandler/FMLHANDSHAKE]: Received acknowledgement from client |
||||||
|
[12Jul2022 22:00:27.824] [Server thread/DEBUG] [net.minecraftforge.network.HandshakeHandler/FMLHANDSHAKE]: Sending ticking packet info 'Registry minecraft:particle_type' to 'fml:handshake' sequence 4 |
||||||
|
[12Jul2022 22:00:27.828] [Netty Epoll Server IO #2/DEBUG] [net.minecraftforge.network.LoginWrapper/FMLHANDSHAKE]: Recieved login wrapper packet event for channel fml:handshake with index 4 |
||||||
|
[12Jul2022 22:00:27.829] [Netty Epoll Server IO #2/DEBUG] [net.minecraftforge.network.HandshakeHandler/FMLHANDSHAKE]: Received client indexed reply 4 of type net.minecraftforge.network.HandshakeMessages$C2SAcknowledge |
||||||
|
[12Jul2022 22:00:27.829] [Netty Epoll Server IO #2/DEBUG] [net.minecraftforge.network.HandshakeHandler/FMLHANDSHAKE]: Received acknowledgement from client |
||||||
|
[12Jul2022 22:00:27.874] [Server thread/DEBUG] [net.minecraftforge.network.HandshakeHandler/FMLHANDSHAKE]: Sending ticking packet info 'Registry minecraft:villager_profession' to 'fml:handshake' sequence 5 |
||||||
|
[12Jul2022 22:00:27.879] [Netty Epoll Server IO #2/DEBUG] [net.minecraftforge.network.LoginWrapper/FMLHANDSHAKE]: Recieved login wrapper packet event for channel fml:handshake with index 5 |
||||||
|
[12Jul2022 22:00:27.879] [Netty Epoll Server IO #2/DEBUG] [net.minecraftforge.network.HandshakeHandler/FMLHANDSHAKE]: Received client indexed reply 5 of type net.minecraftforge.network.HandshakeMessages$C2SAcknowledge |
||||||
|
[12Jul2022 22:00:27.879] [Netty Epoll Server IO #2/DEBUG] [net.minecraftforge.network.HandshakeHandler/FMLHANDSHAKE]: Received acknowledgement from client |
||||||
|
[12Jul2022 22:00:27.925] [Server thread/DEBUG] [net.minecraftforge.network.HandshakeHandler/FMLHANDSHAKE]: Sending ticking packet info 'Registry minecraft:item' to 'fml:handshake' sequence 6 |
||||||
|
[12Jul2022 22:00:27.931] [Netty Epoll Server IO #2/DEBUG] [net.minecraftforge.network.LoginWrapper/FMLHANDSHAKE]: Recieved login wrapper packet event for channel fml:handshake with index 6 |
||||||
|
[12Jul2022 22:00:27.931] [Netty Epoll Server IO #2/DEBUG] [net.minecraftforge.network.HandshakeHandler/FMLHANDSHAKE]: Received client indexed reply 6 of type net.minecraftforge.network.HandshakeMessages$C2SAcknowledge |
||||||
|
[12Jul2022 22:00:27.931] [Netty Epoll Server IO #2/DEBUG] [net.minecraftforge.network.HandshakeHandler/FMLHANDSHAKE]: Received acknowledgement from client |
||||||
|
[12Jul2022 22:00:27.975] [Server thread/DEBUG] [net.minecraftforge.network.HandshakeHandler/FMLHANDSHAKE]: Sending ticking packet info 'Registry minecraft:potion' to 'fml:handshake' sequence 7 |
||||||
|
[12Jul2022 22:00:27.978] [Netty Epoll Server IO #2/DEBUG] [net.minecraftforge.network.LoginWrapper/FMLHANDSHAKE]: Recieved login wrapper packet event for channel fml:handshake with index 7 |
||||||
|
[12Jul2022 22:00:27.978] [Netty Epoll Server IO #2/DEBUG] [net.minecraftforge.network.HandshakeHandler/FMLHANDSHAKE]: Received client indexed reply 7 of type net.minecraftforge.network.HandshakeMessages$C2SAcknowledge |
||||||
|
[12Jul2022 22:00:27.979] [Netty Epoll Server IO #2/DEBUG] [net.minecraftforge.network.HandshakeHandler/FMLHANDSHAKE]: Received acknowledgement from client |
||||||
|
[12Jul2022 22:00:28.024] [Server thread/DEBUG] [net.minecraftforge.network.HandshakeHandler/FMLHANDSHAKE]: Sending ticking packet info 'Registry minecraft:painting_variant' to 'fml:handshake' sequence 8 |
||||||
|
[12Jul2022 22:00:28.027] [Netty Epoll Server IO #2/DEBUG] [net.minecraftforge.network.LoginWrapper/FMLHANDSHAKE]: Recieved login wrapper packet event for channel fml:handshake with index 8 |
||||||
|
[12Jul2022 22:00:28.027] [Netty Epoll Server IO #2/DEBUG] [net.minecraftforge.network.HandshakeHandler/FMLHANDSHAKE]: Received client indexed reply 8 of type net.minecraftforge.network.HandshakeMessages$C2SAcknowledge |
||||||
|
[12Jul2022 22:00:28.028] [Netty Epoll Server IO #2/DEBUG] [net.minecraftforge.network.HandshakeHandler/FMLHANDSHAKE]: Received acknowledgement from client |
||||||
|
[12Jul2022 22:00:28.074] [Server thread/DEBUG] [net.minecraftforge.network.HandshakeHandler/FMLHANDSHAKE]: Sending ticking packet info 'Registry forge:data_serializers' to 'fml:handshake' sequence 9 |
||||||
|
[12Jul2022 22:00:28.079] [Netty Epoll Server IO #2/DEBUG] [net.minecraftforge.network.LoginWrapper/FMLHANDSHAKE]: Recieved login wrapper packet event for channel fml:handshake with index 9 |
||||||
|
[12Jul2022 22:00:28.079] [Netty Epoll Server IO #2/DEBUG] [net.minecraftforge.network.HandshakeHandler/FMLHANDSHAKE]: Received client indexed reply 9 of type net.minecraftforge.network.HandshakeMessages$C2SAcknowledge |
||||||
|
[12Jul2022 22:00:28.079] [Netty Epoll Server IO #2/DEBUG] [net.minecraftforge.network.HandshakeHandler/FMLHANDSHAKE]: Received acknowledgement from client |
||||||
|
[12Jul2022 22:00:28.125] [Server thread/DEBUG] [net.minecraftforge.network.HandshakeHandler/FMLHANDSHAKE]: Sending ticking packet info 'Registry forge:fluid_type' to 'fml:handshake' sequence 10 |
||||||
|
[12Jul2022 22:00:28.128] [Netty Epoll Server IO #2/DEBUG] [net.minecraftforge.network.LoginWrapper/FMLHANDSHAKE]: Recieved login wrapper packet event for channel fml:handshake with index 10 |
||||||
|
[12Jul2022 22:00:28.128] [Netty Epoll Server IO #2/DEBUG] [net.minecraftforge.network.HandshakeHandler/FMLHANDSHAKE]: Received client indexed reply 10 of type net.minecraftforge.network.HandshakeMessages$C2SAcknowledge |
||||||
|
[12Jul2022 22:00:28.129] [Netty Epoll Server IO #2/DEBUG] [net.minecraftforge.network.HandshakeHandler/FMLHANDSHAKE]: Received acknowledgement from client |
||||||
|
[12Jul2022 22:00:28.174] [Server thread/DEBUG] [net.minecraftforge.network.HandshakeHandler/FMLHANDSHAKE]: Sending ticking packet info 'Registry minecraft:block_entity_type' to 'fml:handshake' sequence 11 |
||||||
|
[12Jul2022 22:00:28.178] [Netty Epoll Server IO #2/DEBUG] [net.minecraftforge.network.LoginWrapper/FMLHANDSHAKE]: Recieved login wrapper packet event for channel fml:handshake with index 11 |
||||||
|
[12Jul2022 22:00:28.178] [Netty Epoll Server IO #2/DEBUG] [net.minecraftforge.network.HandshakeHandler/FMLHANDSHAKE]: Received client indexed reply 11 of type net.minecraftforge.network.HandshakeMessages$C2SAcknowledge |
||||||
|
[12Jul2022 22:00:28.178] [Netty Epoll Server IO #2/DEBUG] [net.minecraftforge.network.HandshakeHandler/FMLHANDSHAKE]: Received acknowledgement from client |
||||||
|
[12Jul2022 22:00:28.224] [Server thread/DEBUG] [net.minecraftforge.network.HandshakeHandler/FMLHANDSHAKE]: Sending ticking packet info 'Registry minecraft:block' to 'fml:handshake' sequence 12 |
||||||
|
[12Jul2022 22:00:28.230] [Netty Epoll Server IO #2/DEBUG] [net.minecraftforge.network.LoginWrapper/FMLHANDSHAKE]: Recieved login wrapper packet event for channel fml:handshake with index 12 |
||||||
|
[12Jul2022 22:00:28.230] [Netty Epoll Server IO #2/DEBUG] [net.minecraftforge.network.HandshakeHandler/FMLHANDSHAKE]: Received client indexed reply 12 of type net.minecraftforge.network.HandshakeMessages$C2SAcknowledge |
||||||
|
[12Jul2022 22:00:28.230] [Netty Epoll Server IO #2/DEBUG] [net.minecraftforge.network.HandshakeHandler/FMLHANDSHAKE]: Received acknowledgement from client |
||||||
|
[12Jul2022 22:00:28.274] [Server thread/DEBUG] [net.minecraftforge.network.HandshakeHandler/FMLHANDSHAKE]: Sending ticking packet info 'Registry minecraft:mob_effect' to 'fml:handshake' sequence 13 |
||||||
|
[12Jul2022 22:00:28.278] [Netty Epoll Server IO #2/DEBUG] [net.minecraftforge.network.LoginWrapper/FMLHANDSHAKE]: Recieved login wrapper packet event for channel fml:handshake with index 13 |
||||||
|
[12Jul2022 22:00:28.279] [Netty Epoll Server IO #2/DEBUG] [net.minecraftforge.network.HandshakeHandler/FMLHANDSHAKE]: Received client indexed reply 13 of type net.minecraftforge.network.HandshakeMessages$C2SAcknowledge |
||||||
|
[12Jul2022 22:00:28.279] [Netty Epoll Server IO #2/DEBUG] [net.minecraftforge.network.HandshakeHandler/FMLHANDSHAKE]: Received acknowledgement from client |
||||||
|
[12Jul2022 22:00:28.324] [Server thread/DEBUG] [net.minecraftforge.network.HandshakeHandler/FMLHANDSHAKE]: Sending ticking packet info 'Registry minecraft:stat_type' to 'fml:handshake' sequence 14 |
||||||
|
[12Jul2022 22:00:28.328] [Netty Epoll Server IO #2/DEBUG] [net.minecraftforge.network.LoginWrapper/FMLHANDSHAKE]: Recieved login wrapper packet event for channel fml:handshake with index 14 |
||||||
|
[12Jul2022 22:00:28.328] [Netty Epoll Server IO #2/DEBUG] [net.minecraftforge.network.HandshakeHandler/FMLHANDSHAKE]: Received client indexed reply 14 of type net.minecraftforge.network.HandshakeMessages$C2SAcknowledge |
||||||
|
[12Jul2022 22:00:28.328] [Netty Epoll Server IO #2/DEBUG] [net.minecraftforge.network.HandshakeHandler/FMLHANDSHAKE]: Received acknowledgement from client |
||||||
|
[12Jul2022 22:00:28.374] [Server thread/DEBUG] [net.minecraftforge.network.HandshakeHandler/FMLHANDSHAKE]: Sending ticking packet info 'Registry minecraft:menu' to 'fml:handshake' sequence 15 |
||||||
|
[12Jul2022 22:00:28.377] [Netty Epoll Server IO #2/DEBUG] [net.minecraftforge.network.LoginWrapper/FMLHANDSHAKE]: Recieved login wrapper packet event for channel fml:handshake with index 15 |
||||||
|
[12Jul2022 22:00:28.377] [Netty Epoll Server IO #2/DEBUG] [net.minecraftforge.network.HandshakeHandler/FMLHANDSHAKE]: Received client indexed reply 15 of type net.minecraftforge.network.HandshakeMessages$C2SAcknowledge |
||||||
|
[12Jul2022 22:00:28.378] [Netty Epoll Server IO #2/DEBUG] [net.minecraftforge.network.HandshakeHandler/FMLHANDSHAKE]: Received acknowledgement from client |
||||||
|
[12Jul2022 22:00:28.424] [Server thread/DEBUG] [net.minecraftforge.network.HandshakeHandler/FMLHANDSHAKE]: Sending ticking packet info 'Registry minecraft:enchantment' to 'fml:handshake' sequence 16 |
||||||
|
[12Jul2022 22:00:28.428] [Netty Epoll Server IO #2/DEBUG] [net.minecraftforge.network.LoginWrapper/FMLHANDSHAKE]: Recieved login wrapper packet event for channel fml:handshake with index 16 |
||||||
|
[12Jul2022 22:00:28.428] [Netty Epoll Server IO #2/DEBUG] [net.minecraftforge.network.HandshakeHandler/FMLHANDSHAKE]: Received client indexed reply 16 of type net.minecraftforge.network.HandshakeMessages$C2SAcknowledge |
||||||
|
[12Jul2022 22:00:28.429] [Netty Epoll Server IO #2/DEBUG] [net.minecraftforge.network.HandshakeHandler/FMLHANDSHAKE]: Received acknowledgement from client |
||||||
|
[12Jul2022 22:00:28.474] [Server thread/DEBUG] [net.minecraftforge.network.HandshakeHandler/FMLHANDSHAKE]: Sending ticking packet info 'Registry minecraft:fluid' to 'fml:handshake' sequence 17 |
||||||
|
[12Jul2022 22:00:28.477] [Netty Epoll Server IO #2/DEBUG] [net.minecraftforge.network.LoginWrapper/FMLHANDSHAKE]: Recieved login wrapper packet event for channel fml:handshake with index 17 |
||||||
|
[12Jul2022 22:00:28.478] [Netty Epoll Server IO #2/DEBUG] [net.minecraftforge.network.HandshakeHandler/FMLHANDSHAKE]: Received client indexed reply 17 of type net.minecraftforge.network.HandshakeMessages$C2SAcknowledge |
||||||
|
[12Jul2022 22:00:28.478] [Netty Epoll Server IO #2/DEBUG] [net.minecraftforge.network.HandshakeHandler/FMLHANDSHAKE]: Received acknowledgement from client |
||||||
|
[12Jul2022 22:00:28.524] [Server thread/DEBUG] [net.minecraftforge.network.HandshakeHandler/FMLHANDSHAKE]: Sending ticking packet info 'Registry minecraft:entity_type' to 'fml:handshake' sequence 18 |
||||||
|
[12Jul2022 22:00:28.575] [Server thread/DEBUG] [net.minecraftforge.network.HandshakeHandler/FMLHANDSHAKE]: Sending ticking packet info 'Config forge-server.toml' to 'fml:handshake' sequence 19 |
||||||
|
[12Jul2022 22:00:29.010] [Netty Epoll Server IO #2/DEBUG] [net.minecraftforge.network.LoginWrapper/FMLHANDSHAKE]: Recieved login wrapper packet event for channel fml:handshake with index 18 |
||||||
|
[12Jul2022 22:00:29.010] [Netty Epoll Server IO #2/DEBUG] [net.minecraftforge.network.HandshakeHandler/FMLHANDSHAKE]: Received client indexed reply 18 of type net.minecraftforge.network.HandshakeMessages$C2SAcknowledge |
||||||
|
[12Jul2022 22:00:29.011] [Netty Epoll Server IO #2/DEBUG] [net.minecraftforge.network.HandshakeHandler/FMLHANDSHAKE]: Received acknowledgement from client |
||||||
|
[12Jul2022 22:00:29.013] [Netty Epoll Server IO #2/DEBUG] [net.minecraftforge.network.LoginWrapper/FMLHANDSHAKE]: Recieved login wrapper packet event for channel fml:handshake with index 19 |
||||||
|
[12Jul2022 22:00:29.013] [Netty Epoll Server IO #2/DEBUG] [net.minecraftforge.network.HandshakeHandler/FMLHANDSHAKE]: Received client indexed reply 19 of type net.minecraftforge.network.HandshakeMessages$C2SAcknowledge |
||||||
|
[12Jul2022 22:00:29.013] [Netty Epoll Server IO #2/DEBUG] [net.minecraftforge.network.HandshakeHandler/FMLHANDSHAKE]: Received acknowledgement from client |
||||||
|
[12Jul2022 22:00:29.025] [Server thread/DEBUG] [net.minecraftforge.network.HandshakeHandler/FMLHANDSHAKE]: Handshake complete! |
||||||
|
[12Jul2022 22:00:29.098] [Server thread/INFO] [net.minecraftforge.common.AdvancementLoadFix/]: Using new advancement loading for net.minecraft.server.PlayerAdvancements@988a379 |
||||||
|
[12Jul2022 22:00:29.108] [Server thread/INFO] [net.minecraft.server.players.PlayerList/]: Dev[/127.0.0.1:34976] logged in with entity id 171 at (21.5, 96.0, -24.5) |
||||||
|
[12Jul2022 22:00:29.120] [Server thread/DEBUG] [net.minecraftforge.network.filters.NetworkFilters/]: Injected net.minecraftforge.network.filters.ForgeConnectionNetworkFilter@526f96f2 into net.minecraft.network.Connection@fc1b5c3 |
||||||
|
[12Jul2022 22:00:29.142] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Dev joined the game |
||||||
|
[12Jul2022 22:00:29.461] [Server thread/DEBUG] [io.netty.util.internal.ThreadLocalRandom/]: -Dio.netty.initialSeedUniquifier: 0x7ada998c38f53bb8 |
||||||
|
[12Jul2022 22:01:34.084] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Unknown or incomplete command, see below for error |
||||||
|
[12Jul2022 22:01:34.084] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: op<--[HERE] |
||||||
|
[12Jul2022 22:01:41.700] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Made Dev a server operator |
||||||
|
[12Jul2022 22:01:49.515] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: [Dev: Set own game mode to Creative Mode] |
||||||
|
[12Jul2022 22:02:21.183] [Server thread/INFO] [net.minecraft.server.network.ServerGamePacketListenerImpl/]: Dev lost connection: Disconnected |
||||||
|
[12Jul2022 22:02:21.183] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Dev left the game |
||||||
|
[12Jul2022 22:02:27.373] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Stopping server |
||||||
|
[12Jul2022 22:02:27.374] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Saving players |
||||||
|
[12Jul2022 22:02:27.374] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Saving worlds |
||||||
|
[12Jul2022 22:02:28.520] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Saving chunks for level 'ServerLevel[world]'/minecraft:overworld |
||||||
|
[12Jul2022 22:02:30.263] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Saving chunks for level 'ServerLevel[world]'/minecraft:the_end |
||||||
|
[12Jul2022 22:02:30.264] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Saving chunks for level 'ServerLevel[world]'/minecraft:the_nether |
||||||
|
[12Jul2022 22:02:30.265] [Server thread/DEBUG] [net.minecraftforge.common.ForgeHooks/WP]: Gathering id map for writing to world save world |
||||||
|
[12Jul2022 22:02:30.268] [Server thread/DEBUG] [net.minecraftforge.common.ForgeHooks/WP]: ID Map collection complete world |
||||||
|
[12Jul2022 22:02:30.276] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: ThreadedAnvilChunkStorage (world): All chunks are saved |
||||||
|
[12Jul2022 22:02:30.276] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: ThreadedAnvilChunkStorage (DIM1): All chunks are saved |
||||||
|
[12Jul2022 22:02:30.276] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: ThreadedAnvilChunkStorage (DIM-1): All chunks are saved |
||||||
|
[12Jul2022 22:02:30.276] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: ThreadedAnvilChunkStorage: All dimensions are saved |
||||||
|
[12Jul2022 22:02:30.296] [Server thread/DEBUG] [net.minecraftforge.fml.loading.FileUtils/CORE]: Found existing serverconfig directory : ./world/serverconfig |
||||||
|
[12Jul2022 22:02:30.296] [Server thread/DEBUG] [net.minecraftforge.fml.config.ConfigTracker/CONFIG]: Unloading configs type SERVER |
||||||
|
[12Jul2022 22:02:30.297] [Thread-0/DEBUG] [net.minecraftforge.fml.config.ConfigFileTypeHandler/CONFIG]: Config file forge-server.toml changed, sending notifies |
||||||
|
[12Jul2022 22:02:30.297] [Thread-0/DEBUG] [net.minecraftforge.common.ForgeConfig/FORGEMOD]: Forge config just got changed on the file system! |
||||||
|
/]: sun.misc.Unsafe.copyMemory: available |
||||||
|
[12Jul2022 22:00:05.502] [modloading-worker-0/DEBUG] [io.netty.util.internal.PlatformDependent0/]: sun.misc.Unsafe.storeFence: available |
||||||
|
[12Jul2022 22:00:05.503] [modloading-worker-0/DEBUG] [io.netty.util.internal.PlatformDependent0/]: java.nio.Buffer.address: available |
||||||
|
[12Jul2022 22:00:05.505] [modloading-worker-0/DEBUG] [io.netty.util.internal.PlatformDependent0/]: direct buffer constructor: unavailable |
||||||
|
java.lang.UnsupportedOperationException: Reflective setAccessible(true) disabled |
||||||
|
at io.netty.util.internal.ReflectionUtil.trySetAccessible(ReflectionUtil.java:31) ~[netty-common-4.1.77.Final.jar%23135!/:4.1.77.Final] |
||||||
|
at io.netty.util.internal.PlatformDependent0$5.run(PlatformDependent0.java:287) ~[netty-common-4.1.77.Final.jar%23135!/:4.1.77.Final] |
||||||
|
at java.security.AccessController.doPrivileged(AccessController.java:318) ~[?:?] |
||||||
|
at io.netty.util.internal.PlatformDependent0.<clinit>(PlatformDependent0.java:281) ~[netty-common-4.1.77.Final.jar%23135!/:4.1.77.Final] |
||||||
|
at io.netty.util.internal.PlatformDependent.isAndroid(PlatformDependent.java:294) ~[netty-common-4.1.77.Final.jar%23135!/:4.1.77.Final] |
||||||
|
at io.netty.util.internal.PlatformDependent.<clinit>(PlatformDependent.java:88) ~[netty-common-4.1.77.Final.jar%23135!/:4.1.77.Final] |
||||||
|
at io.netty.util.ConstantPool.<init>(ConstantPool.java:34) ~[netty-common-4.1.77.Final.jar%23135!/:4.1.77.Final] |
||||||
|
at io.netty.util.AttributeKey$1.<init>(AttributeKey.java:27) ~[netty-common-4.1.77.Final.jar%23135!/:4.1.77.Final] |
||||||
|
at io.netty.util.AttributeKey.<clinit>(AttributeKey.java:27) ~[netty-common-4.1.77.Final.jar%23135!/:4.1.77.Final] |
||||||
|
at net.minecraftforge.network.NetworkConstants.<clinit>(NetworkConstants.java:34) ~[forge-1.19-41.0.98_mapped_official_1.19-recomp.jar%23177%23184!/:?] |
||||||
|
at net.minecraftforge.common.ForgeMod.<init>(ForgeMod.java:383) ~[forge-1.19-41.0.98_mapped_official_1.19-recomp.jar%23177%23184!/:?] |
||||||
|
at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) ~[?:?] |
||||||
|
at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:77) ~[?:?] |
||||||
|
at jdk.internal.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) ~[?:?] |
||||||
|
at java.lang.reflect.Constructor.newInstanceWithCaller(Constructor.java:499) ~[?:?] |
||||||
|
at java.lang.reflect.Constructor.newInstance(Constructor.java:480) ~[?:?] |
||||||
|
at net.minecraftforge.fml.javafmlmod.FMLModContainer.constructMod(FMLModContainer.java:68) ~[javafmllanguage-1.19-41.0.98.jar%23179!/:?] |
||||||
|
at net.minecraftforge.fml.ModContainer.lambda$buildTransitionHandler$10(ModContainer.java:121) ~[fmlcore-1.19-41.0.98.jar%23182!/:?] |
||||||
|
at java.util.concurrent.CompletableFuture$AsyncRun.run(CompletableFuture.java:1804) [?:?] |
||||||
|
at java.util.concurrent.CompletableFuture$AsyncRun.exec(CompletableFuture.java:1796) [?:?] |
||||||
|
at java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:373) [?:?] |
||||||
|
at java.util.concurrent.ForkJoinPool$WorkQueue.topLevelExec(ForkJoinPool.java:1182) [?:?] |
||||||
|
at java.util.concurrent.ForkJoinPool.scan(ForkJoinPool.java:1655) [?:?] |
||||||
|
at java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1622) [?:?] |
||||||
|
at java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:165) [?:?] |
||||||
|
[12Jul2022 22:00:05.516] [modloading-worker-0/DEBUG] [io.netty.util.internal.PlatformDependent0/]: java.nio.Bits.unaligned: available, true |
||||||
|
[12Jul2022 22:00:05.521] [modloading-worker-0/DEBUG] [io.netty.util.internal.PlatformDependent0/]: jdk.internal.misc.Unsafe.allocateUninitializedArray(int): unavailable |
||||||
|
java.lang.IllegalAccessException: class io.netty.util.internal.PlatformDependent0$7 (in module io.netty.common) cannot access class jdk.internal.misc.Unsafe (in module java.base) because module java.base does not export jdk.internal.misc to module io.netty.common |
||||||
|
at jdk.internal.reflect.Reflection.newIllegalAccessException(Reflection.java:392) ~[?:?] |
||||||
|
at java.lang.reflect.AccessibleObject.checkAccess(AccessibleObject.java:674) ~[?:?] |
||||||
|
at java.lang.reflect.Method.invoke(Method.java:560) ~[?:?] |
||||||
|
at io.netty.util.internal.PlatformDependent0$7.run(PlatformDependent0.java:409) ~[netty-common-4.1.77.Final.jar%23135!/:4.1.77.Final] |
||||||
|
at java.security.AccessController.doPrivileged(AccessController.java:318) ~[?:?] |
||||||
|
at io.netty.util.internal.PlatformDependent0.<clinit>(PlatformDependent0.java:400) ~[netty-common-4.1.77.Final.jar%23135!/:4.1.77.Final] |
||||||
|
at io.netty.util.internal.PlatformDependent.isAndroid(PlatformDependent.java:294) ~[netty-common-4.1.77.Final.jar%23135!/:4.1.77.Final] |
||||||
|
at io.netty.util.internal.PlatformDependent.<clinit>(PlatformDependent.java:88) ~[netty-common-4.1.77.Final.jar%23135!/:4.1.77.Final] |
||||||
|
at io.netty.util.ConstantPool.<init>(ConstantPool.java:34) ~[netty-common-4.1.77.Final.jar%23135!/:4.1.77.Final] |
||||||
|
at io.netty.util.AttributeKey$1.<init>(AttributeKey.java:27) ~[netty-common-4.1.77.Final.jar%23135!/:4.1.77.Final] |
||||||
|
at io.netty.util.AttributeKey.<clinit>(AttributeKey.java:27) ~[netty-common-4.1.77.Final.jar%23135!/:4.1.77.Final] |
||||||
|
at net.minecraftforge.network.NetworkConstants.<clinit>(NetworkConstants.java:34) ~[forge-1.19-41.0.98_mapped_official_1.19-recomp.jar%23177%23184!/:?] |
||||||
|
at net.minecraftforge.common.ForgeMod.<init>(ForgeMod.java:383) ~[forge-1.19-41.0.98_mapped_official_1.19-recomp.jar%23177%23184!/:?] |
||||||
|
at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) ~[?:?] |
||||||
|
at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:77) ~[?:?] |
||||||
|
at jdk.internal.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) ~[?:?] |
||||||
|
at java.lang.reflect.Constructor.newInstanceWithCaller(Constructor.java:499) ~[?:?] |
||||||
|
at java.lang.reflect.Constructor.newInstance(Constructor.java:480) ~[?:?] |
||||||
|
at net.minecraftforge.fml.javafmlmod.FMLModContainer.constructMod(FMLModContainer.java:68) ~[javafmllanguage-1.19-41.0.98.jar%23179!/:?] |
||||||
|
at net.minecraftforge.fml.ModContainer.lambda$buildTransitionHandler$10(ModContainer.java:121) ~[fmlcore-1.19-41.0.98.jar%23182!/:?] |
||||||
|
at java.util.concurrent.CompletableFuture$AsyncRun.run(CompletableFuture.java:1804) [?:?] |
||||||
|
at java.util.concurrent.CompletableFuture$AsyncRun.exec(CompletableFuture.java:1796) [?:?] |
||||||
|
at java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:373) [?:?] |
||||||
|
at java.util.concurrent.ForkJoinPool$WorkQueue.topLevelExec(ForkJoinPool.java:1182) [?:?] |
||||||
|
at java.util.concurrent.ForkJoinPool.scan(ForkJoinPool.java:1655) [?:?] |
||||||
|
at java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1622) [?:?] |
||||||
|
at java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:165) [?:?] |
||||||
|
[12Jul2022 22:00:05.523] [modloading-worker-0/DEBUG] [io.netty.util.internal.PlatformDependent0/]: java.nio.DirectByteBuffer.<init>(long, int): unavailable |
||||||
|
[12Jul2022 22:00:05.523] [modloading-worker-0/DEBUG] [io.netty.util.internal.PlatformDependent/]: sun.misc.Unsafe: available |
||||||
|
[12Jul2022 22:00:05.525] [modloading-worker-0/DEBUG] [io.netty.util.internal.PlatformDependent/]: maxDirectMemory: 4185915392 bytes (maybe) |
||||||
|
[12Jul2022 22:00:05.526] [modloading-worker-0/DEBUG] [io.netty.util.internal.PlatformDependent/]: -Dio.netty.tmpdir: /tmp (java.io.tmpdir) |
||||||
|
[12Jul2022 22:00:05.526] [modloading-worker-0/DEBUG] [io.netty.util.internal.PlatformDependent/]: -Dio.netty.bitMode: 64 (sun.arch.data.model) |
||||||
|
[12Jul2022 22:00:05.530] [modloading-worker-0/DEBUG] [io.netty.util.internal.PlatformDependent/]: -Dio.netty.maxDirectMemory: -1 bytes |
||||||
|
[12Jul2022 22:00:05.531] [modloading-worker-0/DEBUG] [io.netty.util.internal.PlatformDependent/]: -Dio.netty.uninitializedArrayAllocationThreshold: -1 |
||||||
|
[12Jul2022 22:00:05.535] [modloading-worker-0/DEBUG] [io.netty.util.internal.CleanerJava9/]: java.nio.ByteBuffer.cleaner(): available |
||||||
|
[12Jul2022 22:00:05.536] [modloading-worker-0/DEBUG] [io.netty.util.internal.PlatformDependent/]: -Dio.netty.noPreferDirect: false |
||||||
|
[12Jul2022 22:00:05.628] [modloading-worker-0/DEBUG] [net.minecraftforge.common.ForgeMod/FORGEMOD]: Loading Network data for FML net version: FML3 |
||||||
|
[12Jul2022 22:00:05.651] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.config.ConfigTracker/CONFIG]: Config file forge-client.toml for forge tracking |
||||||
|
[12Jul2022 22:00:05.652] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.config.ConfigTracker/CONFIG]: Config file forge-server.toml for forge tracking |
||||||
|
[12Jul2022 22:00:05.663] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.config.ConfigTracker/CONFIG]: Config file forge-common.toml for forge tracking |
||||||
|
[12Jul2022 22:00:05.738] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Attempting to inject @EventBusSubscriber classes into the eventbus for forge |
||||||
|
[12Jul2022 22:00:05.740] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing net.minecraftforge.common.ForgeSpawnEggItem$CommonHandler to MOD |
||||||
|
[12Jul2022 22:00:05.748] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing net.minecraftforge.common.ForgeSpawnEggItem$ColorRegisterHandler to MOD |
||||||
|
[12Jul2022 22:00:05.762] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing net.minecraftforge.client.model.data.ModelDataManager to FORGE |
||||||
|
[12Jul2022 22:00:05.777] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing net.minecraftforge.client.ForgeHooksClient$ClientEvents to MOD |
||||||
|
[12Jul2022 22:00:05.787] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing net.minecraftforge.client.ClientForgeMod to MOD |
||||||
|
[12Jul2022 22:00:06.224] [Render thread/DEBUG] [net.minecraftforge.client.loading.ClientModLoader/CORE]: Generating PackInfo named mod:forge for mod file / |
||||||
|
[12Jul2022 22:00:06.226] [Render thread/DEBUG] [net.minecraftforge.client.loading.ClientModLoader/CORE]: Generating PackInfo named mod:examplemod for mod file /home/niconiconii/Documents/SigsUniverse/build/resources/main |
||||||
|
[12Jul2022 22:00:07.564] [Render thread/INFO] [com.mojang.text2speech.NarratorLinux/]: Narrator library successfully loaded |
||||||
|
[12Jul2022 22:00:07.630] [Render thread/INFO] [net.minecraftforge.gametest.ForgeGameTestHooks/]: Enabled Gametest Namespaces: [examplemod] |
||||||
|
[12Jul2022 22:00:07.815] [Render thread/INFO] [net.minecraft.server.packs.resources.ReloadableResourceManager/]: Reloading ResourceManager: Default, Mod Resources |
||||||
|
[12Jul2022 22:00:07.852] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.config.ConfigTracker/CONFIG]: Loading configs type CLIENT |
||||||
|
[12Jul2022 22:00:07.853] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.config.ConfigFileTypeHandler/CONFIG]: Built TOML config for /home/niconiconii/Documents/SigsUniverse/run/config/forge-client.toml |
||||||
|
[12Jul2022 22:00:07.854] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.config.ConfigFileTypeHandler/CONFIG]: Loaded TOML config file /home/niconiconii/Documents/SigsUniverse/run/config/forge-client.toml |
||||||
|
[12Jul2022 22:00:07.856] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.config.ConfigFileTypeHandler/CONFIG]: Watching TOML config file /home/niconiconii/Documents/SigsUniverse/run/config/forge-client.toml for changes |
||||||
|
[12Jul2022 22:00:07.859] [modloading-worker-0/DEBUG] [net.minecraftforge.common.ForgeConfig/FORGEMOD]: Loaded forge config file forge-client.toml |
||||||
|
[12Jul2022 22:00:07.863] [Thread-0/DEBUG] [net.minecraftforge.fml.config.ConfigFileTypeHandler/CONFIG]: Config file forge-client.toml changed, sending notifies |
||||||
|
[12Jul2022 22:00:07.864] [Thread-0/DEBUG] [net.minecraftforge.common.ForgeConfig/FORGEMOD]: Forge config just got changed on the file system! |
||||||
|
[12Jul2022 22:00:07.864] [Thread-0/DEBUG] [net.minecraftforge.fml.config.ConfigFileTypeHandler/CONFIG]: Config file forge-client.toml changed, sending notifies |
||||||
|
[12Jul2022 22:00:07.864] [Thread-0/DEBUG] [net.minecraftforge.common.ForgeConfig/FORGEMOD]: Forge config just got changed on the file system! |
||||||
|
[12Jul2022 22:00:07.868] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.config.ConfigTracker/CONFIG]: Loading configs type COMMON |
||||||
|
[12Jul2022 22:00:07.868] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.config.ConfigFileTypeHandler/CONFIG]: Built TOML config for /home/niconiconii/Documents/SigsUniverse/run/config/forge-common.toml |
||||||
|
[12Jul2022 22:00:07.869] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.config.ConfigFileTypeHandler/CONFIG]: Loaded TOML config file /home/niconiconii/Documents/SigsUniverse/run/config/forge-common.toml |
||||||
|
[12Jul2022 22:00:07.869] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.config.ConfigFileTypeHandler/CONFIG]: Watching TOML config file /home/niconiconii/Documents/SigsUniverse/run/config/forge-common.toml for changes |
||||||
|
[12Jul2022 22:00:07.869] [modloading-worker-0/DEBUG] [net.minecraftforge.common.ForgeConfig/FORGEMOD]: Loaded forge config file forge-common.toml |
||||||
|
[12Jul2022 22:00:07.869] [Thread-0/DEBUG] [net.minecraftforge.fml.config.ConfigFileTypeHandler/CONFIG]: Config file forge-common.toml changed, sending notifies |
||||||
|
[12Jul2022 22:00:07.870] [Thread-0/DEBUG] [net.minecraftforge.common.ForgeConfig/FORGEMOD]: Forge config just got changed on the file system! |
||||||
|
[12Jul2022 22:00:07.870] [Thread-0/DEBUG] [net.minecraftforge.fml.config.ConfigFileTypeHandler/CONFIG]: Config file forge-common.toml changed, sending notifies |
||||||
|
[12Jul2022 22:00:07.870] [Thread-0/DEBUG] [net.minecraftforge.common.ForgeConfig/FORGEMOD]: Forge config just got changed on the file system! |
||||||
|
[12Jul2022 22:00:07.883] [Worker-Main-2/INFO] [com.example.examplemod.ExampleMod/]: HELLO FROM COMMON SETUP |
||||||
|
[12Jul2022 22:00:07.883] [Worker-Main-2/INFO] [com.example.examplemod.ExampleMod/]: DIRT BLOCK >> minecraft:dirt |
||||||
|
[12Jul2022 22:00:08.486] [Worker-Main-2/INFO] [com.example.examplemod.ExampleMod/]: HELLO FROM CLIENT SETUP |
||||||
|
[12Jul2022 22:00:08.486] [Worker-Main-2/INFO] [com.example.examplemod.ExampleMod/]: MINECRAFT NAME >> Dev |
||||||
|
[12Jul2022 22:00:08.781] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [forge] Starting version check at https://files.minecraftforge.net/net/minecraftforge/forge/promotions_slim.json |
||||||
|
[12Jul2022 22:00:09.718] [Forge Version Check/DEBUG] [net.minecraftforge.fml.VersionChecker/]: [forge] Received version check data: |
||||||
|
{ |
||||||
|
"homepage": "https://files.minecraftforge.net/net/minecraftforge/forge/", |
||||||
|
"promos": { |
||||||
|
"1.1-latest": "1.3.4.29", |
||||||
|
"1.2.3-latest": "1.4.1.64", |
||||||
|
"1.2.4-latest": "2.0.0.68", |
||||||
|
"1.2.5-latest": "3.4.9.171", |
||||||
|
"1.3.2-latest": "4.3.5.318", |
||||||
|
"1.4.0-latest": "5.0.0.326", |
||||||
|
"1.4.1-latest": "6.0.0.329", |
||||||
|
"1.4.2-latest": "6.0.1.355", |
||||||
|
"1.4.3-latest": "6.2.1.358", |
||||||
|
"1.4.4-latest": "6.3.0.378", |
||||||
|
"1.4.5-latest": "6.4.2.448", |
||||||
|
"1.4.6-latest": "6.5.0.489", |
||||||
|
"1.4.7-latest": "6.6.2.534", |
||||||
|
"1.5-latest": "7.7.0.598", |
||||||
|
"1.5.1-latest": "7.7.2.682", |
||||||
|
"1.5.2-latest": "7.8.1.738", |
||||||
|
"1.5.2-recommended": "7.8.1.738", |
||||||
|
"1.6.1-latest": "8.9.0.775", |
||||||
|
"1.6.2-latest": "9.10.1.871", |
||||||
|
"1.6.2-recommended": "9.10.1.871", |
||||||
|
"1.6.3-latest": "9.11.0.878", |
||||||
|
"1.6.4-latest": "9.11.1.1345", |
||||||
|
"1.6.4-recommended": "9.11.1.1345", |
||||||
|
"1.7.2-latest": "10.12.2.1161", |
||||||
|
"1.7.2-recommended": "10.12.2.1161", |
||||||
|
"1.7.10_pre4-latest": "10.12.2.1149", |
||||||
|
"1.7.10-latest": "10.13.4.1614", |
||||||
|
"1.7.10-recommended": "10.13.4.1614", |
||||||
|
"1.8-latest": "11.14.4.1577", |
||||||
|
"1.8-recommended": "11.14.4.1563", |
||||||
|
"1.8.8-latest": "11.15.0.1655", |
||||||
|
"1.8.9-latest": "11.15.1.2318", |
||||||
|
"1.8.9-recommended": "11.15.1.2318", |
||||||
|
"1.9-latest": "12.16.1.1938", |
||||||
|
"1.9-recommended": "12.16.1.1887", |
||||||
|
"1.9.4-latest": "12.17.0.2317", |
||||||
|
"1.9.4-recommended": "12.17.0.2317", |
||||||
|
"1.10-latest": "12.18.0.2000", |
||||||
|
"1.10.2-latest": "12.18.3.2511", |
||||||
|
"1.10.2-recommended": "12.18.3.2511", |
||||||
|
"1.11-latest": "13.19.1.2199", |
||||||
|
"1.11-recommended": "13.19.1.2189", |
||||||
|
"1.11.2-latest": "13.20.1.2588", |
||||||
|
"1.11.2-recommended": "13.20.1.2588", |
||||||
|
"1.12-latest": "14.21.1.2443", |
||||||
|
"1.12-recommended": "14.21.1.2387", |
||||||
|
"1.12.1-latest": "14.22.1.2485", |
||||||
|
"1.12.1-recommended": "14.22.1.2478", |
||||||
|
"1.12.2-latest": "14.23.5.2860", |
||||||
|
"1.12.2-recommended": "14.23.5.2859", |
||||||
|
"1.13.2-latest": "25.0.223", |
||||||
|
"1.14.2-latest": "26.0.63", |
||||||
|
"1.14.3-latest": "27.0.60", |
||||||
|
"1.14.4-latest": "28.2.26", |
||||||
|
"1.14.4-recommended": "28.2.26", |
||||||
|
"1.15-latest": "29.0.4", |
||||||
|
"1.15.1-latest": "30.0.51", |
||||||
|
"1.15.2-latest": "31.2.57", |
||||||
|
"1.15.2-recommended": "31.2.57", |
||||||
|
"1.16.1-latest": "32.0.108", |
||||||
|
"1.16.2-latest": "33.0.61", |
||||||
|
"1.16.3-latest": "34.1.42", |
||||||
|
"1.16.3-recommended": "34.1.0", |
||||||
|
"1.16.4-latest": "35.1.37", |
||||||
|
"1.16.4-recommended": "35.1.4", |
||||||
|
"1.16.5-latest": "36.2.35", |
||||||
|
"1.16.5-recommended": "36.2.34", |
||||||
|
"1.17.1-latest": "37.1.1", |
||||||
|
"1.17.1-recommended": "37.1.1", |
||||||
|
"1.18-latest": "38.0.17", |
||||||
|
"1.18.1-latest": "39.1.2", |
||||||
|
"1.18.1-recommended": "39.1.0", |
||||||
|
"1.18.2-latest": "40.1.60", |
||||||
|
"1.18.2-recommended": "40.1.0", |
||||||
|
"1.19-latest": "41.0.98" |
||||||
|
} |
||||||
|
} |
||||||
|
[12Jul2022 22:00:09.719] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [forge] Found status: BETA Current: 41.0.98 Target: 41.0.98 |
||||||
|
[12Jul2022 22:00:11.848] [Worker-Main-7/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'examplemod:blockstates/example_block.json' missing model for variant: 'examplemod:example_block#' |
||||||
|
[12Jul2022 22:00:12.394] [Worker-Main-7/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Unable to load model: 'examplemod:example_block#inventory' referenced from: examplemod:example_block#inventory: java.io.FileNotFoundException: examplemod:models/item/example_block.json |
||||||
|
[12Jul2022 22:00:15.065] [Render thread/DEBUG] [net.minecraftforge.common.ForgeI18n/CORE]: Loading I18N data entries: 5777 |
||||||
|
[12Jul2022 22:00:15.138] [Render thread/WARN] [net.minecraft.client.sounds.SoundEngine/]: Missing sound for event: minecraft:item.goat_horn.play |
||||||
|
[12Jul2022 22:00:15.138] [Render thread/WARN] [net.minecraft.client.sounds.SoundEngine/]: Missing sound for event: minecraft:entity.goat.screaming.horn_break |
||||||
|
[12Jul2022 22:00:15.256] [Render thread/INFO] [com.mojang.blaze3d.audio.Library/]: OpenAL initialized on device JACK Default |
||||||
|
[12Jul2022 22:00:15.258] [Render thread/INFO] [net.minecraft.client.sounds.SoundEngine/SOUNDS]: Sound engine started |
||||||
|
[12Jul2022 22:00:15.538] [Render thread/INFO] [net.minecraft.client.renderer.texture.TextureAtlas/]: Created: 1024x512x4 minecraft:textures/atlas/blocks.png-atlas |
||||||
|
[12Jul2022 22:00:15.558] [Render thread/INFO] [net.minecraft.client.renderer.texture.TextureAtlas/]: Created: 256x128x4 minecraft:textures/atlas/signs.png-atlas |
||||||
|
[12Jul2022 22:00:15.558] [Render thread/INFO] [net.minecraft.client.renderer.texture.TextureAtlas/]: Created: 512x512x4 minecraft:textures/atlas/banner_patterns.png-atlas |
||||||
|
[12Jul2022 22:00:15.562] [Render thread/INFO] [net.minecraft.client.renderer.texture.TextureAtlas/]: Created: 512x512x4 minecraft:textures/atlas/shield_patterns.png-atlas |
||||||
|
[12Jul2022 22:00:15.564] [Render thread/INFO] [net.minecraft.client.renderer.texture.TextureAtlas/]: Created: 256x256x4 minecraft:textures/atlas/chest.png-atlas |
||||||
|
[12Jul2022 22:00:15.565] [Render thread/INFO] [net.minecraft.client.renderer.texture.TextureAtlas/]: Created: 512x256x4 minecraft:textures/atlas/beds.png-atlas |
||||||
|
[12Jul2022 22:00:15.565] [Render thread/INFO] [net.minecraft.client.renderer.texture.TextureAtlas/]: Created: 512x256x4 minecraft:textures/atlas/shulker_boxes.png-atlas |
||||||
|
[12Jul2022 22:00:16.902] [Render thread/WARN] [net.minecraft.client.renderer.ShaderInstance/]: Shader rendertype_entity_translucent_emissive could not find sampler named Sampler2 in the specified shader program. |
||||||
|
[12Jul2022 22:00:17.017] [Render thread/INFO] [net.minecraft.client.renderer.texture.TextureAtlas/]: Created: 256x256x0 minecraft:textures/atlas/particles.png-atlas |
||||||
|
[12Jul2022 22:00:17.023] [Render thread/INFO] [net.minecraft.client.renderer.texture.TextureAtlas/]: Created: 256x256x0 minecraft:textures/atlas/paintings.png-atlas |
||||||
|
[12Jul2022 22:00:17.026] [Render thread/INFO] [net.minecraft.client.renderer.texture.TextureAtlas/]: Created: 128x128x0 minecraft:textures/atlas/mob_effects.png-atlas |
||||||
|
[12Jul2022 22:00:17.300] [Realms Notification Availability checker #1/INFO] [com.mojang.realmsclient.client.RealmsClient/]: Could not authorize you against Realms server: Invalid session id |
||||||
|
[12Jul2022 22:00:26.201] [Server Pinger #0/DEBUG] [io.netty.util.internal.InternalThreadLocalMap/]: -Dio.netty.threadLocalMap.stringBuilder.initialSize: 1024 |
||||||
|
[12Jul2022 22:00:26.201] [Server Pinger #0/DEBUG] [io.netty.util.internal.InternalThreadLocalMap/]: -Dio.netty.threadLocalMap.stringBuilder.maxSize: 4096 |
||||||
|
[12Jul2022 22:00:26.208] [Server Pinger #0/DEBUG] [io.netty.util.internal.NativeLibraryLoader/]: -Dio.netty.native.workdir: /tmp (io.netty.tmpdir) |
||||||
|
[12Jul2022 22:00:26.209] [Server Pinger #0/DEBUG] [io.netty.util.internal.NativeLibraryLoader/]: -Dio.netty.native.deleteLibAfterLoading: true |
||||||
|
[12Jul2022 22:00:26.209] [Server Pinger #0/DEBUG] [io.netty.util.internal.NativeLibraryLoader/]: -Dio.netty.native.tryPatchShadedId: true |
||||||
|
[12Jul2022 22:00:26.209] [Server Pinger #0/DEBUG] [io.netty.util.internal.NativeLibraryLoader/]: -Dio.netty.native.detectNativeLibraryDuplicates: true |
||||||
|
[12Jul2022 22:00:26.216] [Server Pinger #0/DEBUG] [io.netty.util.internal.NativeLibraryLoader/]: Successfully loaded the library /tmp/libnetty_transport_native_epoll_x86_6411460077657228490065.so |
||||||
|
[12Jul2022 22:00:26.219] [Server Pinger #0/DEBUG] [io.netty.util.NetUtil/]: -Djava.net.preferIPv4Stack: true |
||||||
|
[12Jul2022 22:00:26.220] [Server Pinger #0/DEBUG] [io.netty.util.NetUtil/]: -Djava.net.preferIPv6Addresses: false |
||||||
|
[12Jul2022 22:00:26.221] [Server Pinger #0/DEBUG] [io.netty.util.NetUtilInitializations/]: Loopback interface: lo (lo, 0:0:0:0:0:0:0:1%lo) |
||||||
|
[12Jul2022 22:00:26.221] [Server Pinger #0/DEBUG] [io.netty.util.NetUtil/]: /proc/sys/net/core/somaxconn: 4096 |
||||||
|
[12Jul2022 22:00:26.230] [Server Pinger #0/DEBUG] [io.netty.channel.MultithreadEventLoopGroup/]: -Dio.netty.eventLoopThreads: 16 |
||||||
|
[12Jul2022 22:00:26.245] [Server Pinger #0/DEBUG] [io.netty.channel.nio.NioEventLoop/]: -Dio.netty.noKeySetOptimization: false |
||||||
|
[12Jul2022 22:00:26.245] [Server Pinger #0/DEBUG] [io.netty.channel.nio.NioEventLoop/]: -Dio.netty.selectorAutoRebuildThreshold: 512 |
||||||
|
[12Jul2022 22:00:26.250] [Server Pinger #0/DEBUG] [io.netty.util.internal.PlatformDependent/]: org.jctools-core.MpscChunkedArrayQueue: available |
||||||
|
[12Jul2022 22:00:26.266] [Server Pinger #0/DEBUG] [io.netty.channel.DefaultChannelId/]: -Dio.netty.processId: 574397 (auto-detected) |
||||||
|
[12Jul2022 22:00:26.268] [Server Pinger #0/DEBUG] [io.netty.channel.DefaultChannelId/]: -Dio.netty.machineId: 4c:cc:6a:ff:fe:4b:77:a4 (auto-detected) |
||||||
|
[12Jul2022 22:00:26.299] [Server Pinger #0/DEBUG] [io.netty.buffer.PooledByteBufAllocator/]: -Dio.netty.allocator.numHeapArenas: 16 |
||||||
|
[12Jul2022 22:00:26.299] [Server Pinger #0/DEBUG] [io.netty.buffer.PooledByteBufAllocator/]: -Dio.netty.allocator.numDirectArenas: 16 |
||||||
|
[12Jul2022 22:00:26.299] [Server Pinger #0/DEBUG] [io.netty.buffer.PooledByteBufAllocator/]: -Dio.netty.allocator.pageSize: 8192 |
||||||
|
[12Jul2022 22:00:26.299] [Server Pinger #0/DEBUG] [io.netty.buffer.PooledByteBufAllocator/]: -Dio.netty.allocator.maxOrder: 9 |
||||||
|
[12Jul2022 22:00:26.299] [Server Pinger #0/DEBUG] [io.netty.buffer.PooledByteBufAllocator/]: -Dio.netty.allocator.chunkSize: 4194304 |
||||||
|
[12Jul2022 22:00:26.299] [Server Pinger #0/DEBUG] [io.netty.buffer.PooledByteBufAllocator/]: -Dio.netty.allocator.smallCacheSize: 256 |
||||||
|
[12Jul2022 22:00:26.299] [Server Pinger #0/DEBUG] [io.netty.buffer.PooledByteBufAllocator/]: -Dio.netty.allocator.normalCacheSize: 64 |
||||||
|
[12Jul2022 22:00:26.299] [Server Pinger #0/DEBUG] [io.netty.buffer.PooledByteBufAllocator/]: -Dio.netty.allocator.maxCachedBufferCapacity: 32768 |
||||||
|
[12Jul2022 22:00:26.300] [Server Pinger #0/DEBUG] [io.netty.buffer.PooledByteBufAllocator/]: -Dio.netty.allocator.cacheTrimInterval: 8192 |
||||||
|
[12Jul2022 22:00:26.300] [Server Pinger #0/DEBUG] [io.netty.buffer.PooledByteBufAllocator/]: -Dio.netty.allocator.cacheTrimIntervalMillis: 0 |
||||||
|
[12Jul2022 22:00:26.300] [Server Pinger #0/DEBUG] [io.netty.buffer.PooledByteBufAllocator/]: -Dio.netty.allocator.useCacheForAllThreads: false |
||||||
|
[12Jul2022 22:00:26.300] [Server Pinger #0/DEBUG] [io.netty.buffer.PooledByteBufAllocator/]: -Dio.netty.allocator.maxCachedByteBuffersPerChunk: 1023 |
||||||
|
[12Jul2022 22:00:26.309] [Server Pinger #0/DEBUG] [io.netty.buffer.ByteBufUtil/]: -Dio.netty.allocator.type: pooled |
||||||
|
[12Jul2022 22:00:26.309] [Server Pinger #0/DEBUG] [io.netty.buffer.ByteBufUtil/]: -Dio.netty.threadLocalDirectBufferSize: 0 |
||||||
|
[12Jul2022 22:00:26.312] [Server Pinger #0/DEBUG] [io.netty.buffer.ByteBufUtil/]: -Dio.netty.maxThreadLocalCharBufferSize: 16384 |
||||||
|
[12Jul2022 22:00:26.361] [Netty Client IO #0/DEBUG] [net.minecraftforge.network.HandshakeHandler/FMLHANDSHAKE]: Starting new vanilla impl connection. |
||||||
|
[12Jul2022 22:00:26.656] [Netty Client IO #0/DEBUG] [io.netty.util.Recycler/]: -Dio.netty.recycler.maxCapacityPerThread: 4096 |
||||||
|
[12Jul2022 22:00:26.657] [Netty Client IO #0/DEBUG] [io.netty.util.Recycler/]: -Dio.netty.recycler.ratio: 8 |
||||||
|
[12Jul2022 22:00:26.657] [Netty Client IO #0/DEBUG] [io.netty.util.Recycler/]: -Dio.netty.recycler.chunkSize: 32 |
||||||
|
[12Jul2022 22:00:26.658] [Netty Client IO #0/DEBUG] [io.netty.util.Recycler/]: -Dio.netty.recycler.blocking: false |
||||||
|
[12Jul2022 22:00:26.666] [Netty Client IO #0/DEBUG] [io.netty.buffer.AbstractByteBuf/]: -Dio.netty.buffer.checkAccessible: true |
||||||
|
[12Jul2022 22:00:26.667] [Netty Client IO #0/DEBUG] [io.netty.buffer.AbstractByteBuf/]: -Dio.netty.buffer.checkBounds: true |
||||||
|
[12Jul2022 22:00:26.668] [Netty Client IO #0/DEBUG] [io.netty.util.ResourceLeakDetectorFactory/]: Loaded default ResourceLeakDetector: io.netty.util.ResourceLeakDetector@602f945c |
||||||
|
[12Jul2022 22:00:26.859] [Netty Client IO #0/DEBUG] [net.minecraftforge.network.NetworkRegistry/NETREGISTRY]: Channel 'forge:tier_sorting' : Version test of '(1.0,false)' during listping : ACCEPTED |
||||||
|
[12Jul2022 22:00:26.860] [Netty Client IO #0/DEBUG] [net.minecraftforge.network.NetworkRegistry/NETREGISTRY]: Channel 'minecraft:unregister' : Version test of '(FML3,true)' during listping : ACCEPTED |
||||||
|
[12Jul2022 22:00:26.861] [Netty Client IO #0/DEBUG] [net.minecraftforge.network.NetworkRegistry/NETREGISTRY]: Channel 'minecraft:register' : Version test of '(FML3,true)' during listping : ACCEPTED |
||||||
|
[12Jul2022 22:00:26.861] [Netty Client IO #0/DEBUG] [net.minecraftforge.network.NetworkRegistry/NETREGISTRY]: Channel 'forge:split' : Version test of '(1.1,true)' during listping : ACCEPTED |
||||||
|
[12Jul2022 22:00:26.862] [Netty Client IO #0/DEBUG] [net.minecraftforge.network.NetworkRegistry/NETREGISTRY]: Accepting channel list during listping |
||||||
|
[12Jul2022 22:00:26.867] [Netty Client IO #0/DEBUG] [net.minecraftforge.client.ForgeHooksClient/CLIENTHOOKS]: Received FML ping data from server at 127.0.0.1: FMLNETVER=3, mod list is compatible : true, channel list is compatible: true, extra server mods: {} |
||||||
|
[12Jul2022 22:00:27.553] [Render thread/INFO] [net.minecraft.client.gui.screens.ConnectScreen/]: Connecting to 127.0.0.1, 25565 |
||||||
|
[12Jul2022 22:00:27.568] [Netty Epoll Client IO #0/DEBUG] [net.minecraftforge.network.HandshakeHandler/FMLHANDSHAKE]: Starting new vanilla impl connection. |
||||||
|
[12Jul2022 22:00:27.635] [Netty Epoll Client IO #0/DEBUG] [net.minecraftforge.network.LoginWrapper/FMLHANDSHAKE]: Recieved login wrapper packet event for channel fml:handshake with index 0 |
||||||
|
[12Jul2022 22:00:27.676] [Netty Epoll Client IO #0/DEBUG] [net.minecraftforge.network.LoginWrapper/FMLHANDSHAKE]: Recieved login wrapper packet event for channel fml:handshake with index 1 |
||||||
|
[12Jul2022 22:00:27.677] [Netty Epoll Client IO #0/DEBUG] [net.minecraftforge.network.HandshakeHandler/FMLHANDSHAKE]: Logging into server with mod list [minecraft, forge, examplemod] |
||||||
|
[12Jul2022 22:00:27.678] [Netty Epoll Client IO #0/DEBUG] [net.minecraftforge.network.NetworkRegistry/NETREGISTRY]: Channel 'fml:loginwrapper' : Version test of 'FML3' from server : ACCEPTED |
||||||
|
[12Jul2022 22:00:27.679] [Netty Epoll Client IO #0/DEBUG] [net.minecraftforge.network.NetworkRegistry/NETREGISTRY]: Channel 'forge:tier_sorting' : Version test of '1.0' from server : ACCEPTED |
||||||
|
[12Jul2022 22:00:27.679] [Netty Epoll Client IO #0/DEBUG] [net.minecraftforge.network.NetworkRegistry/NETREGISTRY]: Channel 'fml:handshake' : Version test of 'FML3' from server : ACCEPTED |
||||||
|
[12Jul2022 22:00:27.679] [Netty Epoll Client IO #0/DEBUG] [net.minecraftforge.network.NetworkRegistry/NETREGISTRY]: Channel 'minecraft:unregister' : Version test of 'FML3' from server : ACCEPTED |
||||||
|
[12Jul2022 22:00:27.679] [Netty Epoll Client IO #0/DEBUG] [net.minecraftforge.network.NetworkRegistry/NETREGISTRY]: Channel 'fml:play' : Version test of 'FML3' from server : ACCEPTED |
||||||
|
[12Jul2022 22:00:27.679] [Netty Epoll Client IO #0/DEBUG] [net.minecraftforge.network.NetworkRegistry/NETREGISTRY]: Channel 'minecraft:register' : Version test of 'FML3' from server : ACCEPTED |
||||||
|
[12Jul2022 22:00:27.679] [Netty Epoll Client IO #0/DEBUG] [net.minecraftforge.network.NetworkRegistry/NETREGISTRY]: Channel 'forge:split' : Version test of '1.1' from server : ACCEPTED |
||||||
|
[12Jul2022 22:00:27.679] [Netty Epoll Client IO #0/DEBUG] [net.minecraftforge.network.NetworkRegistry/NETREGISTRY]: Accepting channel list from server |
||||||
|
[12Jul2022 22:00:27.681] [Netty Epoll Client IO #0/DEBUG] [net.minecraftforge.network.LoginWrapper/FMLHANDSHAKE]: Dispatching wrapped packet reply for channel fml:handshake with index 1 |
||||||
|
[12Jul2022 22:00:27.683] [Netty Epoll Client IO #0/DEBUG] [net.minecraftforge.network.HandshakeHandler/FMLHANDSHAKE]: Accepted server connection |
||||||
|
[12Jul2022 22:00:27.726] [Netty Epoll Client IO #0/DEBUG] [net.minecraftforge.network.LoginWrapper/FMLHANDSHAKE]: Recieved login wrapper packet event for channel fml:handshake with index 2 |
||||||
|
[12Jul2022 22:00:27.729] [Netty Epoll Client IO #0/DEBUG] [net.minecraftforge.network.HandshakeHandler/FMLHANDSHAKE]: Received registry packet for minecraft:recipe_serializer |
||||||
|
[12Jul2022 22:00:27.729] [Netty Epoll Client IO #0/DEBUG] [net.minecraftforge.network.LoginWrapper/FMLHANDSHAKE]: Dispatching wrapped packet reply for channel fml:handshake with index 2 |
||||||
|
[12Jul2022 22:00:27.778] [Netty Epoll Client IO #0/DEBUG] [net.minecraftforge.network.LoginWrapper/FMLHANDSHAKE]: Recieved login wrapper packet event for channel fml:handshake with index 3 |
||||||
|
[12Jul2022 22:00:27.784] [Netty Epoll Client IO #0/DEBUG] [net.minecraftforge.network.HandshakeHandler/FMLHANDSHAKE]: Received registry packet for minecraft:sound_event |
||||||
|
[12Jul2022 22:00:27.784] [Netty Epoll Client IO #0/DEBUG] [net.minecraftforge.network.LoginWrapper/FMLHANDSHAKE]: Dispatching wrapped packet reply for channel fml:handshake with index 3 |
||||||
|
[12Jul2022 22:00:27.826] [Netty Epoll Client IO #0/DEBUG] [net.minecraftforge.network.LoginWrapper/FMLHANDSHAKE]: Recieved login wrapper packet event for channel fml:handshake with index 4 |
||||||
|
[12Jul2022 22:00:27.826] [Netty Epoll Client IO #0/DEBUG] [net.minecraftforge.network.HandshakeHandler/FMLHANDSHAKE]: Received registry packet for minecraft:particle_type |
||||||
|
[12Jul2022 22:00:27.827] [Netty Epoll Client IO #0/DEBUG] [net.minecraftforge.network.LoginWrapper/FMLHANDSHAKE]: Dispatching wrapped packet reply for channel fml:handshake with index 4 |
||||||
|
[12Jul2022 22:00:27.876] [Netty Epoll Client IO #0/DEBUG] [net.minecraftforge.network.LoginWrapper/FMLHANDSHAKE]: Recieved login wrapper packet event for channel fml:handshake with index 5 |
||||||
|
[12Jul2022 22:00:27.877] [Netty Epoll Client IO #0/DEBUG] [net.minecraftforge.network.HandshakeHandler/FMLHANDSHAKE]: Received registry packet for minecraft:villager_profession |
||||||
|
[12Jul2022 22:00:27.877] [Netty Epoll Client IO #0/DEBUG] [net.minecraftforge.network.LoginWrapper/FMLHANDSHAKE]: Dispatching wrapped packet reply for channel fml:handshake with index 5 |
||||||
|
[12Jul2022 22:00:27.927] [Netty Epoll Client IO #0/DEBUG] [net.minecraftforge.network.LoginWrapper/FMLHANDSHAKE]: Recieved login wrapper packet event for channel fml:handshake with index 6 |
||||||
|
[12Jul2022 22:00:27.930] [Netty Epoll Client IO #0/DEBUG] [net.minecraftforge.network.HandshakeHandler/FMLHANDSHAKE]: Received registry packet for minecraft:item |
||||||
|
[12Jul2022 22:00:27.930] [Netty Epoll Client IO #0/DEBUG] [net.minecraftforge.network.LoginWrapper/FMLHANDSHAKE]: Dispatching wrapped packet reply for channel fml:handshake with index 6 |
||||||
|
[12Jul2022 22:00:27.976] [Netty Epoll Client IO #0/DEBUG] [net.minecraftforge.network.LoginWrapper/FMLHANDSHAKE]: Recieved login wrapper packet event for channel fml:handshake with index 7 |
||||||
|
[12Jul2022 22:00:27.977] [Netty Epoll Client IO #0/DEBUG] [net.minecraftforge.network.HandshakeHandler/FMLHANDSHAKE]: Received registry packet for minecraft:potion |
||||||
|
[12Jul2022 22:00:27.977] [Netty Epoll Client IO #0/DEBUG] [net.minecraftforge.network.LoginWrapper/FMLHANDSHAKE]: Dispatching wrapped packet reply for channel fml:handshake with index 7 |
||||||
|
[12Jul2022 22:00:28.026] [Netty Epoll Client IO #0/DEBUG] [net.minecraftforge.network.LoginWrapper/FMLHANDSHAKE]: Recieved login wrapper packet event for channel fml:handshake with index 8 |
||||||
|
[12Jul2022 22:00:28.026] [Netty Epoll Client IO #0/DEBUG] [net.minecraftforge.network.HandshakeHandler/FMLHANDSHAKE]: Received registry packet for minecraft:painting_variant |
||||||
|
[12Jul2022 22:00:28.026] [Netty Epoll Client IO #0/DEBUG] [net.minecraftforge.network.LoginWrapper/FMLHANDSHAKE]: Dispatching wrapped packet reply for channel fml:handshake with index 8 |
||||||
|
[12Jul2022 22:00:28.077] [Netty Epoll Client IO #0/DEBUG] [net.minecraftforge.network.LoginWrapper/FMLHANDSHAKE]: Recieved login wrapper packet event for channel fml:handshake with index 9 |
||||||
|
[12Jul2022 22:00:28.078] [Netty Epoll Client IO #0/DEBUG] [net.minecraftforge.network.HandshakeHandler/FMLHANDSHAKE]: Received registry packet for forge:data_serializers |
||||||
|
[12Jul2022 22:00:28.078] [Netty Epoll Client IO #0/DEBUG] [net.minecraftforge.network.LoginWrapper/FMLHANDSHAKE]: Dispatching wrapped packet reply for channel fml:handshake with index 9 |
||||||
|
[12Jul2022 22:00:28.126] [Netty Epoll Client IO #0/DEBUG] [net.minecraftforge.network.LoginWrapper/FMLHANDSHAKE]: Recieved login wrapper packet event for channel fml:handshake with index 10 |
||||||
|
[12Jul2022 22:00:28.127] [Netty Epoll Client IO #0/DEBUG] [net.minecraftforge.network.HandshakeHandler/FMLHANDSHAKE]: Received registry packet for forge:fluid_type |
||||||
|
[12Jul2022 22:00:28.127] [Netty Epoll Client IO #0/DEBUG] [net.minecraftforge.network.LoginWrapper/FMLHANDSHAKE]: Dispatching wrapped packet reply for channel fml:handshake with index 10 |
||||||
|
[12Jul2022 22:00:28.176] [Netty Epoll Client IO #0/DEBUG] [net.minecraftforge.network.LoginWrapper/FMLHANDSHAKE]: Recieved login wrapper packet event for channel fml:handshake with index 11 |
||||||
|
[12Jul2022 22:00:28.176] [Netty Epoll Client IO #0/DEBUG] [net.minecraftforge.network.HandshakeHandler/FMLHANDSHAKE]: Received registry packet for minecraft:block_entity_type |
||||||
|
[12Jul2022 22:00:28.177] [Netty Epoll Client IO #0/DEBUG] [net.minecraftforge.network.LoginWrapper/FMLHANDSHAKE]: Dispatching wrapped packet reply for channel fml:handshake with index 11 |
||||||
|
[12Jul2022 22:00:28.227] [Netty Epoll Client IO #0/DEBUG] [net.minecraftforge.network.LoginWrapper/FMLHANDSHAKE]: Recieved login wrapper packet event for channel fml:handshake with index 12 |
||||||
|
[12Jul2022 22:00:28.228] [Netty Epoll Client IO #0/DEBUG] [net.minecraftforge.network.HandshakeHandler/FMLHANDSHAKE]: Received registry packet for minecraft:block |
||||||
|
[12Jul2022 22:00:28.229] [Netty Epoll Client IO #0/DEBUG] [net.minecraftforge.network.LoginWrapper/FMLHANDSHAKE]: Dispatching wrapped packet reply for channel fml:handshake with index 12 |
||||||
|
[12Jul2022 22:00:28.276] [Netty Epoll Client IO #0/DEBUG] [net.minecraftforge.network.LoginWrapper/FMLHANDSHAKE]: Recieved login wrapper packet event for channel fml:handshake with index 13 |
||||||
|
[12Jul2022 22:00:28.276] [Netty Epoll Client IO #0/DEBUG] [net.minecraftforge.network.HandshakeHandler/FMLHANDSHAKE]: Received registry packet for minecraft:mob_effect |
||||||
|
[12Jul2022 22:00:28.276] [Netty Epoll Client IO #0/DEBUG] [net.minecraftforge.network.LoginWrapper/FMLHANDSHAKE]: Dispatching wrapped packet reply for channel fml:handshake with index 13 |
||||||
|
[12Jul2022 22:00:28.326] [Netty Epoll Client IO #0/DEBUG] [net.minecraftforge.network.LoginWrapper/FMLHANDSHAKE]: Recieved login wrapper packet event for channel fml:handshake with index 14 |
||||||
|
[12Jul2022 22:00:28.327] [Netty Epoll Client IO #0/DEBUG] [net.minecraftforge.network.HandshakeHandler/FMLHANDSHAKE]: Received registry packet for minecraft:stat_type |
||||||
|
[12Jul2022 22:00:28.327] [Netty Epoll Client IO #0/DEBUG] [net.minecraftforge.network.LoginWrapper/FMLHANDSHAKE]: Dispatching wrapped packet reply for channel fml:handshake with index 14 |
||||||
|
[12Jul2022 22:00:28.375] [Netty Epoll Client IO #0/DEBUG] [net.minecraftforge.network.LoginWrapper/FMLHANDSHAKE]: Recieved login wrapper packet event for channel fml:handshake with index 15 |
||||||
|
[12Jul2022 22:00:28.376] [Netty Epoll Client IO #0/DEBUG] [net.minecraftforge.network.HandshakeHandler/FMLHANDSHAKE]: Received registry packet for minecraft:menu |
||||||
|
[12Jul2022 22:00:28.376] [Netty Epoll Client IO #0/DEBUG] [net.minecraftforge.network.LoginWrapper/FMLHANDSHAKE]: Dispatching wrapped packet reply for channel fml:handshake with index 15 |
||||||
|
[12Jul2022 22:00:28.426] [Netty Epoll Client IO #0/DEBUG] [net.minecraftforge.network.LoginWrapper/FMLHANDSHAKE]: Recieved login wrapper packet event for channel fml:handshake with index 16 |
||||||
|
[12Jul2022 22:00:28.426] [Netty Epoll Client IO #0/DEBUG] [net.minecraftforge.network.HandshakeHandler/FMLHANDSHAKE]: Received registry packet for minecraft:enchantment |
||||||
|
[12Jul2022 22:00:28.426] [Netty Epoll Client IO #0/DEBUG] [net.minecraftforge.network.LoginWrapper/FMLHANDSHAKE]: Dispatching wrapped packet reply for channel fml:handshake with index 16 |
||||||
|
[12Jul2022 22:00:28.476] [Netty Epoll Client IO #0/DEBUG] [net.minecraftforge.network.LoginWrapper/FMLHANDSHAKE]: Recieved login wrapper packet event for channel fml:handshake with index 17 |
||||||
|
[12Jul2022 22:00:28.476] [Netty Epoll Client IO #0/DEBUG] [net.minecraftforge.network.HandshakeHandler/FMLHANDSHAKE]: Received registry packet for minecraft:fluid |
||||||
|
[12Jul2022 22:00:28.476] [Netty Epoll Client IO #0/DEBUG] [net.minecraftforge.network.LoginWrapper/FMLHANDSHAKE]: Dispatching wrapped packet reply for channel fml:handshake with index 17 |
||||||
|
[12Jul2022 22:00:28.526] [Netty Epoll Client IO #0/DEBUG] [net.minecraftforge.network.LoginWrapper/FMLHANDSHAKE]: Recieved login wrapper packet event for channel fml:handshake with index 18 |
||||||
|
[12Jul2022 22:00:28.526] [Netty Epoll Client IO #0/DEBUG] [net.minecraftforge.network.HandshakeHandler/FMLHANDSHAKE]: Received registry packet for minecraft:entity_type |
||||||
|
[12Jul2022 22:00:28.527] [Netty Epoll Client IO #0/DEBUG] [net.minecraftforge.network.HandshakeHandler/FMLHANDSHAKE]: Waiting for registries to load. |
||||||
|
[12Jul2022 22:00:28.542] [Render thread/DEBUG] [net.minecraftforge.network.HandshakeHandler/FMLHANDSHAKE]: Injecting registry snapshot from server. |
||||||
|
[12Jul2022 22:00:29.008] [Render thread/DEBUG] [net.minecraftforge.network.HandshakeHandler/FMLHANDSHAKE]: Snapshot injected. |
||||||
|
[12Jul2022 22:00:29.009] [Netty Epoll Client IO #0/DEBUG] [net.minecraftforge.network.HandshakeHandler/FMLHANDSHAKE]: Registry load complete, continuing handshake. |
||||||
|
[12Jul2022 22:00:29.009] [Netty Epoll Client IO #0/DEBUG] [net.minecraftforge.network.LoginWrapper/FMLHANDSHAKE]: Dispatching wrapped packet reply for channel fml:handshake with index 18 |
||||||
|
[12Jul2022 22:00:29.010] [Netty Epoll Client IO #0/DEBUG] [net.minecraftforge.network.LoginWrapper/FMLHANDSHAKE]: Recieved login wrapper packet event for channel fml:handshake with index 19 |
||||||
|
[12Jul2022 22:00:29.010] [Netty Epoll Client IO #0/DEBUG] [net.minecraftforge.network.HandshakeHandler/FMLHANDSHAKE]: Received config sync from server |
||||||
|
[12Jul2022 22:00:29.012] [Netty Epoll Client IO #0/DEBUG] [net.minecraftforge.common.ForgeConfig/FORGEMOD]: Forge config just got changed on the file system! |
||||||
|
[12Jul2022 22:00:29.012] [Netty Epoll Client IO #0/DEBUG] [net.minecraftforge.network.LoginWrapper/FMLHANDSHAKE]: Dispatching wrapped packet reply for channel fml:handshake with index 19 |
||||||
|
[12Jul2022 22:00:29.083] [Netty Epoll Client IO #0/INFO] [net.minecraftforge.network.NetworkHooks/]: Connected to a modded server. |
||||||
|
[12Jul2022 22:00:31.395] [Render thread/DEBUG] [net.minecraftforge.network.filters.NetworkFilters/]: Injected net.minecraftforge.network.filters.ForgeConnectionNetworkFilter@7294a684 into net.minecraft.network.Connection@2762253e |
||||||
|
[12Jul2022 22:00:32.327] [Render thread/DEBUG] [io.netty.util.internal.ThreadLocalRandom/]: -Dio.netty.initialSeedUniquifier: 0xf50c3261a66eb302 |
||||||
|
[12Jul2022 22:00:32.725] [Render thread/INFO] [net.minecraft.advancements.AdvancementList/]: Loaded 0 advancements |
||||||
|
[12Jul2022 22:01:22.066] [Render thread/INFO] [net.minecraft.client.gui.components.ChatComponent/]: [CHAT] Unknown or incomplete command, see below for error |
||||||
|
[12Jul2022 22:01:22.072] [Render thread/INFO] [net.minecraft.client.gui.components.ChatComponent/]: [CHAT] op<--[HERE] |
||||||
|
[12Jul2022 22:01:24.998] [Render thread/INFO] [net.minecraft.client.gui.components.ChatComponent/]: [CHAT] Unknown or incomplete command, see below for error |
||||||
|
[12Jul2022 22:01:24.998] [Render thread/INFO] [net.minecraft.client.gui.components.ChatComponent/]: [CHAT] op<--[HERE] |
||||||
|
[12Jul2022 22:01:41.732] [Render thread/INFO] [net.minecraft.client.gui.components.ChatComponent/]: [CHAT] [Server: Made Dev a server operator] |
||||||
|
[12Jul2022 22:01:49.530] [Render thread/INFO] [net.minecraft.client.gui.components.ChatComponent/]: [CHAT] Set own game mode to Creative Mode |
||||||
|
[12Jul2022 22:02:21.743] [Netty Client IO #1/DEBUG] [net.minecraftforge.network.HandshakeHandler/FMLHANDSHAKE]: Starting new vanilla impl connection. |
||||||
|
[12Jul2022 22:02:21.752] [Netty Client IO #1/DEBUG] [net.minecraftforge.network.NetworkRegistry/NETREGISTRY]: Channel 'forge:tier_sorting' : Version test of '(1.0,false)' during listping : ACCEPTED |
||||||
|
[12Jul2022 22:02:21.752] [Netty Client IO #1/DEBUG] [net.minecraftforge.network.NetworkRegistry/NETREGISTRY]: Channel 'minecraft:unregister' : Version test of '(FML3,true)' during listping : ACCEPTED |
||||||
|
[12Jul2022 22:02:21.752] [Netty Client IO #1/DEBUG] [net.minecraftforge.network.NetworkRegistry/NETREGISTRY]: Channel 'minecraft:register' : Version test of '(FML3,true)' during listping : ACCEPTED |
||||||
|
[12Jul2022 22:02:21.752] [Netty Client IO #1/DEBUG] [net.minecraftforge.network.NetworkRegistry/NETREGISTRY]: Channel 'forge:split' : Version test of '(1.1,true)' during listping : ACCEPTED |
||||||
|
[12Jul2022 22:02:21.752] [Netty Client IO #1/DEBUG] [net.minecraftforge.network.NetworkRegistry/NETREGISTRY]: Accepting channel list during listping |
||||||
|
[12Jul2022 22:02:21.752] [Netty Client IO #1/DEBUG] [net.minecraftforge.client.ForgeHooksClient/CLIENTHOOKS]: Received FML ping data from server at 127.0.0.1: FMLNETVER=3, mod list is compatible : true, channel list is compatible: true, extra server mods: {} |
||||||
|
[12Jul2022 22:02:23.828] [Render thread/INFO] [net.minecraft.client.Minecraft/]: Stopping! |
@ -0,0 +1,81 @@ |
|||||||
|
[12Jul2022 21:59:35.221] [main/INFO] [cpw.mods.modlauncher.Launcher/MODLAUNCHER]: ModLauncher running: args [--launchTarget, forgeserveruserdev, --gameDir, ., --fml.forgeVersion, 41.0.98, --fml.mcVersion, 1.19, --fml.forgeGroup, net.minecraftforge, --fml.mcpVersion, 20220607.102129] |
||||||
|
[12Jul2022 21:59:35.229] [main/INFO] [cpw.mods.modlauncher.Launcher/MODLAUNCHER]: ModLauncher 10.0.8+10.0.8+main.0ef7e830 starting: java version 17.0.3 by Private Build; OS Linux arch amd64 version 5.17.15-76051715-generic |
||||||
|
[12Jul2022 21:59:35.554] [main/INFO] [mixin/]: SpongePowered MIXIN Subsystem Version=0.8.5 Source=union:/home/niconiconii/.gradle/caches/modules-2/files-2.1/org.spongepowered/mixin/0.8.5/9d1c0c3a304ae6697ecd477218fa61b850bf57fc/mixin-0.8.5.jar%23113!/ Service=ModLauncher Env=SERVER |
||||||
|
[12Jul2022 21:59:36.183] [main/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Mod file /home/niconiconii/.gradle/caches/modules-2/files-2.1/net.minecraftforge/javafmllanguage/1.19-41.0.98/625570d49ae21b91c1460a3b7f806ebdce61ed85/javafmllanguage-1.19-41.0.98.jar is missing mods.toml file |
||||||
|
[12Jul2022 21:59:36.186] [main/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Mod file /home/niconiconii/.gradle/caches/modules-2/files-2.1/net.minecraftforge/lowcodelanguage/1.19-41.0.98/3ba0f5d44ce25e5f31b0659530e9267d07dc2d8d/lowcodelanguage-1.19-41.0.98.jar is missing mods.toml file |
||||||
|
[12Jul2022 21:59:36.189] [main/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Mod file /home/niconiconii/.gradle/caches/modules-2/files-2.1/net.minecraftforge/mclanguage/1.19-41.0.98/cc475e6c9e436479a8eb003245eea5c2abaefbf1/mclanguage-1.19-41.0.98.jar is missing mods.toml file |
||||||
|
[12Jul2022 21:59:36.199] [main/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Mod file /home/niconiconii/.gradle/caches/modules-2/files-2.1/net.minecraftforge/fmlcore/1.19-41.0.98/cc1a226d7b80d3e9e5980ec9f2ff9b1d46d36fee/fmlcore-1.19-41.0.98.jar is missing mods.toml file |
||||||
|
[12Jul2022 21:59:36.323] [main/INFO] [net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator/]: No dependencies to load found. Skipping! |
||||||
|
[12Jul2022 21:59:38.861] [main/INFO] [cpw.mods.modlauncher.LaunchServiceHandler/MODLAUNCHER]: Launching target 'forgeserveruserdev' with arguments [--gameDir, .] |
||||||
|
[12Jul2022 21:59:45.303] [main/INFO] [net.minecraft.util.datafix.DataFixers/]: Building unoptimized datafixer |
||||||
|
[12Jul2022 21:59:48.768] [modloading-worker-0/INFO] [net.minecraftforge.common.ForgeMod/FORGEMOD]: Forge mod loading, version 41.0.98, for MC 1.19 with MCP 20220607.102129 |
||||||
|
[12Jul2022 21:59:48.772] [modloading-worker-0/INFO] [net.minecraftforge.common.MinecraftForge/FORGE]: MinecraftForge v41.0.98 Initialized |
||||||
|
[12Jul2022 21:59:49.506] [modloading-worker-0/INFO] [com.example.examplemod.ExampleMod/]: HELLO FROM COMMON SETUP |
||||||
|
[12Jul2022 21:59:49.506] [modloading-worker-0/INFO] [com.example.examplemod.ExampleMod/]: DIRT BLOCK >> minecraft:dirt |
||||||
|
[12Jul2022 21:59:49.805] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [forge] Starting version check at https://files.minecraftforge.net/net/minecraftforge/forge/promotions_slim.json |
||||||
|
[12Jul2022 21:59:50.400] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [forge] Found status: BETA Current: 41.0.98 Target: 41.0.98 |
||||||
|
[12Jul2022 21:59:51.286] [main/INFO] [com.mojang.authlib.yggdrasil.YggdrasilAuthenticationService/]: Environment: authHost='https://authserver.mojang.com', accountsHost='https://api.mojang.com', sessionHost='https://sessionserver.mojang.com', servicesHost='https://api.minecraftservices.com', name='PROD' |
||||||
|
[12Jul2022 21:59:52.502] [main/WARN] [net.minecraft.server.packs.VanillaPackResources/]: Assets URL 'union:/home/niconiconii/.gradle/caches/forge_gradle/minecraft_user_repo/net/minecraftforge/forge/1.19-41.0.98_mapped_official_1.19/forge-1.19-41.0.98_mapped_official_1.19-recomp.jar%23178!/assets/.mcassetsroot' uses unexpected schema |
||||||
|
[12Jul2022 21:59:52.503] [main/WARN] [net.minecraft.server.packs.VanillaPackResources/]: Assets URL 'union:/home/niconiconii/.gradle/caches/forge_gradle/minecraft_user_repo/net/minecraftforge/forge/1.19-41.0.98_mapped_official_1.19/forge-1.19-41.0.98_mapped_official_1.19-recomp.jar%23178!/data/.mcassetsroot' uses unexpected schema |
||||||
|
[12Jul2022 21:59:56.652] [main/INFO] [net.minecraft.world.item.crafting.RecipeManager/]: Loaded 7 recipes |
||||||
|
[12Jul2022 21:59:57.618] [main/INFO] [net.minecraft.advancements.AdvancementList/]: Loaded 1179 advancements |
||||||
|
[12Jul2022 21:59:59.100] [Server thread/INFO] [net.minecraft.server.dedicated.DedicatedServer/]: Starting minecraft server version 1.19 |
||||||
|
[12Jul2022 21:59:59.102] [Server thread/INFO] [net.minecraft.server.dedicated.DedicatedServer/]: Loading properties |
||||||
|
[12Jul2022 21:59:59.103] [Server thread/INFO] [net.minecraft.server.dedicated.DedicatedServer/]: Default game type: SURVIVAL |
||||||
|
[12Jul2022 21:59:59.103] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Generating keypair |
||||||
|
[12Jul2022 21:59:59.294] [Server thread/INFO] [net.minecraft.server.dedicated.DedicatedServer/]: Starting Minecraft server on *:25565 |
||||||
|
[12Jul2022 21:59:59.368] [Server thread/INFO] [net.minecraft.server.network.ServerConnectionListener/]: Using epoll channel type |
||||||
|
[12Jul2022 21:59:59.544] [Server thread/WARN] [net.minecraft.server.dedicated.DedicatedServer/]: **** SERVER IS RUNNING IN OFFLINE/INSECURE MODE! |
||||||
|
[12Jul2022 21:59:59.546] [Server thread/WARN] [net.minecraft.server.dedicated.DedicatedServer/]: The server will make no attempt to authenticate usernames. Beware. |
||||||
|
[12Jul2022 21:59:59.547] [Server thread/WARN] [net.minecraft.server.dedicated.DedicatedServer/]: While this makes the game possible to play without internet access, it also opens up the ability for hackers to connect with any username they choose. |
||||||
|
[12Jul2022 21:59:59.547] [Server thread/WARN] [net.minecraft.ser[12Jul2022 22:00:00.469] [pool-3-thread-1/INFO] [net.minecraft.util.datafix.DataFixers/]: Building unoptimized datafixer |
||||||
|
[12Jul2022 22:00:04.313] [Render thread/WARN] [net.minecraft.server.packs.VanillaPackResources/]: Assets URL 'union:/home/niconiconii/.gradle/caches/forge_gradle/minecraft_user_repo/net/minecraftforge/forge/1.19-41.0.98_mapped_official_1.19/forge-1.19-[12Jul2022 22:00:07.359] [Worker-Main-7/INFO] [net.minecraft.server.level.progress.LoggerChunkProgressListener/]: Preparing spawn area: 0% |
||||||
|
[12Jul2022 22:00:07.367] [Worker-Main-5/INFO] [net.minecraft.server.level.progress.LoggerChunkProgressListener/]: Preparing spawn area: 0% |
||||||
|
[12Jul2022 22:00:07.368] [Worker-Main-5/INFO] [net.minecraft.server.level.progress.LoggerChunkProgressListener/]: Preparing spawn area: 0% |
||||||
|
[12Jul2022 22:00:07.368] [Worker-Main-5/INFO] [net.minecraft.server.level.progress.LoggerChunkProgressListener/]: Preparing spawn area: 0% |
||||||
|
[12Jul2022 22:00:07.370] [Worker-Main-3/INFO] [net.minecraft.server.level.progress.LoggerChunkProgressListener/]: Preparing spawn area: 0% |
||||||
|
[12Jul2022 22:00:07.371] [Worker-Main-3/INFO] [net.minecraft.server.level.progress.LoggerChunkProgressListener/]: Preparing spawn area: 0% |
||||||
|
[12Jul2022 22:00:07.372] [Worker-Main-7/INFO] [net.minecraft.server.level.progress.LoggerChunkProgressListener/]: Preparing spawn area: 0% |
||||||
|
[12Jul2022 22:00:07.377] [Worker-Main-7/INFO] [net.minecraft.server.level.progress.LoggerChunkProgressListener/]: Preparing spawn area: 0% |
||||||
|
[12Jul2022 22:00:07.378] [Worker-Main-4/INFO] [net.minecraft.server.level.progress.LoggerChunkProgressListener/]: Preparing spawn area: 0% |
||||||
|
[12Jul2022 22:00:07.379] [Worker[12Jul2022 22:00:07.564] [Render thread/INFO] [com.mojang.text2speech.NarratorLinux/]: Narrator library successfully loaded |
||||||
|
[12Jul2022 22:00:07.630] [Render thread/INFO] [net.minecraftforge.gametest.ForgeGameTestHooks/]: Enabled Gametest Namespaces: [examplemod] |
||||||
|
[12Jul2022 22:00:07.815] [Render thread/INFO] [net.minecraft.server.packs.resources.ReloadableResourceManager/]: Reloading ResourceManager: Default, Mod Resources |
||||||
|
[12Jul2022 22:00:07.883] [Worker-Main-2/INFO] [com.example.examplemod.ExampleMod/]: HELLO FROM COMMON SETUP |
||||||
|
[12Jul2022 22:00:07.883] [Worker-Main-2/INFO] [com.example.examplemod.ExampleMod/]: DIRT BLOCK >> minecraft:dirt |
||||||
|
[12Jul2022 22:00:08.486] [Worker-Main-2/INFO] [com.example.examplemod.ExampleMod/]: HELLO FROM CLIENT SETUP |
||||||
|
[12Jul2022 22:00:08.486] [Worker-Main-2/INFO] [com.example.examplemod.ExampleMod/]: MINECRAFT NAME >> Dev |
||||||
|
[12Jul2022 22:00:08.781] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [forge] Starting version check at https://files.minecraftforge.net/net/minecraftforge/forge/promotions_slim.json |
||||||
|
[12Jul2022 22:00:09.719] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [forge] Found status: BETA Current: 41.0.98 Target: 41.0.98 |
||||||
|
[12Jul2022 22:00:11.848] [Worker-Main-7/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Exception loading blockstate definition: 'examplemod:blockstates/example_block.json' missing model for variant: 'examplemod:example_block#' |
||||||
|
[12Jul2022 22:00:12.394] [Worker-Main-7/WARN] [net.minecraft.client.resources.model.ModelBakery/]: Unable to load model: 'examplemod:example_block#inventory' referenced from: examplemod:example_block#inventory: java.io.FileNotFoundException: examplemod:models/item/example_block.json |
||||||
|
[12Jul2022 22:00:15.138] [Render thread/WARN] [net.minecraft.client.sounds.SoundEngine/]: Missing sound for event: minecraft:item.goat_horn.play |
||||||
|
[12Jul2022 22:00:15.138] [Render thread/WARN] [net.minecraft.client.sounds.SoundEngine/]: Missing sound for event: minecraft:entity.goat.screaming.horn_break |
||||||
|
[12Jul2022 22:00:29.098] [Server thread/INFO] [net.minecraftforge.common.AdvancementLoadFix/]: Using new advancement loading for net.minecraft.server.PlayerAdvancements@988a379 |
||||||
|
[12Jul2022 22:00:29.108] [Server thread/INFO] [net.minecraft.server.players.PlayerList/]: Dev[/127.0.0.1:34976] logged in with entity id 171 at (21.5, 96.0, -24.5) |
||||||
|
[12Jul2022 22:00:29.142] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Dev joined the game |
||||||
|
[12Jul2022 22:01:34.084] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Unknown or incomplete command, see below for error |
||||||
|
[12Jul2022 22:01:34.084] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: op<--[HERE] |
||||||
|
[12Jul2022 22:01:41.700] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Made Dev a server operator |
||||||
|
[12Jul2022 22:01:49.515] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: [Dev: Set own game mode to Creative Mode] |
||||||
|
[12Jul2022 22:02:21.183] [Server thread/INFO] [net.minecraft.server.network.ServerGamePacketListenerImpl/]: Dev lost connection: Disconnected |
||||||
|
[12Jul2022 22:02:21.183] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Dev left the game |
||||||
|
[12Jul2022 22:02:27.373] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Stopping server |
||||||
|
[12Jul2022 22:02:27.374] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Saving players |
||||||
|
[12Jul2022 22:02:27.374] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Saving worlds |
||||||
|
[12Jul2022 22:02:28.520] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Saving chunks for level 'ServerLevel[world]'/minecraft:overworld |
||||||
|
[12Jul2022 22:02:30.263] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Saving chunks for level 'ServerLevel[world]'/minecraft:the_end |
||||||
|
[12Jul2022 22:02:30.264] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Saving chunks for level 'ServerLevel[world]'/minecraft:the_nether |
||||||
|
[12Jul2022 22:02:30.276] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: ThreadedAnvilChunkStorage (world): All chunks are saved |
||||||
|
[12Jul2022 22:02:30.276] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: ThreadedAnvilChunkStorage (DIM1): All chunks are saved |
||||||
|
[12Jul2022 22:02:30.276] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: ThreadedAnvilChunkStorage (DIM-1): All chunks are saved |
||||||
|
[12Jul2022 22:02:30.276] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: ThreadedAnvilChunkStorage: All dimensions are saved |
||||||
|
etwork.NetworkHooks/]: Connected to a modded server. |
||||||
|
[12Jul2022 22:00:32.725] [Render thread/INFO] [net.minecraft.advancements.AdvancementList/]: Loaded 0 advancements |
||||||
|
[12Jul2022 22:01:22.066] [Render thread/INFO] [net.minecraft.client.gui.components.ChatComponent/]: [CHAT] Unknown or incomplete command, see below for error |
||||||
|
[12Jul2022 22:01:22.072] [Render thread/INFO] [net.minecraft.client.gui.components.ChatComponent/]: [CHAT] op<--[HERE] |
||||||
|
[12Jul2022 22:01:24.998] [Render thread/INFO] [net.minecraft.client.gui.components.ChatComponent/]: [CHAT] Unknown or incomplete command, see below for error |
||||||
|
[12Jul2022 22:01:24.998] [Render thread/INFO] [net.minecraft.client.gui.components.ChatComponent/]: [CHAT] op<--[HERE] |
||||||
|
[12Jul2022 22:01:41.732] [Render thread/INFO] [net.minecraft.client.gui.components.ChatComponent/]: [CHAT] [Server: Made Dev a server operator] |
||||||
|
[12Jul2022 22:01:49.530] [Render thread/INFO] [net.minecraft.client.gui.components.ChatComponent/]: [CHAT] Set own game mode to Creative Mode |
||||||
|
[12Jul2022 22:02:23.828] [Render thread/INFO] [net.minecraft.client.Minecraft/]: Stopping! |
@ -0,0 +1,8 @@ |
|||||||
|
[ |
||||||
|
{ |
||||||
|
"uuid": "380df991-f603-344c-a090-369bad2a924a", |
||||||
|
"name": "Dev", |
||||||
|
"level": 4, |
||||||
|
"bypassesPlayerLimit": false |
||||||
|
} |
||||||
|
] |
@ -0,0 +1,130 @@ |
|||||||
|
version:3105 |
||||||
|
autoJump:true |
||||||
|
autoSuggestions:true |
||||||
|
chatColors:true |
||||||
|
chatLinks:true |
||||||
|
chatLinksPrompt:true |
||||||
|
enableVsync:true |
||||||
|
entityShadows:true |
||||||
|
forceUnicodeFont:false |
||||||
|
discrete_mouse_scroll:false |
||||||
|
invertYMouse:false |
||||||
|
realmsNotifications:true |
||||||
|
reducedDebugInfo:false |
||||||
|
showSubtitles:false |
||||||
|
directionalAudio:false |
||||||
|
touchscreen:false |
||||||
|
fullscreen:false |
||||||
|
bobView:true |
||||||
|
toggleCrouch:false |
||||||
|
toggleSprint:false |
||||||
|
darkMojangStudiosBackground:false |
||||||
|
hideLightningFlashes:false |
||||||
|
mouseSensitivity:0.5 |
||||||
|
fov:0.0 |
||||||
|
screenEffectScale:1.0 |
||||||
|
fovEffectScale:1.0 |
||||||
|
darknessEffectScale:1.0 |
||||||
|
gamma:0.5 |
||||||
|
renderDistance:12 |
||||||
|
simulationDistance:12 |
||||||
|
entityDistanceScaling:1.0 |
||||||
|
guiScale:2 |
||||||
|
particles:0 |
||||||
|
maxFps:120 |
||||||
|
graphicsMode:1 |
||||||
|
ao:2 |
||||||
|
prioritizeChunkUpdates:0 |
||||||
|
biomeBlendRadius:2 |
||||||
|
renderClouds:"true" |
||||||
|
resourcePacks:[] |
||||||
|
incompatibleResourcePacks:[] |
||||||
|
lastServer:localhost |
||||||
|
lang:en_us |
||||||
|
soundDevice:"" |
||||||
|
chatVisibility:0 |
||||||
|
chatOpacity:1.0 |
||||||
|
chatLineSpacing:0.0 |
||||||
|
textBackgroundOpacity:0.5 |
||||||
|
backgroundForChatOnly:true |
||||||
|
hideServerAddress:false |
||||||
|
advancedItemTooltips:false |
||||||
|
pauseOnLostFocus:true |
||||||
|
overrideWidth:0 |
||||||
|
overrideHeight:0 |
||||||
|
heldItemTooltips:true |
||||||
|
chatHeightFocused:1.0 |
||||||
|
chatDelay:0.0 |
||||||
|
chatHeightUnfocused:0.4375 |
||||||
|
chatScale:1.0 |
||||||
|
chatWidth:1.0 |
||||||
|
mipmapLevels:4 |
||||||
|
useNativeTransport:true |
||||||
|
mainHand:"right" |
||||||
|
attackIndicator:1 |
||||||
|
narrator:0 |
||||||
|
tutorialStep:none |
||||||
|
mouseWheelSensitivity:1.0 |
||||||
|
rawMouseInput:true |
||||||
|
glDebugVerbosity:1 |
||||||
|
skipMultiplayerWarning:true |
||||||
|
skipRealms32bitWarning:false |
||||||
|
hideMatchedNames:true |
||||||
|
joinedFirstServer:true |
||||||
|
hideBundleTutorial:false |
||||||
|
syncChunkWrites:false |
||||||
|
showAutosaveIndicator:true |
||||||
|
allowServerListing:true |
||||||
|
chatPreview:true |
||||||
|
onlyShowSecureChat:false |
||||||
|
key_key.attack:key.mouse.left |
||||||
|
key_key.use:key.mouse.right |
||||||
|
key_key.forward:key.keyboard.w |
||||||
|
key_key.left:key.keyboard.a |
||||||
|
key_key.back:key.keyboard.s |
||||||
|
key_key.right:key.keyboard.d |
||||||
|
key_key.jump:key.keyboard.space |
||||||
|
key_key.sneak:key.keyboard.left.shift |
||||||
|
key_key.sprint:key.keyboard.left.control |
||||||
|
key_key.drop:key.keyboard.q |
||||||
|
key_key.inventory:key.keyboard.e |
||||||
|
key_key.chat:key.keyboard.t |
||||||
|
key_key.playerlist:key.keyboard.tab |
||||||
|
key_key.pickItem:key.mouse.middle |
||||||
|
key_key.command:key.keyboard.slash |
||||||
|
key_key.socialInteractions:key.keyboard.p |
||||||
|
key_key.screenshot:key.keyboard.f2 |
||||||
|
key_key.togglePerspective:key.keyboard.f5 |
||||||
|
key_key.smoothCamera:key.keyboard.unknown |
||||||
|
key_key.fullscreen:key.keyboard.f11 |
||||||
|
key_key.spectatorOutlines:key.keyboard.unknown |
||||||
|
key_key.swapOffhand:key.keyboard.f |
||||||
|
key_key.saveToolbarActivator:key.keyboard.c |
||||||
|
key_key.loadToolbarActivator:key.keyboard.x |
||||||
|
key_key.advancements:key.keyboard.l |
||||||
|
key_key.hotbar.1:key.keyboard.1 |
||||||
|
key_key.hotbar.2:key.keyboard.2 |
||||||
|
key_key.hotbar.3:key.keyboard.3 |
||||||
|
key_key.hotbar.4:key.keyboard.4 |
||||||
|
key_key.hotbar.5:key.keyboard.5 |
||||||
|
key_key.hotbar.6:key.keyboard.6 |
||||||
|
key_key.hotbar.7:key.keyboard.7 |
||||||
|
key_key.hotbar.8:key.keyboard.8 |
||||||
|
key_key.hotbar.9:key.keyboard.9 |
||||||
|
soundCategory_master:0.59933776 |
||||||
|
soundCategory_music:1.0 |
||||||
|
soundCategory_record:1.0 |
||||||
|
soundCategory_weather:1.0 |
||||||
|
soundCategory_block:1.0 |
||||||
|
soundCategory_hostile:1.0 |
||||||
|
soundCategory_neutral:1.0 |
||||||
|
soundCategory_player:1.0 |
||||||
|
soundCategory_ambient:1.0 |
||||||
|
soundCategory_voice:1.0 |
||||||
|
modelPart_cape:true |
||||||
|
modelPart_jacket:true |
||||||
|
modelPart_left_sleeve:true |
||||||
|
modelPart_right_sleeve:true |
||||||
|
modelPart_left_pants_leg:true |
||||||
|
modelPart_right_pants_leg:true |
||||||
|
modelPart_hat:true |
@ -0,0 +1,57 @@ |
|||||||
|
#Minecraft server properties |
||||||
|
#Tue Jul 12 21:59:51 CDT 2022 |
||||||
|
allow-flight=false |
||||||
|
allow-nether=true |
||||||
|
broadcast-console-to-ops=true |
||||||
|
broadcast-rcon-to-ops=true |
||||||
|
difficulty=easy |
||||||
|
enable-command-block=false |
||||||
|
enable-jmx-monitoring=false |
||||||
|
enable-query=false |
||||||
|
enable-rcon=false |
||||||
|
enable-status=true |
||||||
|
enforce-secure-profile=false |
||||||
|
enforce-whitelist=false |
||||||
|
entity-broadcast-range-percentage=100 |
||||||
|
force-gamemode=false |
||||||
|
function-permission-level=2 |
||||||
|
gamemode=survival |
||||||
|
generate-structures=true |
||||||
|
generator-settings={} |
||||||
|
hardcore=false |
||||||
|
hide-online-players=false |
||||||
|
level-name=world |
||||||
|
level-seed= |
||||||
|
level-type=minecraft\:normal |
||||||
|
max-chained-neighbor-updates=1000000 |
||||||
|
max-players=20 |
||||||
|
max-tick-time=60000 |
||||||
|
max-world-size=29999984 |
||||||
|
motd=A Minecraft Server |
||||||
|
network-compression-threshold=256 |
||||||
|
online-mode=false |
||||||
|
op-permission-level=4 |
||||||
|
player-idle-timeout=0 |
||||||
|
prevent-proxy-connections=false |
||||||
|
previews-chat=false |
||||||
|
pvp=true |
||||||
|
query.port=25565 |
||||||
|
rate-limit=0 |
||||||
|
rcon.password= |
||||||
|
rcon.port=25575 |
||||||
|
require-resource-pack=false |
||||||
|
resource-pack= |
||||||
|
resource-pack-prompt= |
||||||
|
resource-pack-sha1= |
||||||
|
server-ip= |
||||||
|
server-port=25565 |
||||||
|
simulation-distance=10 |
||||||
|
spawn-animals=true |
||||||
|
spawn-monsters=true |
||||||
|
spawn-npcs=true |
||||||
|
spawn-protection=16 |
||||||
|
sync-chunk-writes=true |
||||||
|
text-filtering-config= |
||||||
|
use-native-transport=true |
||||||
|
view-distance=10 |
||||||
|
white-list=false |
Binary file not shown.
Binary file not shown.
@ -0,0 +1 @@ |
|||||||
|
[{"name":"Dev","uuid":"380df991-f603-344c-a090-369bad2a924a","expiresOn":"2022-08-12 22:00:29 -0500"}] |
@ -0,0 +1,3 @@ |
|||||||
|
{ |
||||||
|
"380df991-f603-344c-a090-369bad2a924a": "Dev" |
||||||
|
} |
@ -0,0 +1 @@ |
|||||||
|
[] |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -0,0 +1,9 @@ |
|||||||
|
{ |
||||||
|
"minecraft:adventure/adventuring_time": { |
||||||
|
"criteria": { |
||||||
|
"minecraft:forest": "2022-07-12 22:00:29 -0500" |
||||||
|
}, |
||||||
|
"done": false |
||||||
|
}, |
||||||
|
"DataVersion": 3105 |
||||||
|
} |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -0,0 +1,20 @@ |
|||||||
|
|
||||||
|
#Server configuration settings |
||||||
|
[server] |
||||||
|
#Set this to true to remove any BlockEntity that throws an error in its update method instead of closing the server and reporting a crash log. BE WARNED THIS COULD SCREW UP EVERYTHING USE SPARINGLY WE ARE NOT RESPONSIBLE FOR DAMAGES. |
||||||
|
removeErroringBlockEntities = false |
||||||
|
#Set this to true to remove any Entity (Note: Does not include BlockEntities) that throws an error in its tick method instead of closing the server and reporting a crash log. BE WARNED THIS COULD SCREW UP EVERYTHING USE SPARINGLY WE ARE NOT RESPONSIBLE FOR DAMAGES. |
||||||
|
removeErroringEntities = false |
||||||
|
#Set this to true to check the entire entity's collision bounding box for ladders instead of just the block they are in. Causes noticeable differences in mechanics so default is vanilla behavior. Default: false. |
||||||
|
fullBoundingBoxLadders = false |
||||||
|
#Base zombie summoning spawn chance. Allows changing the bonus zombie summoning mechanic. |
||||||
|
#Range: 0.0 ~ 1.0 |
||||||
|
zombieBaseSummonChance = 0.1 |
||||||
|
#Chance that a zombie (or subclass) is a baby. Allows changing the zombie spawning mechanic. |
||||||
|
#Range: 0.0 ~ 1.0 |
||||||
|
zombieBabyChance = 0.05 |
||||||
|
#Fix advancement loading to use a proper topological sort. This may have visibility side-effects and can thus be turned off if needed for data-pack compatibility. |
||||||
|
fixAdvancementLoading = true |
||||||
|
#The permission handler used by the server. Defaults to forge:default_handler if no such handler with that name is registered. |
||||||
|
permissionHandler = "forge:default_handler" |
||||||
|
|
@ -0,0 +1 @@ |
|||||||
|
☃ |
@ -0,0 +1 @@ |
|||||||
|
{"stats":{"minecraft:used":{"examplemod:example_block":6},"minecraft:custom":{"minecraft:jump":2,"minecraft:time_since_rest":2242,"minecraft:crouch_one_cm":24,"minecraft:leave_game":1,"minecraft:play_time":2242,"minecraft:time_since_death":2242,"minecraft:walk_one_cm":3555,"minecraft:sneak_time":12,"minecraft:total_world_time":2242,"minecraft:fly_one_cm":121}},"DataVersion":3105} |
Loading…
Reference in new issue