Insane96 / IguanaTweaksReborn

Repository for ported and maintained version of IguanaTweaks
https://www.curseforge.com/minecraft/mc-mods/iguanatweaks-reborn
13 stars 12 forks source link

Respawning - Attempting to attack an invalid entity (Still Happening) #38

Closed Arkimu closed 6 years ago

Arkimu commented 6 years ago

Whenever I died while having Randomised Respawning true, I'm getting stuck inside a duplicated entity of myself... an if I try to click and punch the game just crash with:

[Server thread/WARN] [net.minecraft.server.MinecraftServer]: Player * tried to attack an invalid entity

Insane96 commented 6 years ago

Full log, forge version, mod version and config file please.

On Wed, 18 Apr 2018, 22:55 Arkimu, notifications@github.com wrote:

Whenever I died while having Randomised Respawning true, I'm getting stuck inside a duplicated entity of myself... an if I try to click and punch the game just crash with:

[Server thread/WARN] [net.minecraft.server.MinecraftServer]: Player * tried to attack an invalid entity

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/Insane-96/IguanaTweaksReborn/issues/38, or mute the thread https://github.com/notifications/unsubscribe-auth/AG2i0DQJ9ebNimnK_sMqn7Sne8cpMHJgks5tp6hZgaJpZM4Tawps .

Arkimu commented 6 years ago

Forge: 14.23.3.2669 (1.12.2) Iguana Tweaks Reborn: 1.3.3

Click to expand ``` # Configuration file ########################################################################################################## # _global_config #--------------------------------------------------------------------------------------------------------# # Completely disable every module from here ########################################################################################################## _global_config { # Set to false to disable everything the Drops module does. (default: true) B:drops_enabled=false # Set to false to disable everything the Experience module does. (default: true) B:experience_enabled=true # Set to false to disable everything the Hardness module does. (default: true) B:hardness_enabled=true # Set to false to disable everything the Hud module does. (default: true) B:hud_enabled=false # Set to false to disable everything the Movement Restriction module does. (default: true) B:movement_restriction_enabled=true # Set to false to disable everything the Sleep Respawn module does. (default: true) B:sleep_respawn_enabled=true # Set to false to disable everything the Stack Size module does. (default: true) B:stack_size_enabled=false } ########################################################################################################## # drops #--------------------------------------------------------------------------------------------------------# # Restrict items dropped and set lifespan of items spawned in various situations (20 ticks = 1 second) ########################################################################################################## drops { # Lifespan (in ticks) of items on the ground (default: 6000) I:item_lifespan=6000 # Lifespan (in ticks) of items dropped when a mob dies (default: 6000) I:item_lifespan_mob_drop=6000 # Lifespan (in ticks) of items dropped when a player dies (default: 2147483647) I:item_lifespan_player_death=2147483647 # Lifespan (in ticks) of items tossed on the ground (default: 6000) I:item_lifespan_tossed=6000 # List of items/blocks to restrict from mob drops (separated by new line, format modid:itemid:meta) (default: []) S:restricted_drops < > } ########################################################################################################## # experience #--------------------------------------------------------------------------------------------------------# # Configure some properties for the vanilla experience ########################################################################################################## experience { # Percentage of experience given by everything (0 to disable all xp orbs from being created) (100 to disable) (default: 100.0) D:percentage_all=100.0 # Percentage of experience dropped from mobs spawned from Spawners. (default: 50.0) D:percentage_from_spawner=50.0 # Percentage of experience dropped by blocks. Experience dropped by blocks are still affected by percentage_all, so if you have e.g. percentage_all at 50, this needs to be set to 200 to make blocks drop normal experience. (set to 0 to make blocks not drop xp) (100 to disable) (default: 100.0) D:percentage_ore=100.0 # Lifespan (in ticks) of xp orbs (Range: -1 -> 38000. If set to -1 the orbs will never despawn) (default: 6000) I:xp_lifespan=6000 } ########################################################################################################## # general #--------------------------------------------------------------------------------------------------------# # Other settings ########################################################################################################## general { # The poison effect will be changed to be deadly and drain hunger, but will damage the player about 4x slower (default: true) B:alter_poison=true # Disables fov changes when you get slowed down or sped up. Highly recommended if you have 'movement_restrictions' active. (default: true) B:disable_fov_change_on_speed_change=false # Minecraft normally adds 0.005 exaustion for block broken. With this at true, exhaustion will be added based on block hardness (hardness / 100). ELI5 when you break a block you lose more hunger the more hard is a block to break. (default: true) B:exhaustion_on_block_break=true # Multiply the exhaustion given to the player when breaking blocks by this value (default: 1.0) D:exhaustion_on_block_break_multiplier=1.0 # If the player should be able to walk over full blocks (default: false) B:increased_step_height=false # If true, silverfish blocks will be almost like stone (default: true) B:less_obivious_silverfish=true # How often the speed of entities (not player) are calculated (in ticks). Higher values reduces client-side CPU load but may increase the chance of odd behavior (default: 7) I:tick_rate_entity_update=7 # How often the speed of players are calculated (in ticks). Higher values reduces client-side CPU load but may increase the chance of odd behavior (default: 2) I:tick_rate_player_update=2 } ########################################################################################################## # hardness #--------------------------------------------------------------------------------------------------------# # Change the hardness of blocks, globally or single, using either a blacklist or whitelist ########################################################################################################## hardness { # Define for each line a custom block hardness for every block. Those blocks are not affected by the global block hardness multiplier ('multiplier') # The format is modid:blockid:meta,hardness. # E.g. 'minecraft:stone:1,5.0' will make granite have 5 hardness. If no meta is specified, this will affect every block meta. (default: []) S:block_hardness < > # Block ids (one per line) for the hardness whitelist/blacklist. # Format is modid:blockid;meta # E.g. 'minecraft:stone:1' will target granite (default: []) S:block_list < > # True if hardness multiplier should only affect blocks on the list, false if all blocks are affected except those on the list (default: false) B:block_list_is_whitelist=false # Multiplier applied to the hardness of blocks (set to 1 to disable) (default: 4.0) D:multiplier=3.0 } ########################################################################################################## # hud #--------------------------------------------------------------------------------------------------------# # Options to hide HUD parts in certain situations ########################################################################################################## hud { # If true, the experience bar will be hidden unless there are xp orbs in a 4 blocks (cubic) radius around the player (default: true) B:hide_experience_bar=true # If true, the health bar will be hidden when above a certain threshold (the bar will always be shown if absorpion hearts are present) (default: false) B:hide_health_bar=false # Delay (in seconds) before hiding the health bar (default: 4) I:hide_health_bar_delay=4 # Health needs to be equal to or above this before the bar will hide (default: 20) I:hide_health_bar_threshold=20 # If true, the hotbar will be hidden until an item is selected (default: false) B:hide_hotbar=false # Delay (in seconds) before hiding the hotbar (default: 4) I:hide_hotbar_delay=4 # If true, the hunger bar will be hidden when above a certain threshold (default: false) B:hide_hunger_bar=false # Delay (in seconds) before hiding the hunger bar (default: 4) I:hide_hunger_bar_delay=4 # Hunger needs to be equal to or above this before the bar will hide (default: 20) I:hide_hunger_bar_threshold=20 # If true, a 'Creative mode' text will show up when in creative mode (default: true) B:show_creative_text=true } ########################################################################################################## # movement_restriction #--------------------------------------------------------------------------------------------------------# # Various settings related to restricting movement, such us encumbrance, armor weight and terrain slowdown ########################################################################################################## movement_restriction { # Shows weight text in the debug (F3) details (default: false) B:add_debug_text=false # Shows weight text on the HUD when carrying too much (default: true) B:add_hud_text=false # Percentage of slowdown for each point (half-shield) of armor (set to 0 to disable) (default: 0.5) D:armor_weight=0 # Set here (one per line) block weight for each block or item. Format is 'modid:blockid:meta,weight', meta is not needed, setting no meta, means all the blocks sub-types of that block. (default: []) S:custom_weight < > # Is the duration of the slowdown dependant on difficulty? (default: true) B:damage_slowdown_difficulty_scaling=true # Number of ticks each heart of damage slows you down for (set to 0 to disable) (default: 5) I:damage_slowdown_duration=5 # When player's damaged, how much is slowed down? (default: 20.0) D:damage_slowdown_effectiveness=10.0 # Weight text on the HUD will be more detailed, showing numbers (default: false) B:detailed_hud_text=false # Maximum carry weight (set to 0 to disable) (default: 768) I:max_carry_weight=0 # Weight of one rock block, used as a base to calculate weight of other blocks (default: 1.0) D:rock_weight=1.0 # Multiplier for items weight in shulkerboxes. Set this to 0 to make items in shulker boxes not count towards weight. Set this to 1 to make items in shulker boxes weight the same as they were out of the box. (default: 0.75) D:shulker_weight_reduction=0 # Set to false to disable the slowdown when walking backwards (default: true) B:slowdown_when_walking_backwards=true # Custom list for each block that slows you down when you walk on it. Format is 'modid:blockid:meta,slowness', meta is not needed, setting no meta, means all the blocks. E.g. 'minecraft:diamond_block,75' will slowdown the player by 75% when walks on diamond block. (default: []) S:terrain_slowdown_custom < > # Percentage of slowdown when walking on dirt or grass (set to 0 to disable) (default: 5.0) D:terrain_slowdown_dirt=0 # Percentage of slowdown when walking on ice (set to 0 to disable) (default: 50.0) D:terrain_slowdown_ice=0 # Percentage of slowdown when walking through leaves or plants (set to 0 to disable) (default: 5.0) D:terrain_slowdown_in_plant=0 # Percentage of slowdown when walking through snow (set to 0 to disable) (default: 20.0) D:terrain_slowdown_in_snow=0 # Global modifier on the amount that terrain affects movement speed (set to 0 to disable) (default: 100.0) D:terrain_slowdown_percentage=0 # Percentage of slowdown when walking on leaves or plants (set to 0 to disable) (default: 20.0) D:terrain_slowdown_plant=0 # Percentage of slowdown when walking on sand (set to 0 to disable) (default: 20.0) D:terrain_slowdown_sand=0 # Percentage of slowdown when walking on snow (set to 0 to disable) (default: 20.0) D:terrain_slowdown_snow=0 } ########################################################################################################## # sleep_respawn #--------------------------------------------------------------------------------------------------------# # Various settings to change sleeping and respawning mechanics ########################################################################################################## sleep_respawn { # Upon respawn the bed is destroyed (default: false) B:destroy_bed_on_respawn=false # If active using a bed will not set your spawn point (requires disable_sleeping to be true) (default: false) B:disable_set_respawn_point=false # Stops players from sleeping (default: true) B:disable_sleeping=true # Amount of health you respawn with (with 'respawnHealthDifficultyScaling' this will be modified by difficulty) (default: 10) I:respawn_health=10 # If true, the amount of health you respawn with is dependant on difficulty (default: true) B:respawn_health_difficulty_scaling=true # Where you respawn (after death) is randomised around the players' spawn point (either to a bed or original spawn point), at least a maximum of this value, many blocks away (set to 0 to disable) (default: 0) I:respawn_location_random_max=500 # Where you respawn (after death) is randomised around the players' spawn point (either to a bed or original spawn point), at least a minimum of this value, many blocks away (set to 0 to disable) (default: 0) I:respawn_location_random_min=350 # Exactly where you spawn (upon login) is randomised around the spawn point, at least a maximum of this value, many blocks away (set to 0 to disable) (default: 0) I:spawn_location_random_max=0 # Exactly where you spawn (upon login) is randomised around the spawn point, at least a minimum of this value, many blocks away (set to 0 to disable) (default: 0) I:spawn_location_random_min=0 } ########################################################################################################## # stack_sizes #--------------------------------------------------------------------------------------------------------# # Change the stack sizes of blocks and items, based on material weight ########################################################################################################## stack_sizes { # Max stack size divider for blocks (default: 4) I:block_divider_man=4 # Min stack size divider for blocks (default: 2) I:block_divider_min=2 # List of all the custom stacks for blocks and items. The format is 'modid:name,max_stack_size'. Going over 64 doesn't work (default: []) S:custom_stack_list < > # Stack size divider for items (default: 2) I:item_divider=2 # If true, writes in log files any change to stack sizes (default: false) B:log_changes=false } ``` # LOG file ``` [17:03:26] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker [17:03:26] [main/INFO] [LaunchWrapper]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker [17:03:26] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLTweaker [17:03:26] [main/INFO] [FML]: Forge Mod Loader version 14.23.3.2669 for Minecraft 1.12.2 loading [17:03:26] [main/INFO] [FML]: Java is Java HotSpot(TM) 64-Bit Server VM, version 1.8.0_51, running on Windows 7:amd64:6.1, installed at C:\Program Files\Java\jre1.8.0_51 [17:03:26] [main/ERROR] [FML]: Apache Maven library folder was not in the format expected: C:\Users\Ark\AppData\Roaming\.minecraft\libraries\org\apache\maven\maven-artifact\3.5.3\maven-artifact-3.5.3.jar. Using default libraries directory. [17:03:27] [main/INFO] [FML]: Searching C:\Users\Ark\AppData\Roaming\.minecraft\mods for mods [17:03:27] [main/WARN] [FML]: Found FMLCorePluginContainsFMLMod marker in Apple Core - 3.1.1 (1.12.2).jar. This is not recommended, @Mods should be in a separate jar from the coremod. [17:03:27] [main/WARN] [FML]: The coremod AppleCore (squeek.applecore.AppleCore) is not signed! [17:03:27] [main/INFO] [FML]: Loading tweaker guichaguri.betterfps.tweaker.BetterFpsTweaker from BetterFps 1.4.8 (1.12.2).jar [17:03:27] [main/WARN] [FML]: Found FMLCorePluginContainsFMLMod marker in Fast Crafting - 2.6 (1.12+).jar. This is not recommended, @Mods should be in a separate jar from the coremod. [17:03:27] [main/WARN] [FML]: The coremod com.dazo66.fastcrafting.asm.CoreModBase does not have a MCVersion annotation, it may cause issues with this version of Minecraft [17:03:27] [main/WARN] [FML]: The coremod CoreModBase (com.dazo66.fastcrafting.asm.CoreModBase) is not signed! [17:03:27] [main/WARN] [FML]: Found FMLCorePluginContainsFMLMod marker in FoamFix - 0.9.7 - Anarchy (1.12.2).jar. This is not recommended, @Mods should be in a separate jar from the coremod. [17:03:27] [main/WARN] [FML]: The coremod pl.asie.foamfix.coremod.FoamFixCore does not have a MCVersion annotation, it may cause issues with this version of Minecraft [17:03:27] [main/WARN] [FML]: Found FMLCorePluginContainsFMLMod marker in Inventory Tweaks - 1.63 (1.12.2).jar. This is not recommended, @Mods should be in a separate jar from the coremod. [17:03:27] [main/WARN] [FML]: The coremod invtweaks.forge.asm.FMLPlugin does not have a MCVersion annotation, it may cause issues with this version of Minecraft [17:03:27] [main/WARN] [FML]: The coremod lain.mods.skins.asm.Plugin does not have a MCVersion annotation, it may cause issues with this version of Minecraft [17:03:27] [main/INFO] [FML]: Loading tweaker optifine.OptiFineForgeTweaker from OptiFine HD - U D1 (1.12.2) .jar [17:03:27] [main/WARN] [FML]: Found FMLCorePluginContainsFMLMod marker in Scaling Health - 1.3.14 (1.12).jar. This is not recommended, @Mods should be in a separate jar from the coremod. [17:03:27] [main/WARN] [FML]: The coremod net.silentchaos512.scalinghealth.asm.SHLoadingPlugin does not have a MCVersion annotation, it may cause issues with this version of Minecraft [17:03:27] [main/WARN] [FML]: The coremod SHLoadingPlugin (net.silentchaos512.scalinghealth.asm.SHLoadingPlugin) is not signed! [17:03:27] [main/WARN] [FML]: Found FMLCorePluginContainsFMLMod marker in Tough As Nails - 3.1.0.96 Universal (1.12.2).jar. This is not recommended, @Mods should be in a separate jar from the coremod. [17:03:27] [main/WARN] [FML]: The coremod toughasnails.asm.TANLoadingPlugin does not have a MCVersion annotation, it may cause issues with this version of Minecraft [17:03:27] [main/WARN] [FML]: The coremod TANLoadingPlugin (toughasnails.asm.TANLoadingPlugin) is not signed! [17:03:27] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker [17:03:27] [main/INFO] [LaunchWrapper]: Loading tweak class name guichaguri.betterfps.tweaker.BetterFpsTweaker [17:03:27] [main/INFO] [LaunchWrapper]: Loading tweak class name optifine.OptiFineForgeTweaker [17:03:27] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLDeobfTweaker [17:03:27] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker [17:03:27] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker [17:03:27] [main/INFO] [LaunchWrapper]: Calling tweak class optifine.OptiFineForgeTweaker [17:03:27] [main/INFO] [STDOUT]: [optifine.OptiFineForgeTweaker:dbg:56]: OptiFineForgeTweaker: acceptOptions [17:03:27] [main/INFO] [STDOUT]: [optifine.OptiFineForgeTweaker:dbg:56]: OptiFineForgeTweaker: injectIntoClassLoader [17:03:27] [main/INFO] [STDOUT]: [optifine.OptiFineClassTransformer:dbg:221]: OptiFine ClassTransformer [17:03:27] [main/INFO] [STDOUT]: [optifine.OptiFineClassTransformer:dbg:221]: OptiFine ZIP file: C:\Users\Ark\AppData\Roaming\.minecraft\mods\OptiFine HD - U D1 (1.12.2) .jar [17:03:27] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper [17:03:33] [main/INFO] [FML]: Found valid fingerprint for Minecraft Forge. Certificate fingerprint e3c3d50c7c986df74c645c0ac54639741c90a557 [17:03:33] [main/INFO] [FML]: Found valid fingerprint for Minecraft. Certificate fingerprint cd99959656f753dc28d863b46769f7f8fbaefcfc [17:03:33] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper [17:03:33] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper [17:03:33] [main/INFO] [FML]: HookSendRecipePacket0 Register SUCCESS [17:03:33] [main/WARN] [FML]: This MCVersion is 1.12.2 but Transformer HookSendRecipePacket1 accept MCVersion is [1.12] that ignore this Transformer [17:03:33] [main/INFO] [FML]: myRecipecore Register SUCCESS [17:03:33] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper [17:03:34] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper [17:03:34] [main/INFO] [STDOUT]: [net.silentchaos512.scalinghealth.asm.SHAsmConfig:load:28]: Scaling Health: Loading ASM config... [17:03:34] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper [17:03:34] [main/INFO] [LaunchWrapper]: Calling tweak class guichaguri.betterfps.tweaker.BetterFpsTweaker [17:03:34] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLDeobfTweaker [17:03:36] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper [17:03:36] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper [17:03:36] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper [17:03:36] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.TerminalTweaker [17:03:36] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.TerminalTweaker [17:03:36] [main/INFO] [STDOUT]: [optifine.OptiFineForgeTweaker:dbg:56]: OptiFineForgeTweaker: getLaunchArguments [17:03:36] [main/INFO] [LaunchWrapper]: Launching wrapped minecraft {net.minecraft.client.main.Main} [17:03:36] [main/INFO] [BetterFps]: Patching net.minecraft.client.Minecraft... (bib) [17:03:37] [main/INFO] [STDOUT]: [pl.asie.foamfix.coremod.FoamFixTransformer:spliceClasses:110]: pl/asie/foamfix/coremod/patches/IFoamFixWorldRemovable [17:03:37] [main/INFO] [STDOUT]: [pl.asie.foamfix.coremod.FoamFixTransformer:spliceClasses:113]: Added INTERFACE: pl/asie/foamfix/coremod/patches/IFoamFixWorldRemovable [17:03:37] [main/INFO] [STDOUT]: [pl.asie.foamfix.coremod.FoamFixTransformer:spliceClasses:150]: Added METHOD: net.minecraft.world.World.foamfix_removeUnloadedEntities [17:03:38] [main/INFO] [BetterFps]: Patching net.minecraft.client.entity.EntityPlayerSP... (bud) [17:03:39] [main/INFO] [STDOUT]: [pl.asie.foamfix.coremod.patches.WorldServerRemovalPatch:apply:65]: Patched updateEntities in net/minecraft/world/WorldServer func_72939_s [17:03:39] [main/INFO] [STDOUT]: [pl.asie.foamfix.coremod.FoamFixTransformer:spliceClasses:110]: net/minecraft/client/resources/IResourceManagerReloadListener [17:03:39] [main/INFO] [STDOUT]: [pl.asie.foamfix.coremod.FoamFixTransformer:spliceClasses:126]: Spliced in METHOD: net.minecraft.client.util.SearchTreeManager.func_110549_a [17:03:39] [main/INFO] [net.minecraft.client.Minecraft]: Setting user: Ark [17:03:40] [main/INFO] [BetterFps]: Patching net.minecraft.block.Block... (aow) [17:03:41] [main/INFO] [STDOUT]: [pl.asie.foamfix.coremod.FoamFixTransformer:spliceClasses:126]: Spliced in METHOD: net.minecraft.block.state.BlockStateContainer.createState [17:03:41] [main/INFO] [STDOUT]: [pl.asie.foamfix.coremod.FoamFixTransformer:spliceClasses:126]: Spliced in METHOD: net.minecraft.block.properties.PropertyEnum.equals [17:03:41] [main/INFO] [STDOUT]: [pl.asie.foamfix.coremod.FoamFixTransformer:spliceClasses:126]: Spliced in METHOD: net.minecraft.block.properties.PropertyEnum.hashCode [17:03:41] [main/INFO] [STDOUT]: [pl.asie.foamfix.coremod.FoamFixTransformer:spliceClasses:173]: Added FIELD: net.minecraft.block.properties.PropertyEnum.foamfix_hashCode [17:03:41] [main/INFO] [STDOUT]: [pl.asie.foamfix.coremod.FoamFixTransformer:spliceClasses:173]: Added FIELD: net.minecraft.block.properties.PropertyEnum.foamfix_hashCode_calced [17:03:41] [main/INFO] [BetterFps]: Patching math utils with "RIVENS_FULL" algorithm [17:03:41] [main/INFO] [STDOUT]: [pl.asie.foamfix.coremod.FoamFixTransformer:spliceClasses:126]: Spliced in METHOD: net.minecraft.block.properties.PropertyBool.equals [17:03:41] [main/INFO] [STDOUT]: [pl.asie.foamfix.coremod.FoamFixTransformer:spliceClasses:126]: Spliced in METHOD: net.minecraft.block.properties.PropertyBool.hashCode [17:03:41] [main/INFO] [STDOUT]: [pl.asie.foamfix.coremod.FoamFixTransformer:spliceClasses:126]: Spliced in METHOD: net.minecraft.block.properties.PropertyInteger.hashCode [17:03:41] [main/INFO] [STDOUT]: [pl.asie.foamfix.coremod.FoamFixTransformer:spliceClasses:173]: Added FIELD: net.minecraft.block.properties.PropertyInteger.foamfix_hashCode [17:03:41] [main/INFO] [STDOUT]: [pl.asie.foamfix.coremod.FoamFixTransformer:spliceClasses:173]: Added FIELD: net.minecraft.block.properties.PropertyInteger.foamfix_hashCode_calced [17:03:42] [main/INFO] [STDOUT]: [pl.asie.foamfix.coremod.FoamFixTransformer:spliceClasses:126]: Spliced in METHOD: net.minecraft.tileentity.TileEntity.func_190559_a [17:03:42] [main/INFO] [STDOUT]: [pl.asie.foamfix.coremod.FoamFixTransformer:spliceClasses:126]: Spliced in METHOD: net.minecraft.block.BlockBed.func_189540_a [17:03:43] [main/INFO] [BetterFps]: Patching net.minecraft.tileentity.TileEntityBeacon... (avh) [17:03:44] [main/INFO] [BetterFps]: Patching net.minecraft.block.BlockHopper... (arl) [17:03:44] [main/INFO] [STDOUT]: [pl.asie.patchy.helpers.ConstructorReplacingTransformer$FFMethodVisitor:visitTypeInsn:75]: Replaced NEW for net/minecraft/tileentity/TileEntityHopper to pl/asie/foamfix/common/TileEntityFasterHopper [17:03:44] [main/INFO] [STDOUT]: [pl.asie.patchy.helpers.ConstructorReplacingTransformer$FFMethodVisitor:visitMethodInsn:87]: Replaced INVOKESPECIAL for net/minecraft/tileentity/TileEntityHopper to pl/asie/foamfix/common/TileEntityFasterHopper [17:03:44] [main/INFO] [BetterFps]: Patching net.minecraft.tileentity.TileEntityHopper... (avw) [17:03:44] [main/INFO] [FML]: [Scaling Health] Transforming class net.minecraft.entity.SharedMonsterAttributes [17:03:44] [main/INFO] [FML]: [Scaling Health] Successfully changed max health maximum! [17:03:46] [main/INFO] [STDOUT]: [pl.asie.foamfix.coremod.injections.crafting.ContainerPatchCrafting:apply:59]: Hooked findMatchingRecipe in net/minecraft/inventory/Container func_192389_a [17:03:49] [main/INFO] [Config]: [OptiFine] *** Reflector Forge *** [17:03:49] [main/INFO] [Config]: [OptiFine] (Reflector) Class not present: mods.betterfoliage.client.BetterFoliageClient [17:03:49] [main/INFO] [STDOUT]: [pl.asie.patchy.helpers.ConstructorReplacingTransformer$FFMethodVisitor:visitTypeInsn:75]: Replaced NEW for net/minecraft/util/ClassInheritanceMultiMap to pl/asie/foamfix/coremod/common/FoamyClassInheritanceMultiMap [17:03:49] [main/INFO] [STDOUT]: [pl.asie.patchy.helpers.ConstructorReplacingTransformer$FFMethodVisitor:visitMethodInsn:87]: Replaced INVOKESPECIAL for net/minecraft/util/ClassInheritanceMultiMap to pl/asie/foamfix/coremod/common/FoamyClassInheritanceMultiMap [17:03:50] [main/INFO] [BetterFps]: Patching net.minecraft.client.renderer.EntityRenderer... (buq) [17:03:50] [main/INFO] [STDOUT]: [pl.asie.foamfix.coremod.FoamFixTransformer:spliceClasses:126]: Spliced in METHOD: net.minecraftforge.common.property.ExtendedBlockState.createState [17:03:51] [main/INFO] [STDOUT]: [pl.asie.foamfix.coremod.patches.ReturnIfBooleanTruePatch:apply:91]: Added return if option true in net/minecraft/client/renderer/texture/TextureMap func_94248_c [17:03:51] [main/INFO] [STDOUT]: [pl.asie.patchy.helpers.ConstructorReplacingTransformer$FFMethodVisitor:visitTypeInsn:75]: Replaced NEW for net/minecraft/client/renderer/texture/TextureAtlasSprite to pl/asie/foamfix/client/FastTextureAtlasSprite [17:03:51] [main/INFO] [STDOUT]: [pl.asie.patchy.helpers.ConstructorReplacingTransformer$FFMethodVisitor:visitMethodInsn:87]: Replaced INVOKESPECIAL for net/minecraft/client/renderer/texture/TextureAtlasSprite to pl/asie/foamfix/client/FastTextureAtlasSprite [17:03:52] [main/INFO] [Config]: [OptiFine] *** Reflector Vanilla *** [17:03:52] [main/INFO] [BetterFps]: Patching net.minecraft.client.gui.GuiOptions... (ble) [17:03:52] [main/INFO] [FML]: CLASS: HookSendRecipePacket0 Transformer SUCCESS [17:03:53] [main/WARN] [net.minecraft.client.settings.GameSettings]: Skipping bad option: lastServer: [17:03:53] [main/INFO] [net.minecraft.client.Minecraft]: LWJGL Version: 2.9.4 [17:03:54] [main/INFO] [Config]: [OptiFine] [17:03:54] [main/INFO] [Config]: [OptiFine] OptiFine_1.12.2_HD_U_D1 [17:03:54] [main/INFO] [Config]: [OptiFine] Build: 20180323-135452 [17:03:54] [main/INFO] [Config]: [OptiFine] OS: Windows 7 (amd64) version 6.1 [17:03:54] [main/INFO] [Config]: [OptiFine] Java: 1.8.0_51, Oracle Corporation [17:03:54] [main/INFO] [Config]: [OptiFine] VM: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation [17:03:54] [main/INFO] [Config]: [OptiFine] LWJGL: 2.9.4 [17:03:54] [main/INFO] [Config]: [OptiFine] OpenGL: Intel Bear Lake B, version 1.4.0 - Build 8.14.10.2230, Intel [17:03:54] [main/INFO] [Config]: [OptiFine] OpenGL Version: 1.4.0 [17:03:54] [main/INFO] [Config]: [OptiFine] OpenGL Fancy fog: Not available (GL_NV_fog_distance) [17:03:54] [main/INFO] [Config]: [OptiFine] OpenGL Occlussion culling: Not available (GL_ARB_occlusion_query) [17:03:54] [main/INFO] [Config]: [OptiFine] Maximum texture size: 2048x2048 [17:03:54] [main/INFO] [shadersmod.common.SMCLog]: [Shaders] ShadersMod version: 2.4.12 [17:03:54] [main/INFO] [shadersmod.common.SMCLog]: [Shaders] OpenGL Version: 1.4.0 - Build 8.14.10.2230 [17:03:54] [main/INFO] [shadersmod.common.SMCLog]: [Shaders] Vendor: Intel [17:03:54] [main/INFO] [shadersmod.common.SMCLog]: [Shaders] Renderer: Intel Bear Lake B [17:03:54] [main/INFO] [shadersmod.common.SMCLog]: [Shaders] Capabilities: - - - - - [17:03:54] [main/INFO] [shadersmod.common.SMCLog]: [Shaders] GL_MAX_DRAW_BUFFERS: 7 [17:03:54] [main/INFO] [shadersmod.common.SMCLog]: [Shaders] GL_MAX_COLOR_ATTACHMENTS_EXT: 7 [17:03:54] [main/INFO] [shadersmod.common.SMCLog]: [Shaders] GL_MAX_TEXTURE_IMAGE_UNITS: 16 [17:03:54] [main/INFO] [shadersmod.common.SMCLog]: [Shaders] Load ShadersMod configuration. [17:03:54] [main/INFO] [shadersmod.common.SMCLog]: [Shaders] Save ShadersMod configuration. [17:03:54] [main/INFO] [shadersmod.common.SMCLog]: [Shaders] Shaders can not be loaded, Fast Render is enabled. [17:03:54] [main/INFO] [shadersmod.common.SMCLog]: [Shaders] No shaderpack loaded. [17:03:54] [main/INFO] [Config]: [OptiFine] [Shaders] Delayed loading of block mappings after resources are loaded [17:03:54] [main/INFO] [Config]: [OptiFine] VboRegions not supported, missing: OpenGL 1.3, ARB_copy_buffer [17:03:55] [main/INFO] [FML]: Forge Mod Loader has detected optifine OptiFine_1.12.2_HD_U_D1, enabling compatibility features [17:03:55] [main/INFO] [FML]: -- System Details -- Details: Minecraft Version: 1.12.2 Operating System: Windows 7 (amd64) version 6.1 Java Version: 1.8.0_51, Oracle Corporation Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation Memory: 90701312 bytes (86 MB) / 272629760 bytes (260 MB) up to 1572864000 bytes (1500 MB) JVM Flags: 6 total; -XX:HeapDumpPath=MojangTricksIntelDriversForPerformance_javaw.exe_minecraft.exe.heapdump -XX:+UseG1GC -XX:-UseAdaptiveSizePolicy -XX:-OmitStackTraceInFastThrow -Xmn128m -Xmx1500m IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0 FML: Loaded coremods (and transformers): SHLoadingPlugin (Scaling Health - 1.3.14 (1.12).jar) net.silentchaos512.scalinghealth.asm.SHClassTransformer AppleCore (Apple Core - 3.1.1 (1.12.2).jar) squeek.applecore.asm.TransformerModuleHandler TANLoadingPlugin (Tough As Nails - 3.1.0.96 Universal (1.12.2).jar) toughasnails.asm.transformer.CropDecayTransformer toughasnails.asm.transformer.EntityRendererTransformer toughasnails.asm.transformer.WorldTransformer CoreModBase (Fast Crafting - 2.6 (1.12+).jar) com.dazo66.fastcrafting.asm.MainTransformer offlineskins (OfflineSkins-1.12.2-v3a-core.jar) lain.mods.skins.asm.ASMTransformer Do not report to Forge! Remove FoamFixAPI (or replace with FoamFixAPI-Lawful) and try again. (FoamFix - 0.9.7 - Anarchy (1.12.2).jar) pl.asie.foamfix.coremod.FoamFixTransformer Inventory Tweaks Coremod (Inventory Tweaks - 1.63 (1.12.2).jar) invtweaks.forge.asm.ContainerTransformer GL info: ' Vendor: 'Intel' Version: '1.4.0 - Build 8.14.10.2230' Renderer: 'Intel Bear Lake B' [17:03:55] [main/INFO] [FML]: MinecraftForge v14.23.3.2669 Initialized [17:03:55] [main/INFO] [FML]: Starts to replace vanilla recipe ingredients with ore ingredients. [17:03:55] [main/INFO] [FML]: Replaced 1036 ore ingredients [17:03:55] [main/INFO] [FML]: Searching C:\Users\Ark\AppData\Roaming\.minecraft\mods for mods [17:03:58] [main/WARN] [FML]: Mod offlineskins is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 1.12.2-v3a [17:03:58] [main/INFO] [FML]: Forge Mod Loader has identified 28 mods to load [17:03:59] [main/INFO] [FML]: Attempting connection with missing mods [minecraft, mcp, FML, forge, foamfixcore, aiimprovements, ambience, applecore, appleskin, betterunderground, death_compass, fastcrafting, foamfix, waila, iguanatweaks, inventorytweaks, justenoughdimensions, jeiintegration, jei, jeresources, mobcontroller, offlineskins, scalinghealth, silentlib, spiceoflife, texfix, toughasnails, wawla] at CLIENT [17:03:59] [main/INFO] [FML]: Attempting connection with missing mods [minecraft, mcp, FML, forge, foamfixcore, aiimprovements, ambience, applecore, appleskin, betterunderground, death_compass, fastcrafting, foamfix, waila, iguanatweaks, inventorytweaks, justenoughdimensions, jeiintegration, jei, jeresources, mobcontroller, offlineskins, scalinghealth, silentlib, spiceoflife, texfix, toughasnails, wawla] at SERVER [17:04:00] [main/INFO] [net.minecraft.client.resources.SimpleReloadableResourceManager]: Reloading ResourceManager: BetterFps, Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:AI Improvements, FMLFileResourcePack:Ambience, FMLFileResourcePack:AppleCore, FMLFileResourcePack:AppleSkin, FMLFileResourcePack:Better Underground, FMLFileResourcePack:death_compass, FMLFileResourcePack:TCFastCrafting, FMLFileResourcePack:FoamFix, FMLFileResourcePack:Waila, FMLFileResourcePack:IguanaTweaks, FMLFileResourcePack:Inventory Tweaks, FMLFileResourcePack:Just Enough Dimensions, FMLFileResourcePack:JEI Integration, FMLFileResourcePack:Just Enough Items, FMLFileResourcePack:Just Enough Resources, FMLFileResourcePack:Mob Controller, FMLFileResourcePack:OfflineSkins, FMLFileResourcePack:Scaling Health, FMLFileResourcePack:Silent Lib, FMLFileResourcePack:The Spice of Life, FMLFileResourcePack:TextureFix, FMLFileResourcePack:Tough As Nails, FMLFileResourcePack:What Are We Looking At [17:04:01] [main/INFO] [FML]: Processing ObjectHolder annotations [17:04:01] [main/INFO] [FML]: Found 1171 ObjectHolder annotations [17:04:01] [main/INFO] [FML]: Identifying ItemStackHolder annotations [17:04:01] [main/INFO] [FML]: Found 0 ItemStackHolder annotations [17:04:01] [Thread-4/INFO] [FML]: Using sync timing. 200 frames of Display.update took 989931547 nanos [17:04:01] [Thread-3/INFO] [Config]: [OptiFine] Checking for new version [17:04:01] [main/INFO] [FML]: Configured a dormant chunk cache size of 0 [17:04:03] [main/INFO] [STDOUT]: [pl.asie.foamfix.ProxyCommon:preInit:83]: minecraft:hopper [17:04:03] [main/INFO] [foamfix]: Removing LaunchWrapper package manifest map... [17:04:03] [main/INFO] [STDOUT]: [pl.asie.foamfix.coremod.FoamFixTransformer:spliceClasses:126]: Spliced in METHOD: net.minecraftforge.client.model.pipeline.ForgeBlockModelRenderer.render [17:04:03] [main/WARN] [foamfix]: Fast animated textures require OpenGL 4.3 or ARB_copy_image extension, which were not detected. Using original slow path. [17:04:03] [main/INFO] [iguanatweaks]: Initializing Mod Integration [17:04:03] [main/INFO] [iguanatweaks]: Finished Initializing Mod Integration [17:04:04] [main/INFO] [justenoughdimensions]: Reloading the main configs from file 'C:\Users\Ark\AppData\Roaming\.minecraft\config\justenoughdimensions\justenoughdimensions.cfg' [17:04:04] [main/INFO] [jeresources]: Loading configs.. [17:04:04] [main/INFO] [jeresources]: Updating ModMetaData... [17:04:04] [main/INFO] [jeresources]: Providing API... [17:04:06] [main/INFO] [FML]: Applying holder lookups [17:04:06] [main/INFO] [FML]: Holder lookups applied [17:04:06] [main/INFO] [FML]: Applying holder lookups [17:04:06] [main/INFO] [FML]: Holder lookups applied [17:04:06] [main/INFO] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `poison`, expected `iguanatweaks`. This could be a intended override, but in most cases indicates a broken mod. [17:04:06] [main/INFO] [FML]: Applying holder lookups [17:04:06] [main/INFO] [FML]: Holder lookups applied [17:04:06] [main/INFO] [FML]: Applying holder lookups [17:04:06] [main/INFO] [FML]: Holder lookups applied [17:04:06] [main/INFO] [FML]: Injecting itemstacks [17:04:06] [main/INFO] [FML]: Itemstack injection complete [17:04:06] [main/INFO] [Config]: [OptiFine] *** Reloading textures *** [17:04:06] [main/INFO] [Config]: [OptiFine] Resource packs: Default [17:04:09] [Sound Library Loader/INFO] [net.minecraft.client.audio.SoundManager]: Starting up SoundSystem... [17:04:10] [Thread-7/INFO] [net.minecraft.client.audio.SoundManager]: Initializing LWJGL OpenAL [17:04:10] [Thread-7/INFO] [net.minecraft.client.audio.SoundManager]: (The LWJGL binding of OpenAL. For more information, see http://www.lwjgl.org) [17:04:10] [main/INFO] [STDOUT]: [pl.asie.foamfix.coremod.FoamFixTransformer:spliceClasses:126]: Spliced in METHOD: net.minecraftforge.client.model.ModelLoader$VanillaModelWrapper.bakeNormal [17:04:16] [main/INFO] [Config]: [OptiFine] Multitexture: false [17:04:16] [main/INFO] [Config]: [OptiFine] ConnectedTextures: mcpatcher/ctm/default/0_glass_white/glass_pane_white.properties [17:04:16] [main/INFO] [Config]: [OptiFine] ConnectedTextures: mcpatcher/ctm/default/0_glass_white/glass_white.properties [17:04:16] [main/INFO] [Config]: [OptiFine] ConnectedTextures: mcpatcher/ctm/default/10_glass_purple/glass_pane_purple.properties [17:04:16] [main/INFO] [Config]: [OptiFine] ConnectedTextures: mcpatcher/ctm/default/10_glass_purple/glass_purple.properties [17:04:16] [main/INFO] [Config]: [OptiFine] ConnectedTextures: mcpatcher/ctm/default/11_glass_blue/glass_blue.properties [17:04:16] [main/INFO] [Config]: [OptiFine] ConnectedTextures: mcpatcher/ctm/default/11_glass_blue/glass_pane_blue.properties [17:04:16] [main/INFO] [Config]: [OptiFine] ConnectedTextures: mcpatcher/ctm/default/12_glass_brown/glass_brown.properties [17:04:16] [main/INFO] [Config]: [OptiFine] ConnectedTextures: mcpatcher/ctm/default/12_glass_brown/glass_pane_brown.properties [17:04:16] [main/INFO] [Config]: [OptiFine] ConnectedTextures: mcpatcher/ctm/default/13_glass_green/glass_green.properties [17:04:16] [main/INFO] [Config]: [OptiFine] ConnectedTextures: mcpatcher/ctm/default/13_glass_green/glass_pane_green.properties [17:04:16] [main/INFO] [Config]: [OptiFine] ConnectedTextures: mcpatcher/ctm/default/14_glass_red/glass_pane_red.properties [17:04:16] [main/INFO] [Config]: [OptiFine] ConnectedTextures: mcpatcher/ctm/default/14_glass_red/glass_red.properties [17:04:16] [main/INFO] [Config]: [OptiFine] ConnectedTextures: mcpatcher/ctm/default/15_glass_black/glass_black.properties [17:04:16] [main/INFO] [Config]: [OptiFine] ConnectedTextures: mcpatcher/ctm/default/15_glass_black/glass_pane_black.properties [17:04:16] [main/INFO] [Config]: [OptiFine] ConnectedTextures: mcpatcher/ctm/default/1_glass_orange/glass_orange.properties [17:04:16] [main/INFO] [Config]: [OptiFine] ConnectedTextures: mcpatcher/ctm/default/1_glass_orange/glass_pane_orange.properties [17:04:16] [main/INFO] [Config]: [OptiFine] ConnectedTextures: mcpatcher/ctm/default/2_glass_magenta/glass_magenta.properties [17:04:16] [main/INFO] [Config]: [OptiFine] ConnectedTextures: mcpatcher/ctm/default/2_glass_magenta/glass_pane_magenta.properties [17:04:16] [main/INFO] [Config]: [OptiFine] ConnectedTextures: mcpatcher/ctm/default/3_glass_light_blue/glass_light_blue.properties [17:04:16] [main/INFO] [Config]: [OptiFine] ConnectedTextures: mcpatcher/ctm/default/3_glass_light_blue/glass_pane_light_blue.properties [17:04:16] [main/INFO] [Config]: [OptiFine] ConnectedTextures: mcpatcher/ctm/default/4_glass_yellow/glass_pane_yellow.properties [17:04:16] [main/INFO] [Config]: [OptiFine] ConnectedTextures: mcpatcher/ctm/default/4_glass_yellow/glass_yellow.properties [17:04:16] [main/INFO] [Config]: [OptiFine] ConnectedTextures: mcpatcher/ctm/default/5_glass_lime/glass_lime.properties [17:04:16] [main/INFO] [Config]: [OptiFine] ConnectedTextures: mcpatcher/ctm/default/5_glass_lime/glass_pane_lime.properties [17:04:16] [main/INFO] [Config]: [OptiFine] ConnectedTextures: mcpatcher/ctm/default/6_glass_pink/glass_pane_pink.properties [17:04:16] [main/INFO] [Config]: [OptiFine] ConnectedTextures: mcpatcher/ctm/default/6_glass_pink/glass_pink.properties [17:04:16] [main/INFO] [Config]: [OptiFine] ConnectedTextures: mcpatcher/ctm/default/7_glass_gray/glass_gray.properties [17:04:16] [main/INFO] [Config]: [OptiFine] ConnectedTextures: mcpatcher/ctm/default/7_glass_gray/glass_pane_gray.properties [17:04:16] [main/INFO] [Config]: [OptiFine] ConnectedTextures: mcpatcher/ctm/default/8_glass_silver/glass_pane_silver.properties [17:04:16] [main/INFO] [Config]: [OptiFine] ConnectedTextures: mcpatcher/ctm/default/8_glass_silver/glass_silver.properties [17:04:16] [main/INFO] [Config]: [OptiFine] ConnectedTextures: mcpatcher/ctm/default/9_glass_cyan/glass_cyan.properties [17:04:16] [main/INFO] [Config]: [OptiFine] ConnectedTextures: mcpatcher/ctm/default/9_glass_cyan/glass_pane_cyan.properties [17:04:16] [main/INFO] [Config]: [OptiFine] ConnectedTextures: mcpatcher/ctm/default/bookshelf.properties [17:04:16] [main/INFO] [Config]: [OptiFine] ConnectedTextures: mcpatcher/ctm/default/glass.properties [17:04:16] [main/INFO] [Config]: [OptiFine] ConnectedTextures: mcpatcher/ctm/default/glasspane.properties [17:04:16] [main/INFO] [Config]: [OptiFine] ConnectedTextures: mcpatcher/ctm/default/sandstone.properties [17:04:16] [main/INFO] [Config]: [OptiFine] Multipass connected textures: false [17:04:16] [main/INFO] [Config]: [OptiFine] BetterGrass: Parsing default configuration optifine/bettergrass.properties [17:04:21] [main/INFO] [Config]: [OptiFine] Sprite dependency: forge:items/bucket_cover <- minecraft:items/bucket_empty [17:04:21] [main/INFO] [Config]: [OptiFine] Sprite dependency: forge:items/bucket_cover <- forge:items/vanilla_bucket_cover_mask [17:04:21] [main/INFO] [Config]: [OptiFine] Sprite dependency: forge:items/bucket_cover <- minecraft:items/bucket_empty [17:04:21] [main/INFO] [Config]: [OptiFine] Sprite dependency: forge:items/bucket_cover <- forge:items/vanilla_bucket_cover_mask [17:04:21] [main/INFO] [Config]: [OptiFine] Custom loader: TextureAtlasSprite{name='forge:items/bucket_cover', frameCount=1, rotated=false, x=0, y=0, height=16, width=16, u0=0.0, u1=0.0, v0=0.0, v1=0.0} [17:04:21] [Thread-3/INFO] [Config]: [OptiFine] Version found: D1 [17:04:23] [main/INFO] [Config]: [OptiFine] Custom loader: TextureAtlasSprite{name='minecraft:white', frameCount=1, rotated=false, x=0, y=0, height=16, width=16, u0=0.0, u1=0.0, v0=0.0, v1=0.0} [17:04:25] [main/INFO] [Config]: [OptiFine] Sprite dependency: forge:items/bucket_base <- minecraft:items/bucket_empty [17:04:25] [main/INFO] [Config]: [OptiFine] Custom loader: TextureAtlasSprite{name='forge:items/bucket_base', frameCount=1, rotated=false, x=0, y=0, height=16, width=16, u0=0.0, u1=0.0, v0=0.0, v1=0.0} [17:04:26] [main/INFO] [net.minecraft.client.renderer.texture.TextureMap]: Created: 1024x512 textures-atlas [17:04:30] [main/INFO] [foamfix]: Clearing ModelLoaderRegistry cache (4697 items)... [17:04:30] [main/INFO] [foamfix]: Cleared 4692 objects. [17:04:30] [main/INFO] [foamfix]: Deduplicating models... [17:04:30] [main/INFO] [foamfix]: Deduplicating models... [17:04:33] [main/INFO] [foamfix]: Deduplicated 281432 (+ 73703) objects. [17:04:34] [main/INFO] [foamfix]: JEI search tree manager injection complete! [17:04:34] [main/INFO] [FML]: CLASS: myRecipecore Transformer SUCCESS [17:04:35] [main/INFO] [FML]: Applying holder lookups [17:04:35] [main/INFO] [FML]: Holder lookups applied [17:04:35] [main/INFO] [foamfix]: Deduplicated 108 property sets. [17:04:35] [main/INFO] [foamfix]: Weakening LaunchWrapper resource cache... [17:04:35] [main/INFO] [foamfix]: Registered client-side world unload notifier! [17:04:35] [main/INFO] [foamfix]: Cleaning up ModelLoader... [17:04:36] [main/INFO] [inventorytweaks]: Mod initialized [17:04:37] [main/INFO] [FML]: Injecting itemstacks [17:04:37] [main/INFO] [FML]: Itemstack injection complete [17:04:37] [main/INFO] [Silent Lib]: -------------------------------------------------------------------------------- [17:04:37] [main/INFO] [Silent Lib]: The following is a list of all entities registered as of Silent Lib's post-init: [17:04:37] [main/INFO] [Silent Lib]: AreaEffectCloud 3 minecraft:area_effect_cloud class net.minecraft.entity.EntityAreaEffectCloud [17:04:37] [main/INFO] [Silent Lib]: ArmorStand 30 minecraft:armor_stand class net.minecraft.entity.item.EntityArmorStand [17:04:37] [main/INFO] [Silent Lib]: Arrow 10 minecraft:arrow class net.minecraft.entity.projectile.EntityTippedArrow [17:04:37] [main/INFO] [Silent Lib]: Bat 65 minecraft:bat class net.minecraft.entity.passive.EntityBat [17:04:37] [main/INFO] [Silent Lib]: Blaze 61 minecraft:blaze class net.minecraft.entity.monster.EntityBlaze [17:04:37] [main/INFO] [Silent Lib]: BlightFire 0 scalinghealth:blightfire class net.silentchaos512.scalinghealth.entity.EntityBlightFire [17:04:37] [main/INFO] [Silent Lib]: Boat 41 minecraft:boat class net.minecraft.entity.item.EntityBoat [17:04:37] [main/INFO] [Silent Lib]: CaveSpider 59 minecraft:cave_spider class net.minecraft.entity.monster.EntityCaveSpider [17:04:37] [main/INFO] [Silent Lib]: Chicken 93 minecraft:chicken class net.minecraft.entity.passive.EntityChicken [17:04:37] [main/INFO] [Silent Lib]: Cow 92 minecraft:cow class net.minecraft.entity.passive.EntityCow [17:04:37] [main/INFO] [Silent Lib]: Creeper 50 minecraft:creeper class net.minecraft.entity.monster.EntityCreeper [17:04:37] [main/INFO] [Silent Lib]: Donkey 31 minecraft:donkey class net.minecraft.entity.passive.EntityDonkey [17:04:37] [main/INFO] [Silent Lib]: DragonFireball 26 minecraft:dragon_fireball class net.minecraft.entity.projectile.EntityDragonFireball [17:04:37] [main/INFO] [Silent Lib]: ElderGuardian 4 minecraft:elder_guardian class net.minecraft.entity.monster.EntityElderGuardian [17:04:37] [main/INFO] [Silent Lib]: EnderCrystal 200 minecraft:ender_crystal class net.minecraft.entity.item.EntityEnderCrystal [17:04:37] [main/INFO] [Silent Lib]: EnderDragon 63 minecraft:ender_dragon class net.minecraft.entity.boss.EntityDragon [17:04:37] [main/INFO] [Silent Lib]: Enderman 58 minecraft:enderman class net.minecraft.entity.monster.EntityEnderman [17:04:37] [main/INFO] [Silent Lib]: Endermite 67 minecraft:endermite class net.minecraft.entity.monster.EntityEndermite [17:04:37] [main/INFO] [Silent Lib]: EvocationFangs 33 minecraft:evocation_fangs class net.minecraft.entity.projectile.EntityEvokerFangs [17:04:37] [main/INFO] [Silent Lib]: EvocationIllager 34 minecraft:evocation_illager class net.minecraft.entity.monster.EntityEvoker [17:04:37] [main/INFO] [Silent Lib]: EyeOfEnderSignal 15 minecraft:eye_of_ender_signal class net.minecraft.entity.item.EntityEnderEye [17:04:37] [main/INFO] [Silent Lib]: FallingSand 21 minecraft:falling_block class net.minecraft.entity.item.EntityFallingBlock [17:04:37] [main/INFO] [Silent Lib]: Fireball 12 minecraft:fireball class net.minecraft.entity.projectile.EntityLargeFireball [17:04:37] [main/INFO] [Silent Lib]: FireworksRocketEntity 22 minecraft:fireworks_rocket class net.minecraft.entity.item.EntityFireworkRocket [17:04:37] [main/INFO] [Silent Lib]: freeze 39 toughasnails:freeze class toughasnails.entities.EntityFreeze [17:04:37] [main/INFO] [Silent Lib]: Ghast 56 minecraft:ghast class net.minecraft.entity.monster.EntityGhast [17:04:37] [main/INFO] [Silent Lib]: Giant 53 minecraft:giant class net.minecraft.entity.monster.EntityGiantZombie [17:04:37] [main/INFO] [Silent Lib]: Guardian 68 minecraft:guardian class net.minecraft.entity.monster.EntityGuardian [17:04:37] [main/INFO] [Silent Lib]: Horse 100 minecraft:horse class net.minecraft.entity.passive.EntityHorse [17:04:37] [main/INFO] [Silent Lib]: Husk 23 minecraft:husk class net.minecraft.entity.monster.EntityHusk [17:04:37] [main/INFO] [Silent Lib]: iceball 38 toughasnails:iceball class toughasnails.entities.projectile.EntityIceball [17:04:37] [main/INFO] [Silent Lib]: IllusionIllager 37 minecraft:illusion_illager class net.minecraft.entity.monster.EntityIllusionIllager [17:04:37] [main/INFO] [Silent Lib]: Item 1 minecraft:item class net.minecraft.entity.item.EntityItem [17:04:37] [main/INFO] [Silent Lib]: ItemFrame 18 minecraft:item_frame class net.minecraft.entity.item.EntityItemFrame [17:04:37] [main/INFO] [Silent Lib]: LavaSlime 62 minecraft:magma_cube class net.minecraft.entity.monster.EntityMagmaCube [17:04:37] [main/INFO] [Silent Lib]: LeashKnot 8 minecraft:leash_knot class net.minecraft.entity.EntityLeashKnot [17:04:37] [main/INFO] [Silent Lib]: Llama 103 minecraft:llama class net.minecraft.entity.passive.EntityLlama [17:04:37] [main/INFO] [Silent Lib]: LlamaSpit 104 minecraft:llama_spit class net.minecraft.entity.projectile.EntityLlamaSpit [17:04:37] [main/INFO] [Silent Lib]: MinecartChest 43 minecraft:chest_minecart class net.minecraft.entity.item.EntityMinecartChest [17:04:37] [main/INFO] [Silent Lib]: MinecartCommandBlock 40 minecraft:commandblock_minecart class net.minecraft.entity.item.EntityMinecartCommandBlock [17:04:37] [main/INFO] [Silent Lib]: MinecartFurnace 44 minecraft:furnace_minecart class net.minecraft.entity.item.EntityMinecartFurnace [17:04:37] [main/INFO] [Silent Lib]: MinecartHopper 46 minecraft:hopper_minecart class net.minecraft.entity.item.EntityMinecartHopper [17:04:37] [main/INFO] [Silent Lib]: MinecartRideable 42 minecraft:minecart class net.minecraft.entity.item.EntityMinecartEmpty [17:04:37] [main/INFO] [Silent Lib]: MinecartSpawner 47 minecraft:spawner_minecart class net.minecraft.entity.item.EntityMinecartMobSpawner [17:04:37] [main/INFO] [Silent Lib]: MinecartTNT 45 minecraft:tnt_minecart class net.minecraft.entity.item.EntityMinecartTNT [17:04:37] [main/INFO] [Silent Lib]: Mule 32 minecraft:mule class net.minecraft.entity.passive.EntityMule [17:04:37] [main/INFO] [Silent Lib]: MushroomCow 96 minecraft:mooshroom class net.minecraft.entity.passive.EntityMooshroom [17:04:37] [main/INFO] [Silent Lib]: null -1 minecraft:lightning_bolt null [17:04:37] [main/INFO] [Silent Lib]: Ozelot 98 minecraft:ocelot class net.minecraft.entity.passive.EntityOcelot [17:04:37] [main/INFO] [Silent Lib]: Painting 9 minecraft:painting class net.minecraft.entity.item.EntityPainting [17:04:37] [main/INFO] [Silent Lib]: Parrot 105 minecraft:parrot class net.minecraft.entity.passive.EntityParrot [17:04:37] [main/INFO] [Silent Lib]: Pig 90 minecraft:pig class net.minecraft.entity.passive.EntityPig [17:04:37] [main/INFO] [Silent Lib]: PigZombie 57 minecraft:zombie_pigman class net.minecraft.entity.monster.EntityPigZombie [17:04:37] [main/INFO] [Silent Lib]: PolarBear 102 minecraft:polar_bear class net.minecraft.entity.monster.EntityPolarBear [17:04:37] [main/INFO] [Silent Lib]: PrimedTnt 20 minecraft:tnt class net.minecraft.entity.item.EntityTNTPrimed [17:04:37] [main/INFO] [Silent Lib]: Rabbit 101 minecraft:rabbit class net.minecraft.entity.passive.EntityRabbit [17:04:37] [main/INFO] [Silent Lib]: Sheep 91 minecraft:sheep class net.minecraft.entity.passive.EntitySheep [17:04:37] [main/INFO] [Silent Lib]: Shulker 69 minecraft:shulker class net.minecraft.entity.monster.EntityShulker [17:04:37] [main/INFO] [Silent Lib]: ShulkerBullet 25 minecraft:shulker_bullet class net.minecraft.entity.projectile.EntityShulkerBullet [17:04:37] [main/INFO] [Silent Lib]: Silverfish 60 minecraft:silverfish class net.minecraft.entity.monster.EntitySilverfish [17:04:37] [main/INFO] [Silent Lib]: Skeleton 51 minecraft:skeleton class net.minecraft.entity.monster.EntitySkeleton [17:04:37] [main/INFO] [Silent Lib]: SkeletonHorse 28 minecraft:skeleton_horse class net.minecraft.entity.passive.EntitySkeletonHorse [17:04:37] [main/INFO] [Silent Lib]: Slime 55 minecraft:slime class net.minecraft.entity.monster.EntitySlime [17:04:37] [main/INFO] [Silent Lib]: SmallFireball 13 minecraft:small_fireball class net.minecraft.entity.projectile.EntitySmallFireball [17:04:37] [main/INFO] [Silent Lib]: Snowball 11 minecraft:snowball class net.minecraft.entity.projectile.EntitySnowball [17:04:37] [main/INFO] [Silent Lib]: SnowMan 97 minecraft:snowman class net.minecraft.entity.monster.EntitySnowman [17:04:37] [main/INFO] [Silent Lib]: SpectralArrow 24 minecraft:spectral_arrow class net.minecraft.entity.projectile.EntitySpectralArrow [17:04:37] [main/INFO] [Silent Lib]: Spider 52 minecraft:spider class net.minecraft.entity.monster.EntitySpider [17:04:37] [main/INFO] [Silent Lib]: Squid 94 minecraft:squid class net.minecraft.entity.passive.EntitySquid [17:04:37] [main/INFO] [Silent Lib]: Stray 6 minecraft:stray class net.minecraft.entity.monster.EntityStray [17:04:37] [main/INFO] [Silent Lib]: ThrownEgg 7 minecraft:egg class net.minecraft.entity.projectile.EntityEgg [17:04:37] [main/INFO] [Silent Lib]: ThrownEnderpearl 14 minecraft:ender_pearl class net.minecraft.entity.item.EntityEnderPearl [17:04:37] [main/INFO] [Silent Lib]: ThrownExpBottle 17 minecraft:xp_bottle class net.minecraft.entity.item.EntityExpBottle [17:04:37] [main/INFO] [Silent Lib]: ThrownPotion 16 minecraft:potion class net.minecraft.entity.projectile.EntityPotion [17:04:37] [main/INFO] [Silent Lib]: Vex 35 minecraft:vex class net.minecraft.entity.monster.EntityVex [17:04:37] [main/INFO] [Silent Lib]: Villager 120 minecraft:villager class net.minecraft.entity.passive.EntityVillager [17:04:37] [main/INFO] [Silent Lib]: VillagerGolem 99 minecraft:villager_golem class net.minecraft.entity.monster.EntityIronGolem [17:04:37] [main/INFO] [Silent Lib]: VindicationIllager 36 minecraft:vindication_illager class net.minecraft.entity.monster.EntityVindicator [17:04:37] [main/INFO] [Silent Lib]: Witch 66 minecraft:witch class net.minecraft.entity.monster.EntityWitch [17:04:37] [main/INFO] [Silent Lib]: WitherBoss 64 minecraft:wither class net.minecraft.entity.boss.EntityWither [17:04:37] [main/INFO] [Silent Lib]: WitherSkeleton 5 minecraft:wither_skeleton class net.minecraft.entity.monster.EntityWitherSkeleton [17:04:37] [main/INFO] [Silent Lib]: WitherSkull 19 minecraft:wither_skull class net.minecraft.entity.projectile.EntityWitherSkull [17:04:37] [main/INFO] [Silent Lib]: Wolf 95 minecraft:wolf class net.minecraft.entity.passive.EntityWolf [17:04:37] [main/INFO] [Silent Lib]: XPOrb 2 minecraft:xp_orb class net.minecraft.entity.item.EntityXPOrb [17:04:37] [main/INFO] [Silent Lib]: Zombie 54 minecraft:zombie class net.minecraft.entity.monster.EntityZombie [17:04:37] [main/INFO] [Silent Lib]: ZombieHorse 29 minecraft:zombie_horse class net.minecraft.entity.passive.EntityZombieHorse [17:04:37] [main/INFO] [Silent Lib]: ZombieVillager 27 minecraft:zombie_villager class net.minecraft.entity.monster.EntityZombieVillager [17:04:37] [main/INFO] [Silent Lib]: -------------------------------------------------------------------------------- [17:04:37] [main/INFO] [Silent Lib]: -------------------------------------------------------------------------------- [17:04:37] [main/INFO] [Silent Lib]: The following is a list of all enchantments registered as of Silent Lib's post-init: [17:04:37] [main/INFO] [Silent Lib]: Protección minecraft:protection type=ARMOR [17:04:37] [main/INFO] [Silent Lib]: Protección contra el fuego minecraft:fire_protection type=ARMOR [17:04:37] [main/INFO] [Silent Lib]: Caída de pluma minecraft:feather_falling type=ARMOR_FEET [17:04:37] [main/INFO] [Silent Lib]: Protección contra explosiones minecraft:blast_protection type=ARMOR [17:04:37] [main/INFO] [Silent Lib]: Protección contra proyectiles minecraft:projectile_protection type=ARMOR [17:04:37] [main/INFO] [Silent Lib]: Respiración minecraft:respiration type=ARMOR_HEAD [17:04:37] [main/INFO] [Silent Lib]: Afinidad acuática minecraft:aqua_affinity type=ARMOR_HEAD [17:04:37] [main/INFO] [Silent Lib]: Espinas minecraft:thorns type=ARMOR_CHEST [17:04:37] [main/INFO] [Silent Lib]: Agilidad acuática minecraft:depth_strider type=ARMOR_FEET [17:04:37] [main/INFO] [Silent Lib]: Paso helado minecraft:frost_walker type=ARMOR_FEET [17:04:37] [main/INFO] [Silent Lib]: §cMaldición de ligamiento minecraft:binding_curse type=WEARABLE [17:04:37] [main/INFO] [Silent Lib]: Filo minecraft:sharpness type=WEAPON [17:04:37] [main/INFO] [Silent Lib]: Castigo minecraft:smite type=WEAPON [17:04:37] [main/INFO] [Silent Lib]: Pesadilla de los artrópodos minecraft:bane_of_arthropods type=WEAPON [17:04:37] [main/INFO] [Silent Lib]: Empuje minecraft:knockback type=WEAPON [17:04:37] [main/INFO] [Silent Lib]: Aspecto ígneo minecraft:fire_aspect type=WEAPON [17:04:37] [main/INFO] [Silent Lib]: Botín minecraft:looting type=WEAPON [17:04:37] [main/INFO] [Silent Lib]: Barrido minecraft:sweeping type=WEAPON [17:04:37] [main/INFO] [Silent Lib]: Eficiencia minecraft:efficiency type=DIGGER [17:04:37] [main/INFO] [Silent Lib]: Toque de seda minecraft:silk_touch type=DIGGER [17:04:37] [main/INFO] [Silent Lib]: Irrompibilidad minecraft:unbreaking type=BREAKABLE [17:04:37] [main/INFO] [Silent Lib]: Fortuna minecraft:fortune type=DIGGER [17:04:37] [main/INFO] [Silent Lib]: Poder minecraft:power type=BOW [17:04:37] [main/INFO] [Silent Lib]: Retroceso minecraft:punch type=BOW [17:04:37] [main/INFO] [Silent Lib]: Fuego minecraft:flame type=BOW [17:04:37] [main/INFO] [Silent Lib]: Infinidad minecraft:infinity type=BOW [17:04:37] [main/INFO] [Silent Lib]: Suerte marina minecraft:luck_of_the_sea type=FISHING_ROD [17:04:37] [main/INFO] [Silent Lib]: Atracción minecraft:lure type=FISHING_ROD [17:04:37] [main/INFO] [Silent Lib]: Reparación minecraft:mending type=BREAKABLE [17:04:37] [main/INFO] [Silent Lib]: §cMaldición de desaparición minecraft:vanishing_curse type=ALL [17:04:37] [main/INFO] [Silent Lib]: -------------------------------------------------------------------------------- [17:04:37] [main/INFO] [Silent Lib]: -------------------------------------------------------------------------------- [17:04:37] [main/INFO] [Silent Lib]: The following is a list of all potion effects registered as of Silent Lib's post-init: [17:04:37] [main/INFO] [Silent Lib]: potion.hypothermia toughasnails:hypothermia [17:04:37] [main/INFO] [Silent Lib]: effect.moveSpeed minecraft:speed [17:04:37] [main/INFO] [Silent Lib]: effect.moveSlowdown minecraft:slowness [17:04:37] [main/INFO] [Silent Lib]: effect.digSpeed minecraft:haste [17:04:37] [main/INFO] [Silent Lib]: effect.digSlowDown minecraft:mining_fatigue [17:04:37] [main/INFO] [Silent Lib]: effect.damageBoost minecraft:strength [17:04:37] [main/INFO] [Silent Lib]: effect.heal minecraft:instant_health [17:04:37] [main/INFO] [Silent Lib]: effect.harm minecraft:instant_damage [17:04:37] [main/INFO] [Silent Lib]: effect.jump minecraft:jump_boost [17:04:37] [main/INFO] [Silent Lib]: effect.confusion minecraft:nausea [17:04:37] [main/INFO] [Silent Lib]: effect.regeneration minecraft:regeneration [17:04:37] [main/INFO] [Silent Lib]: effect.resistance minecraft:resistance [17:04:37] [main/INFO] [Silent Lib]: effect.fireResistance minecraft:fire_resistance [17:04:37] [main/INFO] [Silent Lib]: effect.waterBreathing minecraft:water_breathing [17:04:37] [main/INFO] [Silent Lib]: effect.invisibility minecraft:invisibility [17:04:37] [main/INFO] [Silent Lib]: effect.blindness minecraft:blindness [17:04:37] [main/INFO] [Silent Lib]: effect.nightVision minecraft:night_vision [17:04:37] [main/INFO] [Silent Lib]: effect.hunger minecraft:hunger [17:04:37] [main/INFO] [Silent Lib]: effect.weakness minecraft:weakness [17:04:37] [main/INFO] [Silent Lib]: effect.poison minecraft:poison [17:04:37] [main/INFO] [Silent Lib]: effect.wither minecraft:wither [17:04:37] [main/INFO] [Silent Lib]: effect.healthBoost minecraft:health_boost [17:04:37] [main/INFO] [Silent Lib]: effect.absorption minecraft:absorption [17:04:37] [main/INFO] [Silent Lib]: effect.saturation minecraft:saturation [17:04:37] [main/INFO] [Silent Lib]: effect.glowing minecraft:glowing [17:04:37] [main/INFO] [Silent Lib]: effect.levitation minecraft:levitation [17:04:37] [main/INFO] [Silent Lib]: effect.luck minecraft:luck [17:04:37] [main/INFO] [Silent Lib]: effect.unluck minecraft:unluck [17:04:37] [main/INFO] [Silent Lib]: potion.hyperthermia toughasnails:hyperthermia [17:04:37] [main/INFO] [Silent Lib]: potion.thirst toughasnails:thirst [17:04:37] [main/INFO] [Silent Lib]: potion.cold_resistance toughasnails:cold_resistance [17:04:37] [main/INFO] [Silent Lib]: potion.heat_resistance toughasnails:heat_resistance [17:04:37] [main/INFO] [Silent Lib]: potion.hydration toughasnails:hydration [17:04:37] [main/INFO] [Silent Lib]: effect.scalinghealth:bandaged scalinghealth:bandaged [17:04:37] [main/INFO] [Silent Lib]: -------------------------------------------------------------------------------- [17:04:50] [main/INFO] [jei]: Starting JEI... [17:04:50] [main/INFO] [jei]: Registering recipe categories... [17:04:50] [main/INFO] [jei]: Registering recipe categories took 55.36 ms [17:04:50] [main/INFO] [jei]: Registering mod plugins... [17:04:52] [main/INFO] [jei]: Registering mod plugins took 1.852 s [17:04:52] [main/INFO] [jei]: Building recipe registry... [17:04:53] [main/INFO] [jei]: Building recipe registry took 817.6 ms [17:04:53] [main/INFO] [jei]: Building ingredient list... [17:04:53] [main/INFO] [jei]: Building ingredient list took 40.53 ms [17:04:53] [main/INFO] [jei]: Building ingredient filter... [17:04:54] [main/INFO] [jei]: Building ingredient filter took 1.259 s [17:04:54] [main/INFO] [jei]: Building runtime... [17:04:54] [main/INFO] [invtweaks.forge.asm.ContainerTransformer]: InvTweaks: successfully transformed setFocused/func_146195_b [17:04:55] [main/INFO] [jei]: Building runtime took 178.0 ms [17:04:55] [main/INFO] [jei]: Starting JEI took 5.032 s [17:04:55] [main/INFO] [Waila]: Starting Waila... [17:04:55] [main/INFO] [Waila]: Gathering annotated plugins... [17:04:55] [main/INFO] [Waila]: Gathering wrapped IMC plugins... [17:04:55] [main/INFO] [Waila]: Registering plugins... [17:04:55] [main/INFO] [Waila]: Registering plugin at mcp.mobius.waila.addons.core.PluginCore [17:04:55] [main/INFO] [Waila]: Registering plugin at mcp.mobius.waila.addons.capability.PluginCapability [17:04:55] [main/INFO] [Waila]: Registering plugin at mcp.mobius.waila.addons.minecraft.PluginMinecraft [17:04:55] [main/INFO] [Waila]: Registering plugin at net.darkhax.wawla.engine.waila.EntityProvider [17:04:55] [main/INFO] [Waila]: Registering plugin at net.darkhax.wawla.engine.waila.TileProvider [17:04:55] [main/INFO] [Waila]: Starting Waila took 738.9 ms [17:04:56] [main/INFO] [foamfix]: JEI search tree manager injection complete! [17:04:56] [main/INFO] [FML]: Forge Mod Loader has successfully loaded 28 mods [17:04:56] [main/WARN] [net.minecraft.client.settings.GameSettings]: Skipping bad option: lastServer: [17:04:56] [main/WARN] [com.mojang.text2speech.NarratorWindows]: ERROR : Couldn't load Narrator library : Unable to load library 'SAPIWrapper_x64': Native library (win32-x86-64/SAPIWrapper_x64.dll) not found in resource path ([file:/C:/Users/Daniel/AppData/Roaming/.minecraft/libraries/net/minecraftforge/forge/1.12.2-14.23.3.2669/forge-1.12.2-14.23.3.2669.jar, file:/C:/Users/Daniel/AppData/Roaming/.minecraft/libraries/net/minecraft/launchwrapper/1.12/launchwrapper-1.12.jar, file:/C:/Users/Daniel/AppData/Roaming/.minecraft/libraries/org/ow2/asm/asm-all/5.2/asm-all-5.2.jar, file:/C:/Users/Daniel/AppData/Roaming/.minecraft/libraries/jline/jline/2.13/jline-2.13.jar, file:/C:/Users/Daniel/AppData/Roaming/.minecraft/libraries/com/typesafe/akka/akka-actor_2.11/2.3.3/akka-actor_2.11-2.3.3.jar, file:/C:/Users/Daniel/AppData/Roaming/.minecraft/libraries/com/typesafe/config/1.2.1/config-1.2.1.jar, file:/C:/Users/Daniel/AppData/Roaming/.minecraft/libraries/org/scala-lang/scala-actors-migration_2.11/1.1.0/scala-actors-migration_2.11-1.1.0.jar, file:/C:/Users/Daniel/AppData/Roaming/.minecraft/libraries/org/scala-lang/scala-compiler/2.11.1/scala-compiler-2.11.1.jar, file:/C:/Users/Daniel/AppData/Roaming/.minecraft/libraries/org/scala-lang/plugins/scala-continuations-library_2.11/1.0.2/scala-continuations-library_2.11-1.0.2.jar, file:/C:/Users/Daniel/AppData/Roaming/.minecraft/libraries/org/scala-lang/plugins/scala-continuations-plugin_2.11.1/1.0.2/scala-continuations-plugin_2.11.1-1.0.2.jar, file:/C:/Users/Daniel/AppData/Roaming/.minecraft/libraries/org/scala-lang/scala-library/2.11.1/scala-library-2.11.1.jar, file:/C:/Users/Daniel/AppData/Roaming/.minecraft/libraries/org/scala-lang/scala-parser-combinators_2.11/1.0.1/scala-parser-combinators_2.11-1.0.1.jar, file:/C:/Users/Daniel/AppData/Roaming/.minecraft/libraries/org/scala-lang/scala-reflect/2.11.1/scala-reflect-2.11.1.jar, file:/C:/Users/Daniel/AppData/Roaming/.minecraft/libraries/org/scala-lang/scala-swing_2.11/1.0.1/scala-swing_2.11-1.0.1.jar, file:/C:/Users/Daniel/AppData/Roaming/.minecraft/libraries/org/scala-lang/scala-xml_2.11/1.0.2/scala-xml_2.11-1.0.2.jar, file:/C:/Users/Daniel/AppData/Roaming/.minecraft/libraries/lzma/lzma/0.0.1/lzma-0.0.1.jar, file:/C:/Users/Daniel/AppData/Roaming/.minecraft/libraries/net/sf/jopt-simple/jopt-simple/5.0.3/jopt-simple-5.0.3.jar, file:/C:/Users/Daniel/AppData/Roaming/.minecraft/libraries/java3d/vecmath/1.5.2/vecmath-1.5.2.jar, file:/C:/Users/Daniel/AppData/Roaming/.minecraft/libraries/net/sf/trove4j/trove4j/3.0.3/trove4j-3.0.3.jar, file:/C:/Users/Daniel/AppData/Roaming/.minecraft/libraries/org/apache/maven/maven-artifact/3.5.3/maven-artifact-3.5.3.jar, file:/C:/Users/Daniel/AppData/Roaming/.minecraft/libraries/com/mojang/patchy/1.1/patchy-1.1.jar, file:/C:/Users/Daniel/AppData/Roaming/.minecraft/libraries/oshi-project/oshi-core/1.1/oshi-core-1.1.jar, file:/C:/Users/Daniel/AppData/Roaming/.minecraft/libraries/net/java/dev/jna/jna/4.4.0/jna-4.4.0.jar, file:/C:/Users/Daniel/AppData/Roaming/.minecraft/libraries/net/java/dev/jna/platform/3.4.0/platform-3.4.0.jar, file:/C:/Users/Daniel/AppData/Roaming/.minecraft/libraries/com/ibm/icu/icu4j-core-mojang/51.2/icu4j-core-mojang-51.2.jar, file:/C:/Users/Daniel/AppData/Roaming/.minecraft/libraries/net/sf/jopt-simple/jopt-simple/5.0.3/jopt-simple-5.0.3.jar, file:/C:/Users/Daniel/AppData/Roaming/.minecraft/libraries/com/paulscode/codecjorbis/20101023/codecjorbis-20101023.jar, file:/C:/Users/Daniel/AppData/Roaming/.minecraft/libraries/com/paulscode/codecwav/20101023/codecwav-20101023.jar, file:/C:/Users/Daniel/AppData/Roaming/.minecraft/libraries/com/paulscode/libraryjavasound/20101123/libraryjavasound-20101123.jar, file:/C:/Users/Daniel/AppData/Roaming/.minecraft/libraries/com/paulscode/librarylwjglopenal/20100824/librarylwjglopenal-20100824.jar, file:/C:/Users/Daniel/AppData/Roaming/.minecraft/libraries/com/paulscode/soundsystem/20120107/soundsystem-20120107.jar, file:/C:/Users/Daniel/AppData/Roaming/.minecraft/libraries/io/netty/netty-all/4.1.9.Final/netty-all-4.1.9.Final.jar, file:/C:/Users/Daniel/AppData/Roaming/.minecraft/libraries/com/google/guava/guava/21.0/guava-21.0.jar, file:/C:/Users/Daniel/AppData/Roaming/.minecraft/libraries/org/apache/commons/commons-lang3/3.5/commons-lang3-3.5.jar, file:/C:/Users/Daniel/AppData/Roaming/.minecraft/libraries/commons-io/commons-io/2.5/commons-io-2.5.jar, file:/C:/Users/Daniel/AppData/Roaming/.minecraft/libraries/commons-codec/commons-codec/1.10/commons-codec-1.10.jar, file:/C:/Users/Daniel/AppData/Roaming/.minecraft/libraries/net/java/jinput/jinput/2.0.5/jinput-2.0.5.jar, file:/C:/Users/Daniel/AppData/Roaming/.minecraft/libraries/net/java/jutils/jutils/1.0.0/jutils-1.0.0.jar, file:/C:/Users/Daniel/AppData/Roaming/.minecraft/libraries/com/google/code/gson/gson/2.8.0/gson-2.8.0.jar, file:/C:/Users/Daniel/AppData/Roaming/.minecraft/libraries/com/mojang/authlib/1.5.25/authlib-1.5.25.jar, file:/C:/Users/Daniel/AppData/Roaming/.minecraft/libraries/com/mojang/realms/1.10.17/realms-1.10.17.jar, file:/C:/Users/Daniel/AppData/Roaming/.minecraft/libraries/org/apache/commons/commons-compress/1.8.1/commons-compress-1.8.1.jar, file:/C:/Users/Daniel/AppData/Roaming/.minecraft/libraries/org/apache/httpcomponents/httpclient/4.3.3/httpclient-4.3.3.jar, file:/C:/Users/Daniel/AppData/Roaming/.minecraft/libraries/commons-logging/commons-logging/1.1.3/commons-logging-1.1.3.jar, file:/C:/Users/Daniel/AppData/Roaming/.minecraft/libraries/org/apache/httpcomponents/httpcore/4.3.2/httpcore-4.3.2.jar, file:/C:/Users/Daniel/AppData/Roaming/.minecraft/libraries/it/unimi/dsi/fastutil/7.1.0/fastutil-7.1.0.jar, file:/C:/Users/Daniel/AppData/Roaming/.minecraft/libraries/org/apache/logging/log4j/log4j-api/2.8.1/log4j-api-2.8.1.jar, file:/C:/Users/Daniel/AppData/Roaming/.minecraft/libraries/org/apache/logging/log4j/log4j-core/2.8.1/log4j-core-2.8.1.jar, file:/C:/Users/Daniel/AppData/Roaming/.minecraft/libraries/org/lwjgl/lwjgl/lwjgl/2.9.4-nightly-20150209/lwjgl-2.9.4-nightly-20150209.jar, file:/C:/Users/Daniel/AppData/Roaming/.minecraft/libraries/org/lwjgl/lwjgl/lwjgl_util/2.9.4-nightly-20150209/lwjgl_util-2.9.4-nightly-20150209.jar, file:/C:/Users/Daniel/AppData/Roaming/.minecraft/libraries/com/mojang/text2speech/1.10.3/text2speech-1.10.3.jar, file:/C:/Users/Daniel/AppData/Roaming/.minecraft/versions/1.12.2/1.12.2.jar, file:/C:/Users/Daniel/AppData/Roaming/.minecraft/mods/Apple%20Core%20-%203.1.1%20(1.12.2).jar, file:/C:/Users/Daniel/AppData/Roaming/.minecraft/mods/BetterFps%201.4.8%20(1.12.2).jar, file:/C:/Users/Daniel/AppData/Roaming/.minecraft/mods/Fast%20Crafting%20-%202.6%20(1.12+).jar, file:/C:/Users/Daniel/AppData/Roaming/.minecraft/mods/FoamFix%20-%200.9.7%20-%20Anarchy%20(1.12.2).jar, file:/C:/Users/Daniel/AppData/Roaming/.minecraft/mods/Inventory%20Tweaks%20-%201.63%20(1.12.2).jar, file:/C:/Users/Daniel/AppData/Roaming/.minecraft/mods/OfflineSkins-1.12.2-v3a-core.jar, file:/C:/Users/Daniel/AppData/Roaming/.minecraft/mods/OptiFine%20HD%20-%20U%20D1%20(1.12.2)%20.jar, file:/C:/Users/Daniel/AppData/Roaming/.minecraft/mods/Scaling%20Health%20-%201.3.14%20(1.12).jar, file:/C:/Users/Daniel/AppData/Roaming/.minecraft/mods/Tough%20As%20Nails%20-%203.1.0.96%20Universal%20(1.12.2).jar, asmgen:/, file:/C:/Users/Daniel/AppData/Roaming/.minecraft/mods/AI%20Improvements%20-%200.0.1b3%20(1.12+).jar, file:/C:/Users/Daniel/AppData/Roaming/.minecraft/mods/Ambience%201.1%20-%2010%20(1.12+).jar, file:/C:/Users/Daniel/AppData/Roaming/.minecraft/mods/Just%20Enough%20Items%20-%204.9.0.163%20(1.12.2).jar, file:/C:/Users/Daniel/AppData/Roaming/.minecraft/mods/Apple%20Skin%20-%201.0.9%20(1.12.2).jar, file:/C:/Users/Daniel/AppData/Roaming/.minecraft/mods/Better%20Underground%20-%201.1.12%20(1.12.2).jar, file:/C:/Users/Daniel/AppData/Roaming/.minecraft/mods/Death%20Compass%20-%200.0.2%20(1.12.2).jar, file:/C:/Users/Daniel/AppData/Roaming/.minecraft/mods/Hwyla%20-%201.8.25-B40%20(1.12+).jar, file:/C:/Users/Daniel/AppData/Roaming/.minecraft/mods/Iguana%20Tweaks%20Reborn%20-%201.3.3%20(1.12+).jar, file:/C:/Users/Daniel/AppData/Roaming/.minecraft/mods/Just%20Enough%20Dimensions%20-%201.6.0%20(1.12.2).jar, file:/C:/Users/Daniel/AppData/Roaming/.minecraft/mods/Just%20Enough%20Integration%20-%201.5.1.36%20(1.12.2).jar, file:/C:/Users/Daniel/AppData/Roaming/.minecraft/mods/Just%20Enough%20Resources%20-%200.8.7.41%20(1.12.2).jar, file:/C:/Users/Daniel/AppData/Roaming/.minecraft/mods/Mob%20Controller%20-%201.1%20(1.12.2).jar, file:/C:/Users/Daniel/AppData/Roaming/.minecraft/mods/Offline%20Skins%20-%20v3a%20(1.12.2).jar, file:/C:/Users/Daniel/AppData/Roaming/.minecraft/mods/SilentLib%20-%202.2.18%20(1.12+).jar, file:/C:/Users/Daniel/AppData/Roaming/.minecraft/mods/Spice%20of%20Life%20-%201.3.11%20(1.12+).jar, file:/C:/Users/Daniel/AppData/Roaming/.minecraft/mods/TexFix%20-%204.0%20(1.12).jar, file:/C:/Users/Daniel/AppData/Roaming/.minecraft/mods/Wawla%20-%202.5.255%20(1.12.2).jar]) ERROR : Couldn't load Narrator library : Unable to load library 'SAPIWrapper_x86': Native library (win32-x86-64/SAPIWrapper_x86.dll) not found in resource path ([file:/C:/Users/Daniel/AppData/Roaming/.minecraft/libraries/net/minecraftforge/forge/1.12.2-14.23.3.2669/forge-1.12.2-14.23.3.2669.jar, file:/C:/Users/Daniel/AppData/Roaming/.minecraft/libraries/net/minecraft/launchwrapper/1.12/launchwrapper-1.12.jar, file:/C:/Users/Daniel/AppData/Roaming/.minecraft/libraries/org/ow2/asm/asm-all/5.2/asm-all-5.2.jar, file:/C:/Users/Daniel/AppData/Roaming/.minecraft/libraries/jline/jline/2.13/jline-2.13.jar, file:/C:/Users/Daniel/AppData/Roaming/.minecraft/libraries/com/typesafe/akka/akka-actor_2.11/2.3.3/akka-actor_2.11-2.3.3.jar, file:/C:/Users/Daniel/AppData/Roaming/.minecraft/libraries/com/typesafe/config/1.2.1/config-1.2.1.jar, file:/C:/Users/Daniel/AppData/Roaming/.minecraft/libraries/org/scala-lang/scala-actors-migration_2.11/1.1.0/scala-actors-migration_2.11-1.1.0.jar, file:/C:/Users/Daniel/AppData/Roaming/.minecraft/libraries/org/scala-lang/scala-compiler/2.11.1/scala-compiler-2.11.1.jar, file:/C:/Users/Daniel/AppData/Roaming/.minecraft/libraries/org/scala-lang/plugins/scala-continuations-library_2.11/1.0.2/scala-continuations-library_2.11-1.0.2.jar, file:/C:/Users/Daniel/AppData/Roaming/.minecraft/libraries/org/scala-lang/plugins/scala-continuations-plugin_2.11.1/1.0.2/scala-continuations-plugin_2.11.1-1.0.2.jar, file:/C:/Users/Daniel/AppData/Roaming/.minecraft/libraries/org/scala-lang/scala-library/2.11.1/scala-library-2.11.1.jar, file:/C:/Users/Daniel/AppData/Roaming/.minecraft/libraries/org/scala-lang/scala-parser-combinators_2.11/1.0.1/scala-parser-combinators_2.11-1.0.1.jar, file:/C:/Users/Daniel/AppData/Roaming/.minecraft/libraries/org/scala-lang/scala-reflect/2.11.1/scala-reflect-2.11.1.jar, file:/C:/Users/Daniel/AppData/Roaming/.minecraft/libraries/org/scala-lang/scala-swing_2.11/1.0.1/scala-swing_2.11-1.0.1.jar, file:/C:/Users/Daniel/AppData/Roaming/.minecraft/libraries/org/scala-lang/scala-xml_2.11/1.0.2/scala-xml_2.11-1.0.2.jar, file:/C:/Users/Daniel/AppData/Roaming/.minecraft/libraries/lzma/lzma/0.0.1/lzma-0.0.1.jar, file:/C:/Users/Daniel/AppData/Roaming/.minecraft/libraries/net/sf/jopt-simple/jopt-simple/5.0.3/jopt-simple-5.0.3.jar, file:/C:/Users/Daniel/AppData/Roaming/.minecraft/libraries/java3d/vecmath/1.5.2/vecmath-1.5.2.jar, file:/C:/Users/Daniel/AppData/Roaming/.minecraft/libraries/net/sf/trove4j/trove4j/3.0.3/trove4j-3.0.3.jar, file:/C:/Users/Daniel/AppData/Roaming/.minecraft/libraries/org/apache/maven/maven-artifact/3.5.3/maven-artifact-3.5.3.jar, file:/C:/Users/Daniel/AppData/Roaming/.minecraft/libraries/com/mojang/patchy/1.1/patchy-1.1.jar, file:/C:/Users/Daniel/AppData/Roaming/.minecraft/libraries/oshi-project/oshi-core/1.1/oshi-core-1.1.jar, file:/C:/Users/Daniel/AppData/Roaming/.minecraft/libraries/net/java/dev/jna/jna/4.4.0/jna-4.4.0.jar, file:/C:/Users/Daniel/AppData/Roaming/.minecraft/libraries/net/java/dev/jna/platform/3.4.0/platform-3.4.0.jar, file:/C:/Users/Daniel/AppData/Roaming/.minecraft/libraries/com/ibm/icu/icu4j-core-mojang/51.2/icu4j-core-mojang-51.2.jar, file:/C:/Users/Daniel/AppData/Roaming/.minecraft/libraries/net/sf/jopt-simple/jopt-simple/5.0.3/jopt-simple-5.0.3.jar, file:/C:/Users/Daniel/AppData/Roaming/.minecraft/libraries/com/paulscode/codecjorbis/20101023/codecjorbis-20101023.jar, file:/C:/Users/Daniel/AppData/Roaming/.minecraft/libraries/com/paulscode/codecwav/20101023/codecwav-20101023.jar, file:/C:/Users/Daniel/AppData/Roaming/.minecraft/libraries/com/paulscode/libraryjavasound/20101123/libraryjavasound-20101123.jar, file:/C:/Users/Daniel/AppData/Roaming/.minecraft/libraries/com/paulscode/librarylwjglopenal/20100824/librarylwjglopenal-20100824.jar, file:/C:/Users/Daniel/AppData/Roaming/.minecraft/libraries/com/paulscode/soundsystem/20120107/soundsystem-20120107.jar, file:/C:/Users/Daniel/AppData/Roaming/.minecraft/libraries/io/netty/netty-all/4.1.9.Final/netty-all-4.1.9.Final.jar, file:/C:/Users/Daniel/AppData/Roaming/.minecraft/libraries/com/google/guava/guava/21.0/guava-21.0.jar, file:/C:/Users/Daniel/AppData/Roaming/.minecraft/libraries/org/apache/commons/commons-lang3/3.5/commons-lang3-3.5.jar, file:/C:/Users/Daniel/AppData/Roaming/.minecraft/libraries/commons-io/commons-io/2.5/commons-io-2.5.jar, file:/C:/Users/Daniel/AppData/Roaming/.minecraft/libraries/commons-codec/commons-codec/1.10/commons-codec-1.10.jar, file:/C:/Users/Daniel/AppData/Roaming/.minecraft/libraries/net/java/jinput/jinput/2.0.5/jinput-2.0.5.jar, file:/C:/Users/Daniel/AppData/Roaming/.minecraft/libraries/net/java/jutils/jutils/1.0.0/jutils-1.0.0.jar, file:/C:/Users/Daniel/AppData/Roaming/.minecraft/libraries/com/google/code/gson/gson/2.8.0/gson-2.8.0.jar, file:/C:/Users/Daniel/AppData/Roaming/.minecraft/libraries/com/mojang/authlib/1.5.25/authlib-1.5.25.jar, file:/C:/Users/Daniel/AppData/Roaming/.minecraft/libraries/com/mojang/realms/1.10.17/realms-1.10.17.jar, file:/C:/Users/Daniel/AppData/Roaming/.minecraft/libraries/org/apache/commons/commons-compress/1.8.1/commons-compress-1.8.1.jar, file:/C:/Users/Daniel/AppData/Roaming/.minecraft/libraries/org/apache/httpcomponents/httpclient/4.3.3/httpclient-4.3.3.jar, file:/C:/Users/Daniel/AppData/Roaming/.minecraft/libraries/commons-logging/commons-logging/1.1.3/commons-logging-1.1.3.jar, file:/C:/Users/Daniel/AppData/Roaming/.minecraft/libraries/org/apache/httpcomponents/httpcore/4.3.2/httpcore-4.3.2.jar, file:/C:/Users/Daniel/AppData/Roaming/.minecraft/libraries/it/unimi/dsi/fastutil/7.1.0/fastutil-7.1.0.jar, file:/C:/Users/Daniel/AppData/Roaming/.minecraft/libraries/org/apache/logging/log4j/log4j-api/2.8.1/log4j-api-2.8.1.jar, file:/C:/Users/Daniel/AppData/Roaming/.minecraft/libraries/org/apache/logging/log4j/log4j-core/2.8.1/log4j-core-2.8.1.jar, file:/C:/Users/Daniel/AppData/Roaming/.minecraft/libraries/org/lwjgl/lwjgl/lwjgl/2.9.4-nightly-20150209/lwjgl-2.9.4-nightly-20150209.jar, file:/C:/Users/Daniel/AppData/Roaming/.minecraft/libraries/org/lwjgl/lwjgl/lwjgl_util/2.9.4-nightly-20150209/lwjgl_util-2.9.4-nightly-20150209.jar, file:/C:/Users/Daniel/AppData/Roaming/.minecraft/libraries/com/mojang/text2speech/1.10.3/text2speech-1.10.3.jar, file:/C:/Users/Daniel/AppData/Roaming/.minecraft/versions/1.12.2/1.12.2.jar, file:/C:/Users/Daniel/AppData/Roaming/.minecraft/mods/Apple%20Core%20-%203.1.1%20(1.12.2).jar, file:/C:/Users/Daniel/AppData/Roaming/.minecraft/mods/BetterFps%201.4.8%20(1.12.2).jar, file:/C:/Users/Daniel/AppData/Roaming/.minecraft/mods/Fast%20Crafting%20-%202.6%20(1.12+).jar, file:/C:/Users/Daniel/AppData/Roaming/.minecraft/mods/FoamFix%20-%200.9.7%20-%20Anarchy%20(1.12.2).jar, file:/C:/Users/Daniel/AppData/Roaming/.minecraft/mods/Inventory%20Tweaks%20-%201.63%20(1.12.2).jar, file:/C:/Users/Daniel/AppData/Roaming/.minecraft/mods/OfflineSkins-1.12.2-v3a-core.jar, file:/C:/Users/Daniel/AppData/Roaming/.minecraft/mods/OptiFine%20HD%20-%20U%20D1%20(1.12.2)%20.jar, file:/C:/Users/Daniel/AppData/Roaming/.minecraft/mods/Scaling%20Health%20-%201.3.14%20(1.12).jar, file:/C:/Users/Daniel/AppData/Roaming/.minecraft/mods/Tough%20As%20Nails%20-%203.1.0.96%20Universal%20(1.12.2).jar, asmgen:/, file:/C:/Users/Daniel/AppData/Roaming/.minecraft/mods/AI%20Improvements%20-%200.0.1b3%20(1.12+).jar, file:/C:/Users/Daniel/AppData/Roaming/.minecraft/mods/Ambience%201.1%20-%2010%20(1.12+).jar, file:/C:/Users/Daniel/AppData/Roaming/.minecraft/mods/Just%20Enough%20Items%20-%204.9.0.163%20(1.12.2).jar, file:/C:/Users/Daniel/AppData/Roaming/.minecraft/mods/Apple%20Skin%20-%201.0.9%20(1.12.2).jar, file:/C:/Users/Daniel/AppData/Roaming/.minecraft/mods/Better%20Underground%20-%201.1.12%20(1.12.2).jar, file:/C:/Users/Daniel/AppData/Roaming/.minecraft/mods/Death%20Compass%20-%200.0.2%20(1.12.2).jar, file:/C:/Users/Daniel/AppData/Roaming/.minecraft/mods/Hwyla%20-%201.8.25-B40%20(1.12+).jar, file:/C:/Users/Daniel/AppData/Roaming/.minecraft/mods/Iguana%20Tweaks%20Reborn%20-%201.3.3%20(1.12+).jar, file:/C:/Users/Daniel/AppData/Roaming/.minecraft/mods/Just%20Enough%20Dimensions%20-%201.6.0%20(1.12.2).jar, file:/C:/Users/Daniel/AppData/Roaming/.minecraft/mods/Just%20Enough%20Integration%20-%201.5.1.36%20(1.12.2).jar, file:/C:/Users/Daniel/AppData/Roaming/.minecraft/mods/Just%20Enough%20Resources%20-%200.8.7.41%20(1.12.2).jar, file:/C:/Users/Daniel/AppData/Roaming/.minecraft/mods/Mob%20Controller%20-%201.1%20(1.12.2).jar, file:/C:/Users/Daniel/AppData/Roaming/.minecraft/mods/Offline%20Skins%20-%20v3a%20(1.12.2).jar, file:/C:/Users/Daniel/AppData/Roaming/.minecraft/mods/SilentLib%20-%202.2.18%20(1.12+).jar, file:/C:/Users/Daniel/AppData/Roaming/.minecraft/mods/Spice%20of%20Life%20-%201.3.11%20(1.12+).jar, file:/C:/Users/Daniel/AppData/Roaming/.minecraft/mods/TexFix%20-%204.0%20(1.12).jar, file:/C:/Users/Daniel/AppData/Roaming/.minecraft/mods/Wawla%20-%202.5.255%20(1.12.2).jar]) [17:04:56] [main/INFO] [Config]: [OptiFine] *** Reloading custom textures *** [17:05:00] [Thread-7/INFO] [net.minecraft.client.audio.SoundManager]: OpenAL initialized. [17:05:00] [Sound Library Loader/INFO] [net.minecraft.client.audio.SoundManager]: Sound engine started [17:07:21] [Server thread/INFO] [net.minecraft.server.integrated.IntegratedServer]: Starting integrated minecraft server version 1.12.2 [17:07:21] [Server thread/INFO] [net.minecraft.server.integrated.IntegratedServer]: Generating keypair [17:07:21] [Server thread/INFO] [justenoughdimensions]: Copying the file 'C:\Users\Ark\AppData\Roaming\.minecraft\config\justenoughdimensions\justenoughdimensions.cfg' to the new location 'C:\Users\Ark\AppData\Roaming\.minecraft\saves\Copia de Copia de Copia de Mundo\data\justenoughdimensions\justenoughdimensions.cfg' [17:07:21] [Server thread/INFO] [justenoughdimensions]: Reloading the main configs from file 'C:\Users\Ark\AppData\Roaming\.minecraft\config\justenoughdimensions\justenoughdimensions.cfg' [17:07:21] [Server thread/INFO] [justenoughdimensions]: Copying the file 'C:\Users\Ark\AppData\Roaming\.minecraft\config\justenoughdimensions\dimensions.json' to the new location 'C:\Users\Ark\AppData\Roaming\.minecraft\saves\Copia de Copia de Copia de Mundo\data\justenoughdimensions\dimensions.json' [17:07:22] [Server thread/INFO] [FML]: Injecting existing registry data into this server instance [17:07:22] [Server thread/INFO] [FML]: Registry Potion: Activating override iguanatweaks for minecraft:poison [17:07:22] [Server thread/INFO] [foamfix]: JEI search tree manager injection complete! [17:07:22] [Server thread/INFO] [FML]: Applying holder lookups [17:07:22] [Server thread/INFO] [FML]: Holder lookups applied [17:07:22] [Server thread/INFO] [FML]: Loading dimension 0 (test1) (net.minecraft.server.integrated.IntegratedServer@1c6de21a) [17:07:23] [Server thread/INFO] [net.minecraft.advancements.AdvancementList]: Loaded 488 advancements [17:07:24] [Server thread/INFO] [FML]: Loading dimension 1 (test1) (net.minecraft.server.integrated.IntegratedServer@1c6de21a) [17:07:24] [Server thread/INFO] [FML]: Loading dimension -1 (test1) (net.minecraft.server.integrated.IntegratedServer@1c6de21a) [17:07:24] [Server thread/INFO] [net.minecraft.server.MinecraftServer]: Preparing start region for level 0 [17:07:25] [Server thread/INFO] [net.minecraft.server.MinecraftServer]: Preparing spawn area: 5% [17:07:26] [Server thread/INFO] [net.minecraft.server.MinecraftServer]: Preparing spawn area: 7% [17:07:27] [Server thread/INFO] [net.minecraft.server.MinecraftServer]: Preparing spawn area: 10% [17:07:28] [Server thread/INFO] [net.minecraft.server.MinecraftServer]: Preparing spawn area: 14% [17:07:29] [Server thread/INFO] [net.minecraft.server.MinecraftServer]: Preparing spawn area: 16% [17:07:30] [Server thread/INFO] [net.minecraft.server.MinecraftServer]: Preparing spawn area: 21% [17:07:31] [Server thread/INFO] [net.minecraft.server.MinecraftServer]: Preparing spawn area: 28% [17:07:32] [Server thread/INFO] [net.minecraft.server.MinecraftServer]: Preparing spawn area: 35% [17:07:33] [Server thread/INFO] [net.minecraft.server.MinecraftServer]: Preparing spawn area: 43% [17:07:34] [Server thread/INFO] [net.minecraft.server.MinecraftServer]: Preparing spawn area: 49% [17:07:35] [Server thread/INFO] [net.minecraft.server.MinecraftServer]: Preparing spawn area: 54% [17:07:36] [Server thread/INFO] [net.minecraft.server.MinecraftServer]: Preparing spawn area: 58% [17:07:37] [Server thread/INFO] [net.minecraft.server.MinecraftServer]: Preparing spawn area: 64% [17:07:38] [Server thread/INFO] [net.minecraft.server.MinecraftServer]: Preparing spawn area: 69% [17:07:39] [Server thread/INFO] [net.minecraft.server.MinecraftServer]: Preparing spawn area: 76% [17:07:40] [Server thread/INFO] [net.minecraft.server.MinecraftServer]: Preparing spawn area: 82% [17:07:41] [Server thread/INFO] [net.minecraft.server.MinecraftServer]: Preparing spawn area: 89% [17:07:42] [Server thread/INFO] [net.minecraft.server.MinecraftServer]: Preparing spawn area: 97% [17:07:43] [Server thread/INFO] [FML]: Unloading dimension -1 [17:07:43] [Server thread/INFO] [FML]: Unloading dimension 1 [17:07:43] [Server thread/INFO] [net.minecraft.server.integrated.IntegratedServer]: Changing view distance to 5, from 10 [17:07:47] [Server thread/WARN] [net.minecraft.server.MinecraftServer]: Can't keep up! Did the system time change, or is the server overloaded? Running 3674ms behind, skipping 73 tick(s) [17:08:09] [Server thread/INFO] [STDOUT]: [pl.asie.foamfix.coremod.FoamFixTransformer:spliceClasses:110]: pl/asie/foamfix/coremod/injections/crafting/IFoamFixCraftResult [17:08:09] [Server thread/INFO] [STDOUT]: [pl.asie.foamfix.coremod.FoamFixTransformer:spliceClasses:113]: Added INTERFACE: pl/asie/foamfix/coremod/injections/crafting/IFoamFixCraftResult [17:08:09] [Server thread/INFO] [STDOUT]: [pl.asie.foamfix.coremod.FoamFixTransformer:spliceClasses:126]: Spliced in METHOD: net.minecraft.inventory.InventoryCraftResult.func_193056_a [17:08:09] [Server thread/INFO] [STDOUT]: [pl.asie.foamfix.coremod.FoamFixTransformer:spliceClasses:150]: Added METHOD: net.minecraft.inventory.InventoryCraftResult.foamfix_getLastRecipeUsed [17:08:09] [Server thread/INFO] [STDOUT]: [pl.asie.foamfix.coremod.FoamFixTransformer:spliceClasses:173]: Added FIELD: net.minecraft.inventory.InventoryCraftResult.foamfix_lastRecipeUsed [17:08:09] [Netty Local Client IO #0/INFO] [FML]: Server protocol version 2 [17:08:09] [Netty Server IO #1/INFO] [FML]: Client protocol version 2 [17:08:09] [Netty Server IO #1/INFO] [FML]: Client attempting to join with 28 mods : minecraft@1.12.2,mobcontroller@1.1,silentlib@2.2.18,applecore@3.1.1,jei@4.9.0.163,jeiintegration@1.5.1.36,wawla@2.5.255,betterunderground@1.1.2,mcp@9.42,toughasnails@3.1.0.96,offlineskins@1.12.2-v3a,FML@8.0.99.99,inventorytweaks@1.63+release.109.220f184,foamfixcore@7.7.4,appleskin@1.0.9,aiimprovements@0.0.1.3,waila@1.8.25,foamfix@0.9.7-1.12.2,iguanatweaks@1.3.3,death_compass@0.0.2,jeresources@0.8.7.41,spiceoflife@1.3.11,ambience@GRADLE:VERSION-GRADLE:BUILD,forge@14.23.3.2669,texfix@4.0,scalinghealth@1.3.14,fastcrafting@2.6,justenoughdimensions@1.6.0-dev.20180411.215951 [17:08:09] [Netty Local Client IO #0/INFO] [FML]: [Netty Local Client IO #0] Client side modded connection established [17:08:09] [Server thread/INFO] [FML]: [Server thread] Server side modded connection established [17:08:09] [Server thread/INFO] [net.minecraft.server.management.PlayerList]: Ark[local:E:ea4ee007] logged in with entity id 1848 at (-320.5, 72.0, 459.5) [17:08:09] [Server thread/INFO] [net.minecraft.server.MinecraftServer]: Ark has joing the game [17:08:10] [Server thread/INFO] [Waila]: Player EntityPlayerMP['Ark'/1848, l='test1', x=-320.50, y=72.00, z=459.50] connected. Sending ping [17:08:10] [Netty Local Client IO #0/INFO] [Waila]: Received server authentication msg. Remote sync will be activated [17:08:11] [Netty Local Client IO #0/INFO] [toughasnails]: TAN configuration synchronized with the server [17:08:11] [Netty Local Client IO #0/INFO] [toughasnails]: TAN configuration synchronized with the server [17:08:11] [Netty Local Client IO #0/INFO] [toughasnails]: TAN configuration synchronized with the server [17:08:11] [Netty Local Client IO #0/INFO] [toughasnails]: TAN configuration synchronized with the server [17:08:11] [Netty Local Client IO #0/INFO] [toughasnails]: TAN configuration synchronized with the server [17:08:11] [Netty Local Client IO #0/INFO] [toughasnails]: TAN configuration synchronized with the server [17:08:11] [Netty Local Client IO #0/INFO] [toughasnails]: TAN configuration synchronized with the server [17:08:11] [Server thread/INFO] [net.minecraft.server.integrated.IntegratedServer]: Saving and pausing game... [17:08:12] [Server thread/INFO] [net.minecraft.server.MinecraftServer]: Saving chunks for level 'test1'/overworld [17:08:14] [Server thread/WARN] [net.minecraft.server.MinecraftServer]: Can't keep up! Did the system time change, or is the server overloaded? Running 4051ms behind, skipping 81 tick(s) [17:08:22] [Server thread/INFO] [net.minecraft.server.MinecraftServer]: [Ark: Game mode change to Creative] [17:08:22] [main/INFO] [net.minecraft.client.gui.GuiNewChat]: [CHAT] Game mode change to Creative [17:08:43] [Server thread/INFO] [net.minecraft.server.MinecraftServer]: [Ark: Game mode change to Survival] [17:08:43] [main/INFO] [net.minecraft.client.gui.GuiNewChat]: [CHAT] Game mode change to Survival [17:08:45] [Server thread/INFO] [net.minecraft.server.MinecraftServer]: Ark fell from to high up [17:08:45] [main/INFO] [net.minecraft.client.gui.GuiNewChat]: [CHAT] Ark fell from to high up [17:08:47] [Server thread/INFO] [iguanatweaks]: Good spawn found at BlockPos{x=-382, y=62, z=379} [17:08:47] [main/INFO] [net.minecraft.client.gui.GuiNewChat]: [CHAT] You regain conciousness, confused as to where you are [17:08:47] [main/INFO] [net.minecraft.advancements.AdvancementList]: Loaded 7 advancements [17:08:58] [Server thread/INFO] [net.minecraft.network.NetHandlerPlayServer]: Ark lost connection: tried to attack an invalid entity [17:08:58] [Server thread/INFO] [net.minecraft.server.MinecraftServer]: Ark ha dejado la partida [17:08:58] [main/INFO] [toughasnails]: TAN configuration restored to local values [17:08:58] [Server thread/INFO] [net.minecraft.network.NetHandlerPlayServer]: Stopping singleplayer server as player logged out [17:08:58] [Server thread/WARN] [net.minecraft.server.MinecraftServer]: Player Ark tried to attack an invalid entity [17:08:59] [Server thread/WARN] [net.minecraft.network.NetworkManager]: handleDisconnection() called twice [17:08:59] [Server thread/INFO] [net.minecraft.server.MinecraftServer]: Stopping server [17:08:59] [Server thread/INFO] [net.minecraft.server.MinecraftServer]: Saving players [17:08:59] [Server thread/INFO] [net.minecraft.server.MinecraftServer]: Saving worlds [17:08:59] [Server thread/INFO] [net.minecraft.server.MinecraftServer]: Saving chunks for level 'test1'/overworld [17:09:01] [Server thread/INFO] [FML]: Unloading dimension 0 [17:09:01] [Server thread/INFO] [foamfix]: JEI search tree manager injection complete! [17:09:01] [Server thread/INFO] [FML]: Applying holder lookups [17:09:01] [Server thread/INFO] [FML]: Holder lookups applied [17:09:01] [Server thread/INFO] [justenoughdimensions]: Reloading the main configs from file 'C:\Users\Ark\AppData\Roaming\.minecraft\config\justenoughdimensions\justenoughdimensions.cfg' ```
Insane96 commented 6 years ago

Fixed, thanks for reporting

Insane96 commented 6 years ago

But next time please, use pastebin to post logs, generally long things

Arkimu commented 6 years ago

No problem... and will do.

Arkimu commented 6 years ago

I tried the new version... but I'm still getting stuck. I have to return to the main menu and load back to free myself.

Insane96 commented 6 years ago

I had no problems, until I've added Optifine.

Optifine is causing this