some stuff
This commit is contained in:
150
run-data/config/createaddition-common.toml
Normal file
150
run-data/config/createaddition-common.toml
Normal file
@@ -0,0 +1,150 @@
|
||||
|
||||
#Wires
|
||||
[wires]
|
||||
#Small Connector max output in FE/t (Energy transfer).
|
||||
#Range: > 0
|
||||
small_connector_max_output = 1000
|
||||
#Small Connector max input in FE/t (Energy transfer).
|
||||
#Range: > 0
|
||||
small_connector_max_input = 1000
|
||||
#Small Connector With Light energy consumption in FE/t.
|
||||
#Range: > 0
|
||||
small_light_connector_consumption = 1
|
||||
#Large Connector max wire length in blocks.
|
||||
#Range: 0 ~ 256
|
||||
large_connector_wire_length = 32
|
||||
#Small Connector max wire length in blocks.
|
||||
#Range: 0 ~ 256
|
||||
small_connector_wire_length = 16
|
||||
#Large Connector max input in FE/t (Energy transfer).
|
||||
#Range: > 0
|
||||
large_connector_max_input = 5000
|
||||
#Allows blocks attached to a connector to freely pass energy to and from the connector network.
|
||||
connector_allow_passive_io = true
|
||||
#Large Connector max output in FE/t (Energy transfer).
|
||||
#Range: > 0
|
||||
large_connector_max_output = 5000
|
||||
#Ignore checking if block face can support connector.
|
||||
connector_ignore_face_check = true
|
||||
|
||||
#Make sure config changes are duplicated on both Clients and the Server when running a dedicated Server,
|
||||
# as the config isnt synced between Clients and Server.
|
||||
#General Settings
|
||||
[general]
|
||||
#Max stress for the Alternator and Electric Motor (in SU at 256 RPM).
|
||||
#Range: > 0
|
||||
max_stress = 16384
|
||||
#Forge Energy conversion rate (in FE/t at 256 RPM, value is the FE/t generated and consumed is at 256rpm).
|
||||
#Range: > 0
|
||||
fe_at_max_rpm = 480
|
||||
#If audio should be enabled or not.
|
||||
audio_enabled = true
|
||||
|
||||
#Portable Energy Interface
|
||||
[portable_energy_interface]
|
||||
#PEI max output in FE/t (Energy transfer).
|
||||
#Range: > 0
|
||||
pei_max_output = 5000
|
||||
#PEI max input in FE/t (Energy transfer).
|
||||
#Range: > 0
|
||||
pei_max_input = 5000
|
||||
|
||||
#Electric Motor
|
||||
[electric_motor]
|
||||
#Electric Motor internal capacity in FE.
|
||||
#Range: > 0
|
||||
motor_capacity = 5000
|
||||
#Electric Motor minimum required energy consumption in FE/t.
|
||||
#Range: > 0
|
||||
motor_min_consumption = 8
|
||||
#Electric Motor max input in FE (Energy transfer not consumption).
|
||||
#Range: > 0
|
||||
motor_max_input = 5000
|
||||
#Electric Motor min/max RPM.
|
||||
#Range: > 1
|
||||
motor_rpm_range = 256
|
||||
|
||||
#Tesla Coil
|
||||
[tesla_coil]
|
||||
#Tesla Coil charge rate in FE/t.
|
||||
#Range: > 0
|
||||
tesla_coil_charge_rate = 5000
|
||||
#Tesla Coil fire interval (in ticks).
|
||||
#Range: > 0
|
||||
tesla_coil_fire_cooldown = 20
|
||||
#Hurt range (in blocks/meters).
|
||||
#Range: > 0
|
||||
tesla_coil_hurt_range = 3
|
||||
#Tesla Coil internal capacity in FE.
|
||||
#Range: > 0
|
||||
tesla_coil_capacity = 40000
|
||||
#Energy consumed when Tesla Coil is fired (in FE).
|
||||
#Range: > 0
|
||||
tesla_coil_hurt_energy_required = 1000
|
||||
#The duration of the Shocked effect for mobs (in ticks).
|
||||
#Range: > 0
|
||||
tesla_coil_effect_time_mob = 20
|
||||
#The duration of the Shocked effect for players (in ticks).
|
||||
#Range: > 0
|
||||
tesla_coil_effect_time_player = 20
|
||||
#Tesla Coil max input in FE/t (Energy transfer).
|
||||
#Range: > 0
|
||||
tesla_coil_max_input = 10000
|
||||
#Tesla Coil charge rate in FE/t for recipes.
|
||||
#Range: > 0
|
||||
tesla_coil_recipe_charge_rate = 2000
|
||||
#Damaged dealt to mobs when Tesla Coil is fired (in half hearts).
|
||||
#Range: > 0
|
||||
tesla_coil_hurt_mob = 3
|
||||
#Damaged dealt to players when Tesla Coil is fired (in half hearts).
|
||||
#Range: > 0
|
||||
tesla_coil_hurt_player = 2
|
||||
|
||||
#Alternator
|
||||
[alternator]
|
||||
#Alternator efficiency relative to base conversion rate.
|
||||
#Range: 0.01 ~ 1.0
|
||||
generator_efficiency = 0.75
|
||||
#Alternator internal capacity in FE.
|
||||
#Range: > 0
|
||||
generator_capacity = 5000
|
||||
#Alternator max input in FE (Energy transfer, not generation).
|
||||
#Range: > 0
|
||||
generator_max_output = 5000
|
||||
|
||||
#Accumulator
|
||||
[accumulator]
|
||||
#Accumulator internal capacity per block in FE.
|
||||
#Range: > 0
|
||||
accumulator_capacity = 2000000
|
||||
#Accumulator max output in FE/t (Energy transfer).
|
||||
#Range: > 0
|
||||
accumulator_max_output = 5000
|
||||
#Accumulator max input in FE/t (Energy transfer).
|
||||
#Range: > 0
|
||||
accumulator_max_input = 5000
|
||||
#Accumulator max multiblock height.
|
||||
#Range: 1 ~ 8
|
||||
accumulator_max_height = 5
|
||||
#Accumulator max multiblock width.
|
||||
#Range: 1 ~ 8
|
||||
accumulator_max_width = 3
|
||||
|
||||
#Rolling Mill
|
||||
[rolling_mill]
|
||||
#Rolling Mill duration in ticks.
|
||||
#Range: > 0
|
||||
rolling_mill_processing_duration = 120
|
||||
#Rolling Mill base stress impact.
|
||||
#Range: 0 ~ 1024
|
||||
rolling_mill_stress = 8
|
||||
|
||||
#Misc
|
||||
[misc]
|
||||
#Diamond Grit Sandpaper durability (number of uses).
|
||||
#Range: > 3
|
||||
diamond_grit_sandpaper_uses = 1024
|
||||
#Barbed Wire Damage.
|
||||
#Range: 0.0 ~ 3.4028234663852886E38
|
||||
barbed_wire_damage = 2.0
|
||||
|
||||
Binary file not shown.
BIN
run-data/logs/2025-01-12-10.log.gz
Normal file
BIN
run-data/logs/2025-01-12-10.log.gz
Normal file
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.
BIN
run-data/logs/2025-01-12-9.log.gz
Normal file
BIN
run-data/logs/2025-01-12-9.log.gz
Normal file
Binary file not shown.
BIN
run-data/logs/2025-01-13-2.log.gz
Normal file
BIN
run-data/logs/2025-01-13-2.log.gz
Normal file
Binary file not shown.
BIN
run-data/logs/2025-01-14-2.log.gz
Normal file
BIN
run-data/logs/2025-01-14-2.log.gz
Normal file
Binary file not shown.
BIN
run-data/logs/2025-01-14-3.log.gz
Normal file
BIN
run-data/logs/2025-01-14-3.log.gz
Normal file
Binary file not shown.
BIN
run-data/logs/2025-01-14-4.log.gz
Normal file
BIN
run-data/logs/2025-01-14-4.log.gz
Normal file
Binary file not shown.
BIN
run-data/logs/2025-01-14-5.log.gz
Normal file
BIN
run-data/logs/2025-01-14-5.log.gz
Normal file
Binary file not shown.
BIN
run-data/logs/2025-01-15-2.log.gz
Normal file
BIN
run-data/logs/2025-01-15-2.log.gz
Normal file
Binary file not shown.
BIN
run-data/logs/2025-01-15-3.log.gz
Normal file
BIN
run-data/logs/2025-01-15-3.log.gz
Normal file
Binary file not shown.
BIN
run-data/logs/2025-01-18-2.log.gz
Normal file
BIN
run-data/logs/2025-01-18-2.log.gz
Normal file
Binary file not shown.
BIN
run-data/logs/2025-01-19-2.log.gz
Normal file
BIN
run-data/logs/2025-01-19-2.log.gz
Normal file
Binary file not shown.
BIN
run-data/logs/2025-01-19-3.log.gz
Normal file
BIN
run-data/logs/2025-01-19-3.log.gz
Normal file
Binary file not shown.
BIN
run-data/logs/2025-01-19-4.log.gz
Normal file
BIN
run-data/logs/2025-01-19-4.log.gz
Normal file
Binary file not shown.
BIN
run-data/logs/2025-01-19-5.log.gz
Normal file
BIN
run-data/logs/2025-01-19-5.log.gz
Normal file
Binary file not shown.
BIN
run-data/logs/2025-01-19-6.log.gz
Normal file
BIN
run-data/logs/2025-01-19-6.log.gz
Normal file
Binary file not shown.
BIN
run-data/logs/2025-01-19-7.log.gz
Normal file
BIN
run-data/logs/2025-01-19-7.log.gz
Normal file
Binary file not shown.
BIN
run-data/logs/2025-01-19-8.log.gz
Normal file
BIN
run-data/logs/2025-01-19-8.log.gz
Normal file
Binary file not shown.
BIN
run-data/logs/2025-01-20-2.log.gz
Normal file
BIN
run-data/logs/2025-01-20-2.log.gz
Normal file
Binary file not shown.
BIN
run-data/logs/2025-01-20-3.log.gz
Normal file
BIN
run-data/logs/2025-01-20-3.log.gz
Normal file
Binary file not shown.
BIN
run-data/logs/2025-01-20-4.log.gz
Normal file
BIN
run-data/logs/2025-01-20-4.log.gz
Normal file
Binary file not shown.
BIN
run-data/logs/2025-01-23-2.log.gz
Normal file
BIN
run-data/logs/2025-01-23-2.log.gz
Normal file
Binary file not shown.
BIN
run-data/logs/2025-01-23-3.log.gz
Normal file
BIN
run-data/logs/2025-01-23-3.log.gz
Normal file
Binary file not shown.
BIN
run-data/logs/2025-01-23-4.log.gz
Normal file
BIN
run-data/logs/2025-01-23-4.log.gz
Normal file
Binary file not shown.
BIN
run-data/logs/2025-01-27-2.log.gz
Normal file
BIN
run-data/logs/2025-01-27-2.log.gz
Normal file
Binary file not shown.
BIN
run-data/logs/2025-01-28-2.log.gz
Normal file
BIN
run-data/logs/2025-01-28-2.log.gz
Normal file
Binary file not shown.
BIN
run-data/logs/2025-01-28-3.log.gz
Normal file
BIN
run-data/logs/2025-01-28-3.log.gz
Normal file
Binary file not shown.
BIN
run-data/logs/2025-01-28-4.log.gz
Normal file
BIN
run-data/logs/2025-01-28-4.log.gz
Normal file
Binary file not shown.
BIN
run-data/logs/2025-01-28-5.log.gz
Normal file
BIN
run-data/logs/2025-01-28-5.log.gz
Normal file
Binary file not shown.
BIN
run-data/logs/2025-01-28-6.log.gz
Normal file
BIN
run-data/logs/2025-01-28-6.log.gz
Normal file
Binary file not shown.
BIN
run-data/logs/2025-01-29-10.log.gz
Normal file
BIN
run-data/logs/2025-01-29-10.log.gz
Normal file
Binary file not shown.
BIN
run-data/logs/2025-01-29-11.log.gz
Normal file
BIN
run-data/logs/2025-01-29-11.log.gz
Normal file
Binary file not shown.
BIN
run-data/logs/2025-01-29-12.log.gz
Normal file
BIN
run-data/logs/2025-01-29-12.log.gz
Normal file
Binary file not shown.
BIN
run-data/logs/2025-01-29-13.log.gz
Normal file
BIN
run-data/logs/2025-01-29-13.log.gz
Normal file
Binary file not shown.
BIN
run-data/logs/2025-01-29-14.log.gz
Normal file
BIN
run-data/logs/2025-01-29-14.log.gz
Normal file
Binary file not shown.
BIN
run-data/logs/2025-01-29-15.log.gz
Normal file
BIN
run-data/logs/2025-01-29-15.log.gz
Normal file
Binary file not shown.
BIN
run-data/logs/2025-01-29-2.log.gz
Normal file
BIN
run-data/logs/2025-01-29-2.log.gz
Normal file
Binary file not shown.
BIN
run-data/logs/2025-01-29-3.log.gz
Normal file
BIN
run-data/logs/2025-01-29-3.log.gz
Normal file
Binary file not shown.
BIN
run-data/logs/2025-01-29-4.log.gz
Normal file
BIN
run-data/logs/2025-01-29-4.log.gz
Normal file
Binary file not shown.
BIN
run-data/logs/2025-01-29-5.log.gz
Normal file
BIN
run-data/logs/2025-01-29-5.log.gz
Normal file
Binary file not shown.
BIN
run-data/logs/2025-01-29-6.log.gz
Normal file
BIN
run-data/logs/2025-01-29-6.log.gz
Normal file
Binary file not shown.
BIN
run-data/logs/2025-01-29-7.log.gz
Normal file
BIN
run-data/logs/2025-01-29-7.log.gz
Normal file
Binary file not shown.
BIN
run-data/logs/2025-01-29-8.log.gz
Normal file
BIN
run-data/logs/2025-01-29-8.log.gz
Normal file
Binary file not shown.
BIN
run-data/logs/2025-01-29-9.log.gz
Normal file
BIN
run-data/logs/2025-01-29-9.log.gz
Normal file
Binary file not shown.
BIN
run-data/logs/2025-01-30-2.log.gz
Normal file
BIN
run-data/logs/2025-01-30-2.log.gz
Normal file
Binary file not shown.
BIN
run-data/logs/2025-01-30-3.log.gz
Normal file
BIN
run-data/logs/2025-01-30-3.log.gz
Normal file
Binary file not shown.
BIN
run-data/logs/2025-01-30-4.log.gz
Normal file
BIN
run-data/logs/2025-01-30-4.log.gz
Normal file
Binary file not shown.
BIN
run-data/logs/2025-01-31-1.log.gz
Normal file
BIN
run-data/logs/2025-01-31-1.log.gz
Normal file
Binary file not shown.
BIN
run-data/logs/2025-01-31-2.log.gz
Normal file
BIN
run-data/logs/2025-01-31-2.log.gz
Normal file
Binary file not shown.
BIN
run-data/logs/2025-01-31-3.log.gz
Normal file
BIN
run-data/logs/2025-01-31-3.log.gz
Normal file
Binary file not shown.
BIN
run-data/logs/2025-01-31-4.log.gz
Normal file
BIN
run-data/logs/2025-01-31-4.log.gz
Normal file
Binary file not shown.
BIN
run-data/logs/2025-01-31-5.log.gz
Normal file
BIN
run-data/logs/2025-01-31-5.log.gz
Normal file
Binary file not shown.
BIN
run-data/logs/2025-01-31-6.log.gz
Normal file
BIN
run-data/logs/2025-01-31-6.log.gz
Normal file
Binary file not shown.
BIN
run-data/logs/2025-01-31-7.log.gz
Normal file
BIN
run-data/logs/2025-01-31-7.log.gz
Normal file
Binary file not shown.
BIN
run-data/logs/2025-01-31-8.log.gz
Normal file
BIN
run-data/logs/2025-01-31-8.log.gz
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
17011
run-data/logs/debug.log
17011
run-data/logs/debug.log
File diff suppressed because it is too large
Load Diff
@@ -1,58 +1,60 @@
|
||||
[12Jan2025 21:50:02.685] [main/INFO] [cpw.mods.modlauncher.Launcher/MODLAUNCHER]: ModLauncher running: args [--launchTarget, forgedatauserdev, --assetIndex, 5, --assetsDir, C:\Users\adamn\.gradle\caches\forge_gradle\assets, --gameDir, ., --fml.forgeVersion, 47.3.10, --fml.mcVersion, 1.20.1, --fml.forgeGroup, net.minecraftforge, --fml.mcpVersion, 20230612.114412, --mod, tfmg, --all, --output, C:\Users\adamn\Documents\minecraft\mods\Create-The_Factory_Must_Grow\src\generated\resources, --existing, C:\Users\adamn\Documents\minecraft\mods\Create-The_Factory_Must_Grow\src\main\resources, --mixin.config, tfmg.mixins.json]
|
||||
[12Jan2025 21:50:02.693] [main/INFO] [cpw.mods.modlauncher.Launcher/MODLAUNCHER]: ModLauncher 10.0.9+10.0.9+main.dcd20f30 starting: java version 17.0.13 by Amazon.com Inc.; OS Windows 11 arch amd64 version 10.0
|
||||
[12Jan2025 21:50:02.894] [main/INFO] [net.minecraftforge.fml.loading.ImmediateWindowHandler/]: ImmediateWindowProvider not loading because launch target is forgedatauserdev
|
||||
[12Jan2025 21:50:02.974] [main/INFO] [mixin/]: SpongePowered MIXIN Subsystem Version=0.8.5 Source=union:/C:/Users/adamn/.gradle/caches/modules-2/files-2.1/org.spongepowered/mixin/0.8.5/9d1c0c3a304ae6697ecd477218fa61b850bf57fc/mixin-0.8.5.jar%23128!/ Service=ModLauncher Env=CLIENT
|
||||
[12Jan2025 21:50:03.445] [main/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Mod file C:\Users\adamn\.gradle\caches\modules-2\files-2.1\net.minecraftforge\javafmllanguage\1.20.1-47.3.10\7a15037366722893d76a3d0b2e9d1fd13a63a22d\javafmllanguage-1.20.1-47.3.10.jar is missing mods.toml file
|
||||
[12Jan2025 21:50:03.448] [main/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Mod file C:\Users\adamn\.gradle\caches\modules-2\files-2.1\net.minecraftforge\lowcodelanguage\1.20.1-47.3.10\e67d9b3451d64ccc812cbbd33c066bd3ebbf2167\lowcodelanguage-1.20.1-47.3.10.jar is missing mods.toml file
|
||||
[12Jan2025 21:50:03.451] [main/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Mod file C:\Users\adamn\.gradle\caches\modules-2\files-2.1\net.minecraftforge\mclanguage\1.20.1-47.3.10\2023f9726a509c5ba5a925cac934944066093de8\mclanguage-1.20.1-47.3.10.jar is missing mods.toml file
|
||||
[12Jan2025 21:50:03.454] [main/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Mod file C:\Users\adamn\.gradle\caches\modules-2\files-2.1\net.minecraftforge\fmlcore\1.20.1-47.3.10\523aa0cd9a773b2b56268d8689b2fb5c1f072941\fmlcore-1.20.1-47.3.10.jar is missing mods.toml file
|
||||
[12Jan2025 21:50:03.609] [main/INFO] [net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator/]: No dependencies to load found. Skipping!
|
||||
[12Jan2025 21:50:06.915] [main/INFO] [mixin/]: Compatibility level set to JAVA_17
|
||||
[12Jan2025 21:50:06.930] [main/INFO] [cpw.mods.modlauncher.LaunchServiceHandler/MODLAUNCHER]: Launching target 'forgedatauserdev' with arguments [--gameDir, ., --assetsDir, C:\Users\adamn\.gradle\caches\forge_gradle\assets, --assetIndex, 5, --mod, tfmg, --all, --output, C:\Users\adamn\Documents\minecraft\mods\Create-The_Factory_Must_Grow\src\generated\resources, --existing, C:\Users\adamn\Documents\minecraft\mods\Create-The_Factory_Must_Grow\src\main\resources]
|
||||
[12Jan2025 21:50:07.037] [main/WARN] [mixin/]: Reference map 'Create-The_Factory_Must_Grow.refmap.json' for tfmg.mixins.json could not be read. If this is a development environment you can ignore this message
|
||||
[12Jan2025 21:50:07.318] [main/INFO] [mixin/]: Remapping refMap flywheel.refmap.json using C:\Users\adamn\Documents\minecraft\mods\Create-The_Factory_Must_Grow\build\createSrgToMcp\output.srg
|
||||
[12Jan2025 21:50:07.331] [main/INFO] [mixin/]: Remapping refMap flywheel.refmap.json using C:\Users\adamn\Documents\minecraft\mods\Create-The_Factory_Must_Grow\build\createSrgToMcp\output.srg
|
||||
[12Jan2025 21:50:07.334] [main/INFO] [mixin/]: Remapping refMap create.refmap.json using C:\Users\adamn\Documents\minecraft\mods\Create-The_Factory_Must_Grow\build\createSrgToMcp\output.srg
|
||||
[12Jan2025 21:50:08.404] [main/INFO] [net.minecraftforge.data.loading.DatagenModLoader/]: Initializing Data Gatherer for mods [tfmg]
|
||||
[12Jan2025 21:50:14.358] [modloading-worker-0/INFO] [net.minecraftforge.common.ForgeMod/FORGEMOD]: Forge mod loading, version 47.3.10, for MC 1.20.1 with MCP 20230612.114412
|
||||
[12Jan2025 21:50:14.360] [modloading-worker-0/INFO] [net.minecraftforge.common.MinecraftForge/FORGE]: MinecraftForge v47.3.10 Initialized
|
||||
[12Jan2025 21:50:14.691] [modloading-worker-0/INFO] [com.jozufozu.flywheel.backend.Backend/]: No shaders mod detected.
|
||||
[12Jan2025 21:50:15.114] [modloading-worker-0/INFO] [mezz.jei.library.load.PluginCaller/]: Sending ConfigManager...
|
||||
[12Jan2025 21:50:15.128] [modloading-worker-0/INFO] [mezz.jei.library.load.PluginCaller/]: Sending ConfigManager took 8.160 ms
|
||||
[12Jan2025 21:50:18.343] [main/WARN] [net.minecraft.network.syncher.SynchedEntityData/]: defineId called for: class net.minecraft.world.entity.item.PrimedTnt from class com.drmangotea.tfmg.content.items.weapons.explosives.napalm.NapalmBombEntity
|
||||
[12Jan2025 21:50:18.656] [main/WARN] [net.minecraft.server.packs.VanillaPackResourcesBuilder/]: Assets URL 'union:/C:/Users/adamn/.gradle/caches/forge_gradle/minecraft_user_repo/net/minecraftforge/forge/1.20.1-47.3.10_mapped_official_1.20.1/forge-1.20.1-47.3.10_mapped_official_1.20.1-recomp.jar%23191!/assets/.mcassetsroot' uses unexpected schema
|
||||
[12Jan2025 21:50:18.657] [main/WARN] [net.minecraft.server.packs.VanillaPackResourcesBuilder/]: Assets URL 'union:/C:/Users/adamn/.gradle/caches/forge_gradle/minecraft_user_repo/net/minecraftforge/forge/1.20.1-47.3.10_mapped_official_1.20.1/forge-1.20.1-47.3.10_mapped_official_1.20.1-recomp.jar%23191!/data/.mcassetsroot' uses unexpected schema
|
||||
[12Jan2025 21:50:19.090] [main/INFO] [net.minecraft.data.DataGenerator/]: Starting provider: Registrate Provider for tfmg [Recipes, Advancements, Loot Tables, Tags (blocks), Tags (items), Tags (fluids), Tags (entity_types), Blockstates, Item models, Lang (en_us/en_ud)]
|
||||
[12Jan2025 21:50:20.487] [main/INFO] [net.minecraft.data.DataGenerator/]: Registrate Provider for tfmg [Recipes, Advancements, Loot Tables, Tags (blocks), Tags (items), Tags (fluids), Tags (entity_types), Blockstates, Item models, Lang (en_us/en_ud)] finished after 1396 ms
|
||||
[12Jan2025 21:50:20.487] [main/INFO] [net.minecraft.data.DataGenerator/]: Starting provider: TFMG's Generated Registry Entries
|
||||
[12Jan2025 21:50:20.531] [main/INFO] [net.minecraft.data.DataGenerator/]: TFMG's Generated Registry Entries finished after 43 ms
|
||||
[12Jan2025 21:50:20.531] [main/INFO] [net.minecraft.data.DataGenerator/]: Starting provider: TFMG'S Industrial Blasting Recipes
|
||||
[12Jan2025 21:50:20.534] [main/WARN] [com.simibubi.create.Create/]: Your custom tfmg:industrial_blasting recipe (tfmg:steel) specified a duration. Durations have no impact on this type of recipe.
|
||||
[12Jan2025 21:50:20.536] [main/WARN] [com.simibubi.create.Create/]: Your custom tfmg:industrial_blasting recipe (tfmg:steel_from_raw_iron) has more item inputs (3) than supported (2).
|
||||
[12Jan2025 21:50:20.536] [main/WARN] [com.simibubi.create.Create/]: Your custom tfmg:industrial_blasting recipe (tfmg:steel_from_raw_iron) specified a duration. Durations have no impact on this type of recipe.
|
||||
[12Jan2025 21:50:20.537] [main/WARN] [com.simibubi.create.Create/]: Your custom tfmg:industrial_blasting recipe (tfmg:steel_from_dust) specified a duration. Durations have no impact on this type of recipe.
|
||||
[12Jan2025 21:50:20.537] [main/INFO] [com.drmangotea.tfmg.TFMG/]: TFMG'S Industrial Blasting Recipes registered 3 recipes
|
||||
[12Jan2025 21:50:20.537] [main/INFO] [net.minecraft.data.DataGenerator/]: TFMG'S Industrial Blasting Recipes finished after 5 ms
|
||||
[12Jan2025 21:50:20.537] [main/INFO] [net.minecraft.data.DataGenerator/]: Starting provider: Recipes
|
||||
[12Jan2025 21:50:20.538] [main/WARN] [com.simibubi.create.Create/]: Your custom tfmg:casting recipe (tfmg:steel) specified a duration. Durations have no impact on this type of recipe.
|
||||
[12Jan2025 21:50:20.542] [main/INFO] [com.drmangotea.tfmg.TFMG/]: Recipes registered 1 recipe
|
||||
[12Jan2025 21:50:20.543] [main/INFO] [net.minecraft.data.DataGenerator/]: Recipes finished after 5 ms
|
||||
[12Jan2025 21:50:20.543] [main/INFO] [net.minecraft.data.DataGenerator/]: Starting provider: TFMG'S Vat Recipes
|
||||
[12Jan2025 21:50:20.544] [main/INFO] [com.drmangotea.tfmg.TFMG/]: TFMG'S Vat Recipes registered 3 recipes
|
||||
[12Jan2025 21:50:20.544] [main/INFO] [net.minecraft.data.DataGenerator/]: TFMG'S Vat Recipes finished after 1 ms
|
||||
[12Jan2025 21:50:20.544] [main/INFO] [net.minecraft.data.DataGenerator/]: Starting provider: TFMG'S Standard Recipes
|
||||
[12Jan2025 21:50:20.547] [main/INFO] [com.drmangotea.tfmg.TFMG/]: TFMG'S Standard Recipes registered 55 recipes
|
||||
[12Jan2025 21:50:20.548] [main/INFO] [net.minecraft.data.DataGenerator/]: TFMG'S Standard Recipes finished after 3 ms
|
||||
[12Jan2025 21:50:20.548] [main/INFO] [net.minecraft.data.DataGenerator/]: Starting provider: TFMG's Processing Recipes
|
||||
[12Jan2025 21:50:20.549] [main/INFO] [com.drmangotea.tfmg.TFMG/]: Recipes registered 0 recipes
|
||||
[12Jan2025 21:50:20.550] [main/WARN] [com.simibubi.create.Create/]: Your custom tfmg:coking recipe (tfmg:coal) specified a duration. Durations have no impact on this type of recipe.
|
||||
[12Jan2025 21:50:20.550] [main/WARN] [com.simibubi.create.Create/]: Your custom tfmg:coking recipe (tfmg:charcoal) specified a duration. Durations have no impact on this type of recipe.
|
||||
[12Jan2025 21:50:20.550] [main/INFO] [com.drmangotea.tfmg.TFMG/]: Recipes registered 2 recipes
|
||||
[12Jan2025 21:50:20.550] [main/WARN] [com.simibubi.create.Create/]: Your custom tfmg:winding recipe (tfmg:copper_coil) specified a duration. Durations have no impact on this type of recipe.
|
||||
[12Jan2025 21:50:20.550] [main/INFO] [com.drmangotea.tfmg.TFMG/]: Recipes registered 1 recipe
|
||||
[12Jan2025 21:50:20.550] [main/INFO] [com.drmangotea.tfmg.TFMG/]: Recipes registered 1 recipe
|
||||
[12Jan2025 21:50:20.552] [main/WARN] [com.simibubi.create.Create/]: Your custom tfmg:hot_blast recipe (tfmg:hot_air) specified a duration. Durations have no impact on this type of recipe.
|
||||
[12Jan2025 21:50:20.552] [main/INFO] [com.drmangotea.tfmg.TFMG/]: Recipes registered 1 recipe
|
||||
[12Jan2025 21:50:20.552] [main/INFO] [net.minecraft.data.DataGenerator/]: TFMG's Processing Recipes finished after 4 ms
|
||||
[12Jan2025 21:50:20.553] [main/INFO] [net.minecraft.data.DataGenerator/]: All providers took: 1462 ms
|
||||
[12Jan2025 21:50:20.643] [main/INFO] [net.minecraft.data.HashCache/]: Caching: total files: 2271, old count: 2263, new count: 2272, removed stale: 0, written: 10
|
||||
[31Jan2025 19:38:09.129] [main/INFO] [cpw.mods.modlauncher.Launcher/MODLAUNCHER]: ModLauncher running: args [--launchTarget, forgedatauserdev, --assetIndex, 5, --assetsDir, C:\Users\adamn\.gradle\caches\forge_gradle\assets, --gameDir, ., --fml.forgeVersion, 47.3.10, --fml.mcVersion, 1.20.1, --fml.forgeGroup, net.minecraftforge, --fml.mcpVersion, 20230612.114412, --mod, tfmg, --all, --output, C:\Users\adamn\Documents\minecraft\mods\Create-The_Factory_Must_Grow\src\generated\resources, --existing, C:\Users\adamn\Documents\minecraft\mods\Create-The_Factory_Must_Grow\src\main\resources, --mixin.config, tfmg.mixins.json]
|
||||
[31Jan2025 19:38:09.133] [main/INFO] [cpw.mods.modlauncher.Launcher/MODLAUNCHER]: ModLauncher 10.0.9+10.0.9+main.dcd20f30 starting: java version 17.0.13 by Amazon.com Inc.; OS Windows 11 arch amd64 version 10.0
|
||||
[31Jan2025 19:38:09.281] [main/INFO] [net.minecraftforge.fml.loading.ImmediateWindowHandler/]: ImmediateWindowProvider not loading because launch target is forgedatauserdev
|
||||
[31Jan2025 19:38:09.323] [main/INFO] [mixin/]: SpongePowered MIXIN Subsystem Version=0.8.5 Source=union:/C:/Users/adamn/.gradle/caches/modules-2/files-2.1/org.spongepowered/mixin/0.8.5/9d1c0c3a304ae6697ecd477218fa61b850bf57fc/mixin-0.8.5.jar%23128!/ Service=ModLauncher Env=CLIENT
|
||||
[31Jan2025 19:38:09.581] [main/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Mod file C:\Users\adamn\.gradle\caches\modules-2\files-2.1\net.minecraftforge\javafmllanguage\1.20.1-47.3.10\7a15037366722893d76a3d0b2e9d1fd13a63a22d\javafmllanguage-1.20.1-47.3.10.jar is missing mods.toml file
|
||||
[31Jan2025 19:38:09.584] [main/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Mod file C:\Users\adamn\.gradle\caches\modules-2\files-2.1\net.minecraftforge\lowcodelanguage\1.20.1-47.3.10\e67d9b3451d64ccc812cbbd33c066bd3ebbf2167\lowcodelanguage-1.20.1-47.3.10.jar is missing mods.toml file
|
||||
[31Jan2025 19:38:09.586] [main/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Mod file C:\Users\adamn\.gradle\caches\modules-2\files-2.1\net.minecraftforge\mclanguage\1.20.1-47.3.10\2023f9726a509c5ba5a925cac934944066093de8\mclanguage-1.20.1-47.3.10.jar is missing mods.toml file
|
||||
[31Jan2025 19:38:09.589] [main/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Mod file C:\Users\adamn\.gradle\caches\modules-2\files-2.1\net.minecraftforge\fmlcore\1.20.1-47.3.10\523aa0cd9a773b2b56268d8689b2fb5c1f072941\fmlcore-1.20.1-47.3.10.jar is missing mods.toml file
|
||||
[31Jan2025 19:38:09.696] [main/INFO] [net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator/]: No dependencies to load found. Skipping!
|
||||
[31Jan2025 19:38:11.650] [main/INFO] [mixin/]: Compatibility level set to JAVA_17
|
||||
[31Jan2025 19:38:11.656] [main/INFO] [cpw.mods.modlauncher.LaunchServiceHandler/MODLAUNCHER]: Launching target 'forgedatauserdev' with arguments [--gameDir, ., --assetsDir, C:\Users\adamn\.gradle\caches\forge_gradle\assets, --assetIndex, 5, --mod, tfmg, --all, --output, C:\Users\adamn\Documents\minecraft\mods\Create-The_Factory_Must_Grow\src\generated\resources, --existing, C:\Users\adamn\Documents\minecraft\mods\Create-The_Factory_Must_Grow\src\main\resources]
|
||||
[31Jan2025 19:38:11.722] [main/WARN] [mixin/]: Reference map 'Create-The_Factory_Must_Grow.refmap.json' for tfmg.mixins.json could not be read. If this is a development environment you can ignore this message
|
||||
[31Jan2025 19:38:11.874] [main/INFO] [mixin/]: Remapping refMap flywheel.refmap.json using C:\Users\adamn\Documents\minecraft\mods\Create-The_Factory_Must_Grow\build\createSrgToMcp\output.srg
|
||||
[31Jan2025 19:38:11.883] [main/INFO] [mixin/]: Remapping refMap flywheel.refmap.json using C:\Users\adamn\Documents\minecraft\mods\Create-The_Factory_Must_Grow\build\createSrgToMcp\output.srg
|
||||
[31Jan2025 19:38:11.884] [main/INFO] [mixin/]: Remapping refMap create.refmap.json using C:\Users\adamn\Documents\minecraft\mods\Create-The_Factory_Must_Grow\build\createSrgToMcp\output.srg
|
||||
[31Jan2025 19:38:12.775] [main/INFO] [net.minecraftforge.data.loading.DatagenModLoader/]: Initializing Data Gatherer for mods [tfmg]
|
||||
[31Jan2025 19:38:16.415] [modloading-worker-0/INFO] [net.minecraftforge.common.ForgeMod/FORGEMOD]: Forge mod loading, version 47.3.10, for MC 1.20.1 with MCP 20230612.114412
|
||||
[31Jan2025 19:38:16.416] [modloading-worker-0/INFO] [net.minecraftforge.common.MinecraftForge/FORGE]: MinecraftForge v47.3.10 Initialized
|
||||
[31Jan2025 19:38:16.586] [modloading-worker-0/INFO] [com.jozufozu.flywheel.backend.Backend/]: No shaders mod detected.
|
||||
[31Jan2025 19:38:16.847] [modloading-worker-0/INFO] [mezz.jei.library.load.PluginCaller/]: Sending ConfigManager...
|
||||
[31Jan2025 19:38:16.856] [modloading-worker-0/INFO] [mezz.jei.library.load.PluginCaller/]: Sending ConfigManager took 5.658 ms
|
||||
[31Jan2025 19:38:19.161] [main/WARN] [net.minecraft.network.syncher.SynchedEntityData/]: defineId called for: class net.minecraft.world.entity.item.PrimedTnt from class com.drmangotea.tfmg.content.items.weapons.explosives.napalm.NapalmBombEntity
|
||||
[31Jan2025 19:38:19.367] [main/WARN] [net.minecraft.server.packs.VanillaPackResourcesBuilder/]: Assets URL 'union:/C:/Users/adamn/.gradle/caches/forge_gradle/minecraft_user_repo/net/minecraftforge/forge/1.20.1-47.3.10_mapped_official_1.20.1/forge-1.20.1-47.3.10_mapped_official_1.20.1-recomp.jar%23191!/assets/.mcassetsroot' uses unexpected schema
|
||||
[31Jan2025 19:38:19.369] [main/WARN] [net.minecraft.server.packs.VanillaPackResourcesBuilder/]: Assets URL 'union:/C:/Users/adamn/.gradle/caches/forge_gradle/minecraft_user_repo/net/minecraftforge/forge/1.20.1-47.3.10_mapped_official_1.20.1/forge-1.20.1-47.3.10_mapped_official_1.20.1-recomp.jar%23191!/data/.mcassetsroot' uses unexpected schema
|
||||
[31Jan2025 19:38:19.682] [main/INFO] [net.minecraft.data.DataGenerator/]: Starting provider: Registrate Provider for tfmg [Recipes, Advancements, Loot Tables, Tags (blocks), Tags (items), Tags (fluids), Tags (entity_types), Blockstates, Item models, Lang (en_us/en_ud)]
|
||||
[31Jan2025 19:38:20.641] [main/INFO] [net.minecraft.data.DataGenerator/]: Registrate Provider for tfmg [Recipes, Advancements, Loot Tables, Tags (blocks), Tags (items), Tags (fluids), Tags (entity_types), Blockstates, Item models, Lang (en_us/en_ud)] finished after 958 ms
|
||||
[31Jan2025 19:38:20.641] [main/INFO] [net.minecraft.data.DataGenerator/]: Starting provider: TFMG's Generated Registry Entries
|
||||
[31Jan2025 19:38:20.654] [main/INFO] [net.minecraft.data.DataGenerator/]: TFMG's Generated Registry Entries finished after 13 ms
|
||||
[31Jan2025 19:38:20.654] [main/INFO] [net.minecraft.data.DataGenerator/]: Starting provider: TFMG'S Industrial Blasting Recipes
|
||||
[31Jan2025 19:38:20.656] [main/WARN] [com.simibubi.create.Create/]: Your custom tfmg:industrial_blasting recipe (tfmg:steel) specified a duration. Durations have no impact on this type of recipe.
|
||||
[31Jan2025 19:38:20.657] [main/WARN] [com.simibubi.create.Create/]: Your custom tfmg:industrial_blasting recipe (tfmg:steel_from_raw_iron) has more item inputs (3) than supported (2).
|
||||
[31Jan2025 19:38:20.657] [main/WARN] [com.simibubi.create.Create/]: Your custom tfmg:industrial_blasting recipe (tfmg:steel_from_raw_iron) specified a duration. Durations have no impact on this type of recipe.
|
||||
[31Jan2025 19:38:20.657] [main/WARN] [com.simibubi.create.Create/]: Your custom tfmg:industrial_blasting recipe (tfmg:steel_from_dust) specified a duration. Durations have no impact on this type of recipe.
|
||||
[31Jan2025 19:38:20.657] [main/INFO] [com.drmangotea.tfmg.TFMG/]: TFMG'S Industrial Blasting Recipes registered 3 recipes
|
||||
[31Jan2025 19:38:20.657] [main/INFO] [net.minecraft.data.DataGenerator/]: TFMG'S Industrial Blasting Recipes finished after 3 ms
|
||||
[31Jan2025 19:38:20.657] [main/INFO] [net.minecraft.data.DataGenerator/]: Starting provider: Recipes
|
||||
[31Jan2025 19:38:20.658] [main/WARN] [com.simibubi.create.Create/]: Your custom tfmg:casting recipe (tfmg:steel) specified a duration. Durations have no impact on this type of recipe.
|
||||
[31Jan2025 19:38:20.659] [main/INFO] [com.drmangotea.tfmg.TFMG/]: Recipes registered 1 recipe
|
||||
[31Jan2025 19:38:20.660] [main/INFO] [net.minecraft.data.DataGenerator/]: Recipes finished after 1 ms
|
||||
[31Jan2025 19:38:20.660] [main/INFO] [net.minecraft.data.DataGenerator/]: Starting provider: TFMG'S Vat Recipes
|
||||
[31Jan2025 19:38:20.660] [main/WARN] [com.simibubi.create.Create/]: Your custom tfmg:vat_machine_recipe recipe (tfmg:etched_circuit_board) specified a duration. Durations have no impact on this type of recipe.
|
||||
[31Jan2025 19:38:20.660] [main/INFO] [com.drmangotea.tfmg.TFMG/]: TFMG'S Vat Recipes registered 4 recipes
|
||||
[31Jan2025 19:38:20.660] [main/INFO] [net.minecraft.data.DataGenerator/]: TFMG'S Vat Recipes finished after 0 ms
|
||||
[31Jan2025 19:38:20.660] [main/INFO] [net.minecraft.data.DataGenerator/]: Starting provider: TFMG'S Standard Recipes
|
||||
[31Jan2025 19:38:20.663] [main/INFO] [com.drmangotea.tfmg.TFMG/]: TFMG'S Standard Recipes registered 54 recipes
|
||||
[31Jan2025 19:38:20.663] [main/INFO] [net.minecraft.data.DataGenerator/]: TFMG'S Standard Recipes finished after 2 ms
|
||||
[31Jan2025 19:38:20.663] [main/INFO] [net.minecraft.data.DataGenerator/]: Starting provider: TFMG's Processing Recipes
|
||||
[31Jan2025 19:38:20.664] [main/INFO] [com.drmangotea.tfmg.TFMG/]: Recipes registered 0 recipes
|
||||
[31Jan2025 19:38:20.664] [main/WARN] [com.simibubi.create.Create/]: Your custom tfmg:coking recipe (tfmg:coal) specified a duration. Durations have no impact on this type of recipe.
|
||||
[31Jan2025 19:38:20.664] [main/WARN] [com.simibubi.create.Create/]: Your custom tfmg:coking recipe (tfmg:charcoal) specified a duration. Durations have no impact on this type of recipe.
|
||||
[31Jan2025 19:38:20.664] [main/INFO] [com.drmangotea.tfmg.TFMG/]: Recipes registered 2 recipes
|
||||
[31Jan2025 19:38:20.665] [main/INFO] [com.drmangotea.tfmg.TFMG/]: Recipes registered 6 recipes
|
||||
[31Jan2025 19:38:20.665] [main/WARN] [com.simibubi.create.Create/]: Your custom tfmg:winding recipe (tfmg:copper_coil) specified a duration. Durations have no impact on this type of recipe.
|
||||
[31Jan2025 19:38:20.665] [main/INFO] [com.drmangotea.tfmg.TFMG/]: Recipes registered 1 recipe
|
||||
[31Jan2025 19:38:20.665] [main/INFO] [com.drmangotea.tfmg.TFMG/]: Recipes registered 1 recipe
|
||||
[31Jan2025 19:38:20.665] [main/WARN] [com.simibubi.create.Create/]: Your custom tfmg:hot_blast recipe (tfmg:hot_air) specified a duration. Durations have no impact on this type of recipe.
|
||||
[31Jan2025 19:38:20.665] [main/INFO] [com.drmangotea.tfmg.TFMG/]: Recipes registered 1 recipe
|
||||
[31Jan2025 19:38:20.665] [main/INFO] [net.minecraft.data.DataGenerator/]: TFMG's Processing Recipes finished after 1 ms
|
||||
[31Jan2025 19:38:20.665] [main/INFO] [net.minecraft.data.DataGenerator/]: All providers took: 983 ms
|
||||
[31Jan2025 19:38:20.736] [main/INFO] [net.minecraft.data.HashCache/]: Caching: total files: 2371, old count: 2368, new count: 2372, removed stale: 0, written: 6
|
||||
|
||||
Reference in New Issue
Block a user