Jump to content

update mod from [1.8] to [1.8.8] few errors ??


perromercenary00

Recommended Posts

 

good nigths im trying to update mi mod code to 1.8.8 but i have a lot of red marks in eclipse most of them related to entityes render and gui renders 

 

per example  this is now an error

 

@Override 
protected ResourceLocation getEntityTexture(Entity par1Entity)

 

for the look RenderBiped class has  this method anymore

this come from mi entity_render class  all mi entittyes display this errror

 

 

the next

all this lines show error

        worldrenderer.startDrawingQuads();
              
        worldrenderer.addVertexWithUV( 3.2D, -4.0D, -4.0D, puntoXA , puntoYA );
        worldrenderer.addVertexWithUV( 3.2D, -4.0D, 4.0D,  puntoXA , puntoYB );
        worldrenderer.addVertexWithUV( 3.2D, 4.0D, 4.0D,   puntoXB , puntoYB );
        worldrenderer.addVertexWithUV( 3.2D, 4.0D, -4.0D,  puntoXB , puntoYA );

 

        worldrenderer comes from tesellator

 

        Tessellator tessellator = Tessellator.getInstance();

        WorldRenderer worldrenderer = tessellator.getWorldRenderer();

 

so  Tessellator has no more the methods to render things in screen  ??

this also fucks up mi screen gui clases

 

and

IInventory

has some changes i have not look yet this in deep

 

 

¿¿ there is where some guide o post like guide to make the changes in mi clases to fix the mod for 1.8.8 ??

 

thanks for reading

 

 

 

 

 

 

Link to comment
Share on other sites

.addVertexWithUV(arg1, arg2, arg3, arg4, arg5) is now .pos(arg1, arg2, arg3).tex(arg4, arg5)

I've seen .endVertex() after .tex(arg4, arg5) but do not know if it is 100% definitely needed.

 

.startDrawingQuads is now .begin(7, DefaultVertexFormats.TEXTURE);

NOTE: TEXTURE is an example, depending upon what you are rendering it could be any number of things. If you referred to vanilla code for making it in 1.8, check back and see what was changed there.

Link to comment
Share on other sites

The

Render

class is now generic: it has a type argument

T extends Entity

(i.e. the type of entity that it renders).

Render#getEntityTexture

now takes an argument of type

T

.

 

You could figure this out for yourself if you looked at the source code using your IDE.

Please don't PM me to ask for help. Asking your question in a public thread preserves it for people who are having the same problem in the future.

Link to comment
Share on other sites

 

good days,

i swear yesterday i writte a post whith this same question and is now dissapears

could be alcoho9l related

who knows

 

 

the thing is i wanna update mi alredy working mod form 1.8 to 1.8.8 but i  find changes causing some errors in mi code

i alredy solve some loking in the new vainilla clases but this one really anoys

 

### 1

entity.getName()  not exist eclipse just mark it as an error and the more elegant solution i find in eclipse was

ow = this.getOwner().getDisplayName().toString();

 

and i need to do an

this.getOwner().getName();

 

to dispaly the name of the ownner of this tropper

is there another way to get and entity unlocalizated name  ???

 

 

### 2

the other thing is whith ModelBakery

eclipse now says that

 

"ModelBakery.addVariantName"  method is deprecated and mi mod crash  on run

 

 

Time: 1/01/16 11:04 AM

Description: Initializing game

 

java.lang.OutOfMemoryError: Java heap space

at net.minecraftforge.client.model.pipeline.UnpackedBakedQuad$Builder.<init>(UnpackedBakedQuad.java:97)

at net.minecraftforge.client.model.ItemLayerModel.buildQuad(ItemLayerModel.java:298)

at net.minecraftforge.client.model.ItemLayerModel.buildSideQuad(ItemLayerModel.java:282)

at net.minecraftforge.client.model.ItemLayerModel.addSideQuad(ItemLayerModel.java:207)

at net.minecraftforge.client.model.ItemLayerModel.getQuadsForSprite(ItemLayerModel.java:146)

 

i set the memory to 2G at gradlew and at java the problem remain,

if i disable most of mi texturex in the  MercenaryModTexturas class   

the game runs  whithout all that item texturex  soo a bunch of purple/black tings

 

¿¿¿ Sooo is still valid to declare textures for items this way

 

ModelBakery.addVariantName(MercenaryModItems.taladroPerforador, new String[]{

		"modmercenario:herramientas/taladroperforeador/taladroMercenarioPerforador",
		"modmercenario:herramientas/taladroperforeador/taladroMercenarioPerforador_A00",
		"modmercenario:herramientas/taladroperforeador/taladroMercenarioPerforador_A01",
		"modmercenario:herramientas/taladroperforeador/taladroMercenarioPerforador_A02",
		"modmercenario:herramientas/taladroperforeador/taladroMercenarioPerforador_A03",
		"modmercenario:herramientas/taladroperforeador/taladroMercenarioPerforador_encendido",

		"modmercenario:herramientas/taladroperforeador/taladroMercenarioPerforador3D"


});

Minecraft.getMinecraft().getRenderItem().getItemModelMesher().register(MercenaryModItems.taladroPerforador,0 , 
new ModelResourceLocation("modmercenario:herramientas/taladroperforeador/taladroMercenarioPerforador", "inventory"));

Minecraft.getMinecraft().getRenderItem().getItemModelMesher().register(MercenaryModItems.taladroPerforador,1 , 
new ModelResourceLocation("modmercenario:herramientas/taladroperforeador/taladroMercenarioPerforador_A00", "inventory"));	

Minecraft.getMinecraft().getRenderItem().getItemModelMesher().register(MercenaryModItems.taladroPerforador,2, 
new ModelResourceLocation("modmercenario:herramientas/taladroperforeador/taladroMercenarioPerforador_A01", "inventory"));	

Minecraft.getMinecraft().getRenderItem().getItemModelMesher().register(MercenaryModItems.taladroPerforador,3 , 
new ModelResourceLocation("modmercenario:herramientas/taladroperforeador/taladroMercenarioPerforador_A02", "inventory"));	

 

 

 

 

 

 

 

 

 

 

 

Picked up _JAVA_OPTIONS: -Xmx2g
Java HotSpot(TM) 64-Bit Server VM warning: Using incremental CMS is deprecated and will likely be removed in a future release
[11:25:14] [main/INFO] [GradleStart]: Extra: []
[11:25:14] [main/INFO] [GradleStart]: Running with arguments: [--userProperties, {}, --assetsDir, /home/usuario/.gradle/caches/minecraft/assets, --assetIndex, 1.8, --accessToken{REDACTED}, --version, 1.8.8, --tweakClass, net.minecraftforge.fml.common.launcher.FMLTweaker, --tweakClass, net.minecraftforge.gradle.tweakers.CoremodTweaker]
[11:25:15] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
[11:25:16] [main/INFO] [LaunchWrapper]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
[11:25:16] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker
[11:25:16] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLTweaker
[11:25:16] [main/INFO] [FML]: Forge Mod Loader version 11.15.0.1655 for Minecraft 1.8.8 loading
[11:25:16] [main/INFO] [FML]: Java is Java HotSpot(TM) 64-Bit Server VM, version 1.8.0_65, running on Linux:amd64:3.16.0-4-amd64, installed at /opt/jdk1.8.0_65/jre
[11:25:16] [main/INFO] [FML]: Managed to load a deobfuscated Minecraft name- we are in a deobfuscated environment. Skipping runtime deobfuscation
[11:25:16] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.gradle.tweakers.CoremodTweaker
[11:25:16] [main/INFO] [GradleStart]: Injecting location in coremod net.minecraftforge.fml.relauncher.FMLCorePlugin
[11:25:16] [main/INFO] [GradleStart]: Injecting location in coremod net.minecraftforge.classloading.FMLForgePlugin
[11:25:16] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker
[11:25:16] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLDeobfTweaker
[11:25:16] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.AccessTransformerTweaker
[11:25:16] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker
[11:25:16] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker
[11:25:16] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
[11:25:17] [main/ERROR] [FML]: The binary patch set is missing. Either you are in a development environment, or things are not going to work!
[11:25:22] [main/ERROR] [FML]: FML appears to be missing any signature data. This is not a good thing
[11:25:22] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
[11:25:22] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLDeobfTweaker
[11:25:23] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.gradle.tweakers.AccessTransformerTweaker
[11:25:23] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.TerminalTweaker
[11:25:23] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.TerminalTweaker
[11:25:23] [main/INFO] [LaunchWrapper]: Launching wrapped minecraft {net.minecraft.client.main.Main}
[11:25:27] [Client thread/INFO]: Setting user: Player341
[11:25:32] [Client thread/INFO]: LWJGL Version: 2.9.4
[11:25:36] [Client thread/INFO] [sTDOUT]: [net.minecraftforge.fml.client.SplashProgress:start:246]: ---- Minecraft Crash Report ----
// Ooh. Shiny.

Time: 1/01/16 11:25 AM
Description: Loading screen debug info

This is just a prompt for computer specs to be printed. THIS IS NOT A ERROR


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

-- System Details --
Details:
Minecraft Version: 1.8.8
Operating System: Linux (amd64) version 3.16.0-4-amd64
Java Version: 1.8.0_65, Oracle Corporation
Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation
Memory: 887471552 bytes (846 MB) / 1056309248 bytes (1007 MB) up to 2130051072 bytes (2031 MB)
JVM Flags: 4 total; -Xincgc -Xmx1024M -Xms1024M -Xmx2g
IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0
FML: 
Loaded coremods (and transformers): 
GL info: ' Vendor: 'NVIDIA Corporation' Version: '4.4.0 NVIDIA 340.93' Renderer: 'GeForce GT 520/PCIe/SSE2'
[11:25:36] [Client thread/INFO] [FML]: MinecraftForge v11.15.0.1655 Initialized
[11:25:36] [Client thread/INFO] [FML]: Replaced 204 ore recipies
[11:25:37] [Client thread/INFO] [FML]: Found 0 mods from the command line. Injecting into mod discoverer
[11:25:37] [Client thread/INFO] [FML]: Searching /home/usuario/Modding/forge-1.8.8-11.15.0.1655-mdk/run/mods for mods
[11:25:37] [Client thread/INFO] [modmercenario]: Mod modmercenario is missing the required element 'name'. Substituting modmercenario
[11:25:40] [Client thread/INFO] [FML]: Forge Mod Loader has identified 4 mods to load
[11:25:40] [Client thread/INFO] [FML]: Attempting connection with missing mods [mcp, FML, Forge, modmercenario] at CLIENT
[11:25:40] [Client thread/INFO] [FML]: Attempting connection with missing mods [mcp, FML, Forge, modmercenario] at SERVER
[11:25:41] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:modmercenario
[11:25:41] [Client thread/INFO] [FML]: Processing ObjectHolder annotations
[11:25:41] [Client thread/INFO] [FML]: Found 384 ObjectHolder annotations
[11:25:41] [Client thread/INFO] [FML]: Identifying ItemStackHolder annotations
[11:25:41] [Client thread/INFO] [FML]: Found 0 ItemStackHolder annotations
[11:25:41] [Client thread/INFO] [FML]: Configured a dormant chunk cache size of 0
[11:25:41] [Client thread/INFO] [sTDOUT]: [mercenarymod.Mercenary:preInit:123]: 


###########Aggressive=true
###########
[11:25:41] [Client thread/INFO] [sTDOUT]: [mercenarymod.Mercenary:preInit:124]: 


###########autoreload=false
###########
[11:25:41] [Forge Version Check/INFO] [ForgeVersionCheck]: [Forge] Starting version check at http://files.minecraftforge.net/maven/net/minecraftforge/forge/promotions_slim.json
[11:25:42] [Forge Version Check/INFO] [ForgeVersionCheck]: [Forge] Found status: BETA Target: null
[11:25:43] [Client thread/INFO] [sTDOUT]: [mercenarymod.ClientProxy:preInit:77]: ########


ClientProxy preInit()
[11:25:43] [Client thread/INFO] [sTDOUT]: [mercenarymod.Mercenary:registroSimple:333]: $$$ entityIDSimple=1 mobmercenario
[11:25:43] [Client thread/INFO] [sTDOUT]: [mercenarymod.Mercenary:registroSimple:333]: $$$ entityIDSimple=2 yunoMercenaria
[11:25:43] [Client thread/INFO] [sTDOUT]: [mercenarymod.Mercenary:registroSimple:333]: $$$ entityIDSimple=3 yukiMercenario
[11:25:43] [Client thread/INFO] [sTDOUT]: [mercenarymod.Mercenary:registroSimple:333]: $$$ entityIDSimple=4 aldeanoMercenario00
[11:25:43] [Client thread/INFO] [sTDOUT]: [mercenarymod.Mercenary:registroSimple:333]: $$$ entityIDSimple=5 akCreeper
[11:25:43] [Client thread/INFO] [sTDOUT]: [mercenarymod.Mercenary:registroSimple:333]: $$$ entityIDSimple=6 akCreeperDesert
[11:25:43] [Client thread/INFO] [sTDOUT]: [mercenarymod.Mercenary:registroSimple:333]: $$$ entityIDSimple=12 fantasmaMercenario
[11:25:43] [Client thread/INFO] [sTDOUT]: [mercenarymod.Mercenary:registroSimpleBala:345]: $$$ balaIDSimple=13 perdigon_entity
[11:25:43] [Client thread/INFO] [sTDOUT]: [mercenarymod.Mercenary:registroSimpleBala:345]: $$$ balaIDSimple=14 agujero_entity
[11:25:43] [Client thread/INFO] [sTDOUT]: [mercenarymod.Mercenary:registroSimpleBala:345]: $$$ balaIDSimple=30 c4_entity
[11:25:43] [Client thread/INFO] [sTDOUT]: [mercenarymod.Mercenary:registroSimpleBala:345]: $$$ balaIDSimple=15 bala9mm_entity
[11:25:43] [Client thread/INFO] [sTDOUT]: [mercenarymod.Mercenary:registroSimpleBala:345]: $$$ balaIDSimple=16 bala5728mm_entity
[11:25:43] [Client thread/INFO] [sTDOUT]: [mercenarymod.Mercenary:registroSimpleBala:345]: $$$ balaIDSimple=17 bala45acp_entity
[11:25:43] [Client thread/INFO] [sTDOUT]: [mercenarymod.Mercenary:registroSimpleBala:345]: $$$ balaIDSimple=18 balaRedClub_entity
[11:25:43] [Client thread/INFO] [sTDOUT]: [mercenarymod.Mercenary:registroSimpleBala:345]: $$$ balaIDSimple=19 bala55645mm_entity
[11:25:43] [Client thread/INFO] [sTDOUT]: [mercenarymod.Mercenary:registroSimpleBala:345]: $$$ balaIDSimple=20 bala76239mm_entity
[11:25:43] [Client thread/INFO] [sTDOUT]: [mercenarymod.Mercenary:registroSimpleBala:345]: $$$ balaIDSimple=21 granadaMercenariaExplosiva_entity
[11:25:43] [Client thread/INFO] [sTDOUT]: [mercenarymod.Mercenary:registroSimpleBala:345]: $$$ balaIDSimple=22 fragmento_entity
[11:25:43] [Client thread/INFO] [sTDOUT]: [mercenarymod.Mercenary:registroSimpleBala:345]: $$$ balaIDSimple=23 flechaMercenariaVainilla_entity
[11:25:43] [Client thread/INFO] [sTDOUT]: [mercenarymod.Mercenary:registroSimpleBala:345]: $$$ balaIDSimple=24 flechaMercenariaAcero_entity
[11:25:43] [Client thread/INFO] [sTDOUT]: [mercenarymod.Mercenary:registroSimpleBala:345]: $$$ balaIDSimple=25 flechaMercenariaRedstone_entity
[11:25:43] [Client thread/INFO] [sTDOUT]: [mercenarymod.Mercenary:registroSimpleBala:345]: $$$ balaIDSimple=26 flechaMercenariaObsidiana_entity
[11:25:43] [Client thread/INFO] [sTDOUT]: [mercenarymod.Mercenary:registroSimpleBala:345]: $$$ balaIDSimple=27 flechaMercenariaExplosiva_entity
[11:25:43] [Client thread/INFO] [sTDOUT]: [mercenarymod.Mercenary:registroSimple:333]: $$$ entityIDSimple=29 greenMan
[11:25:43] [Client thread/INFO] [FML]: Applying holder lookups
[11:25:43] [Client thread/INFO] [FML]: Holder lookups applied
[11:25:43] [Client thread/INFO] [FML]: Injecting itemstacks
[11:25:43] [Client thread/INFO] [FML]: Itemstack injection complete
[11:25:43] [Client thread/INFO] [sTDOUT]: [tv.twitch.StandardCoreAPI:<init>:16]: If on Windows, make sure to provide all of the necessary dll's as specified in the twitchsdk README. Also, make sure to set the PATH environment variable to point to the directory containing the dll's.
[11:25:43] [Client thread/ERROR]: Couldn't initialize twitch stream
[11:25:43] [sound Library Loader/INFO]: Starting up SoundSystem...
[11:25:43] [Thread-8/INFO]: Initializing LWJGL OpenAL
[11:25:43] [Thread-8/INFO]: (The LWJGL binding of OpenAL.  For more information, see http://www.lwjgl.org)
[11:25:44] [Thread-8/INFO]: OpenAL initialized.
[11:25:44] [sound Library Loader/INFO]: Sound engine started
[11:25:46] [Client thread/INFO] [FML]: Max texture size: 16384
[11:25:46] [Client thread/INFO]: Created: 16x16 textures-atlas
[11:25:47] [Client thread/ERROR] [FML]: Model definition for location modmercenario:pistolaFM92_9mm#inventory not found
[11:25:47] [Client thread/ERROR] [FML]: Model definition for location modmercenario:pistola1911colt_Dummy#inventory not found
[11:25:47] [Client thread/ERROR] [FML]: Model definition for location modmercenario:revolverMagnum_Dummy#inventory not found
[11:25:47] [Client thread/ERROR] [FML]: Model definition for location modmercenario:lanzagranadas79M_Dummy#inventory not found
[11:25:47] [Client thread/ERROR] [FML]: Model definition for location modmercenario:pistolaFM93R_9mm#inventory not found
[11:25:47] [Client thread/ERROR] [FML]: Model definition for location modmercenario:subfusilMP5T5_9mm#inventory not found
[11:25:47] [Client thread/ERROR] [FML]: Model definition for location modmercenario:pistolaMauserC92#inventory not found
[11:25:47] [Client thread/ERROR] [FML]: Model definition for location modmercenario:subfusilAresFMG_Dummy#inventory not found
[11:25:47] [Client thread/ERROR] [FML]: Model definition for location modmercenario:maletin01#inventory not found
[11:25:47] [Client thread/ERROR] [FML]: Model definition for location modmercenario:pistolaDesertEagle_Dummy#inventory not found
[11:25:47] [Client thread/ERROR] [FML]: Model definition for location modmercenario:pistola1911colt_45acp#inventory not found
[11:25:47] [Client thread/ERROR] [FML]: Model definition for location modmercenario:pistolaMauserC92_Dummy#inventory not found
[11:25:47] [Client thread/ERROR] [FML]: Model definition for location modmercenario:subfusil90PNF_5728#inventory not found
[11:25:47] [Client thread/ERROR] [FML]: Model definition for location modmercenario:chalecoCarcaj#inventory not found
[11:25:47] [Client thread/ERROR] [FML]: Model definition for location modmercenario:pistolaRedClub_Dummy#inventory not found
[11:25:47] [Client thread/ERROR] [FML]: Model definition for location modmercenario:taladroPerforador#inventory not found
[11:25:47] [Client thread/ERROR] [FML]: Model definition for location modmercenario:arcoMercenarioDeMadera_Dummy#inventory not found
[11:25:47] [Client thread/ERROR] [FML]: Model definition for location modmercenario:chalecoBackpack01#inventory not found
[11:25:47] [Client thread/ERROR] [FML]: Model definition for location modmercenario:vallestaMercenaria_Dummy#inventory not found
[11:25:47] [Client thread/ERROR] [FML]: Model definition for location modmercenario:bandanaRoja#inventory not found
[11:25:47] [Client thread/ERROR] [FML]: Model definition for location modmercenario:pistolaSocom#inventory not found
[11:25:47] [Client thread/ERROR] [FML]: Model definition for location modmercenario:escopetaSPAS12_Dummy#inventory not found
[11:25:47] [Client thread/ERROR] [FML]: Model definition for location modmercenario:arcoMercenario_Dummy#inventory not found
[11:25:47] [Client thread/ERROR] [FML]: Model definition for location modmercenario:pistolaDesertEagle_45acp#inventory not found
[11:25:47] [Client thread/ERROR] [FML]: Model definition for location modmercenario:maletin00#inventory not found
[11:25:47] [Client thread/ERROR] [FML]: Model definition for location modmercenario:maletin01_blocke#inventory not found
[11:25:47] [Client thread/ERROR] [FML]: Model definition for location modmercenario:revolverMagnum_45acp#inventory not found
[11:25:47] [Client thread/ERROR] [FML]: Model definition for location modmercenario:maletin00_blocke#inventory not found
[11:25:47] [Client thread/ERROR] [FML]: Model definition for location modmercenario:vallestaMercenariaDeMadera_Dummy#inventory not found
[11:25:47] [Client thread/ERROR] [FML]: Model definition for location modmercenario:pistolaSocom_Dummy#inventory not found
[11:25:48] [Client thread/ERROR] [FML]: Model definition for location modmercenario:escopetaWinchester1200_Dummy#inventory not found
[11:25:48] [Client thread/ERROR] [FML]: Model definition for location modmercenario:subfusil57ar_5728#inventory not found
[11:25:48] [Client thread/ERROR] [FML]: Model definition for location modmercenario:chalecoBackpack02#inventory not found
[11:25:48] [Client thread/ERROR] [FML]: Model definition for location modmercenario:pistola57NF_5728#inventory not found
[11:25:48] [Client thread/ERROR] [FML]: Model definition for location modmercenario:pistolaSocomS#inventory not found
[11:25:48] [Client thread/ERROR] [FML]: Model definition for location modmercenario:chalecoBackpack00#inventory not found
[11:25:48] [Client thread/ERROR] [FML]: Model definition for location modmercenario:pistolaSocomS_Dummy#inventory not found
[11:25:48] [Client thread/INFO] [sTDOUT]: [mercenarymod.ClientProxy:init:102]: ########


ClientProxy init()
[11:25:48] [Client thread/INFO] [sTDOUT]: [mercenarymod.Mercenary:init:277]: bosaju[0]Forest
[11:25:48] [Client thread/INFO] [sTDOUT]: [mercenarymod.Mercenary:init:277]: bosaju[1]ForestHills
[11:25:48] [Client thread/INFO] [sTDOUT]: [mercenarymod.Mercenary:init:277]: bosaju[2]Jungle
[11:25:48] [Client thread/INFO] [sTDOUT]: [mercenarymod.Mercenary:init:277]: bosaju[3]JungleHills
[11:25:48] [Client thread/INFO] [sTDOUT]: [mercenarymod.Mercenary:init:277]: bosaju[4]JungleEdge
[11:25:48] [Client thread/INFO] [sTDOUT]: [mercenarymod.Mercenary:init:277]: bosaju[5]Birch Forest
[11:25:48] [Client thread/INFO] [sTDOUT]: [mercenarymod.Mercenary:init:277]: bosaju[6]Birch Forest Hills
[11:25:48] [Client thread/INFO] [sTDOUT]: [mercenarymod.Mercenary:init:277]: bosaju[7]Roofed Forest
[11:25:48] [Client thread/INFO] [sTDOUT]: [mercenarymod.Mercenary:init:277]: bosaju[8]Flower Forest
[11:25:48] [Client thread/INFO] [sTDOUT]: [mercenarymod.Mercenary:init:277]: bosaju[9]Jungle M
[11:25:48] [Client thread/INFO] [sTDOUT]: [mercenarymod.Mercenary:init:277]: bosaju[10]JungleEdge M
[11:25:48] [Client thread/INFO] [sTDOUT]: [mercenarymod.Mercenary:init:277]: bosaju[11]Birch Forest M
[11:25:48] [Client thread/INFO] [sTDOUT]: [mercenarymod.Mercenary:init:277]: bosaju[12]Birch Forest Hills M
[11:25:48] [Client thread/INFO] [sTDOUT]: [mercenarymod.Mercenary:init:277]: bosaju[13]Roofed Forest M
[11:25:48] [Client thread/INFO] [FML]: Injecting itemstacks
[11:25:48] [Client thread/INFO] [FML]: Itemstack injection complete
[11:25:48] [Client thread/INFO] [sTDOUT]: [mercenarymod.ClientProxy:postInit:171]: ########


ClientProxy postInit()
[11:25:49] [Client thread/INFO] [FML]: Forge Mod Loader has successfully loaded 4 mods
[11:25:49] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:modmercenario
[11:25:49] [Client thread/INFO]: SoundSystem shutting down...
[11:25:49] [Client thread/WARN]: Author: Paul Lamb, www.paulscode.com
[11:25:49] [sound Library Loader/INFO]: Starting up SoundSystem...
[11:25:49] [Thread-10/INFO]: Initializing LWJGL OpenAL
[11:25:49] [Thread-10/INFO]: (The LWJGL binding of OpenAL.  For more information, see http://www.lwjgl.org)
[11:25:49] [Thread-10/INFO]: OpenAL initialized.
[11:25:49] [sound Library Loader/INFO]: Sound engine started
[11:25:51] [Client thread/INFO] [FML]: Max texture size: 16384
[11:25:57] [Client thread/INFO]: Created: 8192x4096 textures-atlas
[11:28:01] [Client thread/INFO] [sTDOUT]: [net.minecraft.init.Bootstrap:printToSYSOUT:612]: ---- Minecraft Crash Report ----
// Don't do that.

Time: 1/01/16 11:28 AM
Description: Initializing game

java.lang.OutOfMemoryError: Java heap space
at net.minecraftforge.client.model.pipeline.UnpackedBakedQuad$Builder.<init>(UnpackedBakedQuad.java:97)
at net.minecraftforge.client.model.ItemLayerModel.buildQuad(ItemLayerModel.java:298)
at net.minecraftforge.client.model.ItemLayerModel.buildSideQuad(ItemLayerModel.java:282)
at net.minecraftforge.client.model.ItemLayerModel.addSideQuad(ItemLayerModel.java:207)
at net.minecraftforge.client.model.ItemLayerModel.getQuadsForSprite(ItemLayerModel.java:154)
at net.minecraftforge.client.model.ItemLayerModel.bake(ItemLayerModel.java:89)
at net.minecraftforge.client.model.ModelLoader$VanillaModelWrapper.bake(ModelLoader.java:464)
at net.minecraftforge.client.model.ModelLoader.setupModelRegistry(ModelLoader.java:146)
at net.minecraft.client.resources.model.ModelManager.onResourceManagerReload(ModelManager.java:28)
at net.minecraft.client.resources.SimpleReloadableResourceManager.notifyReloadListeners(SimpleReloadableResourceManager.java:130)
at net.minecraft.client.resources.SimpleReloadableResourceManager.reloadResources(SimpleReloadableResourceManager.java:111)
at net.minecraft.client.Minecraft.refreshResources(Minecraft.java:772)
at net.minecraftforge.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:323)
at net.minecraft.client.Minecraft.startGame(Minecraft.java:532)
at net.minecraft.client.Minecraft.run(Minecraft.java:360)
at net.minecraft.client.main.Main.main(Main.java:116)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:497)
at net.minecraft.launchwrapper.Launch.launch(Launch.java:135)
at net.minecraft.launchwrapper.Launch.main(Launch.java:28)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:497)
at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97)
at GradleStart.main(GradleStart.java:26)


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

-- Head --
Stacktrace:
at net.minecraftforge.client.model.pipeline.UnpackedBakedQuad$Builder.<init>(UnpackedBakedQuad.java:97)
at net.minecraftforge.client.model.ItemLayerModel.buildQuad(ItemLayerModel.java:298)
at net.minecraftforge.client.model.ItemLayerModel.buildSideQuad(ItemLayerModel.java:282)
at net.minecraftforge.client.model.ItemLayerModel.addSideQuad(ItemLayerModel.java:207)
at net.minecraftforge.client.model.ItemLayerModel.getQuadsForSprite(ItemLayerModel.java:154)
at net.minecraftforge.client.model.ItemLayerModel.bake(ItemLayerModel.java:89)
at net.minecraftforge.client.model.ModelLoader$VanillaModelWrapper.bake(ModelLoader.java:464)
at net.minecraftforge.client.model.ModelLoader.setupModelRegistry(ModelLoader.java:146)
at net.minecraft.client.resources.model.ModelManager.onResourceManagerReload(ModelManager.java:28)
at net.minecraft.client.resources.SimpleReloadableResourceManager.notifyReloadListeners(SimpleReloadableResourceManager.java:130)
at net.minecraft.client.resources.SimpleReloadableResourceManager.reloadResources(SimpleReloadableResourceManager.java:111)
at net.minecraft.client.Minecraft.refreshResources(Minecraft.java:772)
at net.minecraftforge.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:323)
at net.minecraft.client.Minecraft.startGame(Minecraft.java:532)

-- Initialization --
Details:
Stacktrace:
at net.minecraft.client.Minecraft.run(Minecraft.java:360)
at net.minecraft.client.main.Main.main(Main.java:116)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:497)
at net.minecraft.launchwrapper.Launch.launch(Launch.java:135)
at net.minecraft.launchwrapper.Launch.main(Launch.java:28)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:497)
at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97)
at GradleStart.main(GradleStart.java:26)

-- System Details --
Details:
Minecraft Version: 1.8.8
Operating System: Linux (amd64) version 3.16.0-4-amd64
Java Version: 1.8.0_65, Oracle Corporation
Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation
Memory: 1297928 bytes (1 MB) / 2130051072 bytes (2031 MB) up to 2130051072 bytes (2031 MB)
JVM Flags: 4 total; -Xincgc -Xmx1024M -Xms1024M -Xmx2g
IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0
FML: MCP 9.18 Powered by Forge 11.15.0.1655 4 mods loaded, 4 mods active
States: 'U' = Unloaded 'L' = Loaded 'C' = Constructed 'H' = Pre-initialized 'I' = Initialized 'J' = Post-initialized 'A' = Available 'D' = Disabled 'E' = Errored
UCHIJA	mcp{9.18} [Minecraft Coder Pack] (minecraft.jar) 
UCHIJA	FML{8.0.99.99} [Forge Mod Loader] (forgeSrc-1.8.8-11.15.0.1655.jar) 
UCHIJA	Forge{11.15.0.1655} [Minecraft Forge] (forgeSrc-1.8.8-11.15.0.1655.jar) 
UCHIJA	modmercenario{1.8} [modmercenario] (bin) 
Loaded coremods (and transformers): 
GL info: ' Vendor: 'NVIDIA Corporation' Version: '4.4.0 NVIDIA 340.93' Renderer: 'GeForce GT 520/PCIe/SSE2'
Launched Version: 1.8.8
LWJGL: 2.9.4
OpenGL: GeForce GT 520/PCIe/SSE2 GL version 4.4.0 NVIDIA 340.93, NVIDIA Corporation
GL Caps: Using GL 1.3 multitexturing.
Using GL 1.3 texture combiners.
Using framebuffer objects because OpenGL 3.0 is supported and separate blending is supported.
Shaders are available because OpenGL 2.1 is supported.
VBOs are available because OpenGL 1.5 is supported.

Using VBOs: No
Is Modded: Definitely; Client brand changed to 'fml,forge'
Type: Client (map_client.txt)
Resource Packs: 
Current Language: English (US)
Profiler Position: N/A (disabled)
CPU: 2x Intel(R) Celeron(R) CPU G1610 @ 2.60GHz
[11:28:01] [Thread-7/ERROR] [FML]: Splash thread Exception
java.lang.OutOfMemoryError: Java heap space
at java.util.Arrays.copyOf(Arrays.java:3332) ~[?:1.8.0_65]
at java.lang.AbstractStringBuilder.expandCapacity(AbstractStringBuilder.java:137) ~[?:1.8.0_65]
at java.lang.AbstractStringBuilder.ensureCapacityInternal(AbstractStringBuilder.java:121) ~[?:1.8.0_65]
at java.lang.AbstractStringBuilder.append(AbstractStringBuilder.java:421) ~[?:1.8.0_65]
at java.lang.StringBuilder.append(StringBuilder.java:136) ~[?:1.8.0_65]
at net.minecraftforge.fml.client.SplashProgress$3.drawBar(SplashProgress.java:414) ~[splashProgress$3.class:?]
at net.minecraftforge.fml.client.SplashProgress$3.run(SplashProgress.java:327) ~[splashProgress$3.class:?]
at java.lang.Thread.run(Thread.java:745) [?:1.8.0_65]
[11:28:01] [Client thread/INFO] [sTDOUT]: [net.minecraft.init.Bootstrap:printToSYSOUT:612]: #@!@# Game crashed! Crash report saved to: #@!@# /home/usuario/Modding/forge-1.8.8-11.15.0.1655-mdk/run/./crash-reports/crash-2016-01-01_11.28.01-client.txt
AL lib: (EE) alc_cleanup: 1 device not closed

 

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Announcements



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • Found the solution, will be closing this soon. The Minecraft mining overlay can be rendered using: "serverplayer.connection.send(new ClientboundBlockDestructionPacket(serverplayer.getId(), blockpos, i));" Everything else is completely unnecessary, and I was making this harder than it had to be.
    • [17:35:03] [main/INFO] [cp.mo.mo.Launcher/MODLAUNCHER]: ModLauncher running: args [--launchTarget, forgeclientuserdev, --version, MOD_DEV, --assetIndex, 5, --assetsDir, C:\Users\moraw\.gradle\caches\forge_gradle\assets, --gameDir, ., --fml.forgeVersion, 47.3.0, --fml.mcVersion, 1.20.1, --fml.forgeGroup, net.minecraftforge, --fml.mcpVersion, 20230612.114412] [17:35:03] [main/INFO] [cp.mo.mo.Launcher/MODLAUNCHER]: ModLauncher 10.0.9+10.0.9+main.dcd20f30 starting: java version 17.0.12 by Eclipse Adoptium; OS Windows 10 arch amd64 version 10.0 [17:35:03] [main/DEBUG] [cp.mo.mo.LaunchServiceHandler/MODLAUNCHER]: Found launch services [fmlclientdev,forgeclient,minecraft,forgegametestserverdev,fmlserveruserdev,fmlclient,fmldatauserdev,forgeserverdev,forgeserveruserdev,forgeclientdev,forgeclientuserdev,forgeserver,forgedatadev,fmlserver,fmlclientuserdev,fmlserverdev,forgedatauserdev,testharness,forgegametestserveruserdev] [17:35:03] [main/DEBUG] [cp.mo.mo.NameMappingServiceHandler/MODLAUNCHER]: Found naming services : [srgtomcp] [17:35:03] [main/DEBUG] [cp.mo.mo.LaunchPluginHandler/MODLAUNCHER]: Found launch plugins: [mixin,eventbus,slf4jfixer,object_holder_definalize,runtime_enum_extender,capability_token_subclass,accesstransformer,runtimedistcleaner] [17:35:03] [main/DEBUG] [cp.mo.mo.TransformationServicesHandler/MODLAUNCHER]: Discovering transformation services [17:35:03] [main/DEBUG] [ne.mi.fm.lo.FMLPaths/CORE]: Path GAMEDIR is C:\Users\moraw\Documents\Livestock\run [17:35:03] [main/DEBUG] [ne.mi.fm.lo.FMLPaths/CORE]: Path MODSDIR is C:\Users\moraw\Documents\Livestock\run\mods [17:35:03] [main/DEBUG] [ne.mi.fm.lo.FMLPaths/CORE]: Path CONFIGDIR is C:\Users\moraw\Documents\Livestock\run\config [17:35:03] [main/DEBUG] [ne.mi.fm.lo.FMLPaths/CORE]: Path FMLCONFIG is C:\Users\moraw\Documents\Livestock\run\config\fml.toml [17:35:03] [main/DEBUG] [cp.mo.mo.TransformationServicesHandler/MODLAUNCHER]: Found additional transformation services from discovery services: [17:35:03] [main/INFO] [ne.mi.fm.lo.ImmediateWindowHandler/]: Loading ImmediateWindowProvider fmlearlywindow [17:35:03] [main/INFO] [EARLYDISPLAY/]: Trying GL version 4.6 [17:35:03] [main/INFO] [EARLYDISPLAY/]: Requested GL version 4.6 got version 4.6 [17:35:03] [main/DEBUG] [cp.mo.mo.TransformationServicesHandler/MODLAUNCHER]: Found transformer services : [mixin,fml] [17:35:03] [main/DEBUG] [cp.mo.mo.TransformationServicesHandler/MODLAUNCHER]: Transformation services loading [17:35:03] [main/DEBUG] [cp.mo.mo.TransformationServiceDecorator/MODLAUNCHER]: Loading service mixin [17:35:03] [main/DEBUG] [cp.mo.mo.TransformationServiceDecorator/MODLAUNCHER]: Loaded service mixin [17:35:03] [main/DEBUG] [cp.mo.mo.TransformationServiceDecorator/MODLAUNCHER]: Loading service fml [17:35:03] [main/DEBUG] [ne.mi.fm.lo.LauncherVersion/CORE]: Found FMLLauncher version 1.0 [17:35:03] [main/DEBUG] [ne.mi.fm.lo.FMLLoader/CORE]: FML 1.0 loading [17:35:03] [main/DEBUG] [ne.mi.fm.lo.FMLLoader/CORE]: FML found ModLauncher version : 10.0.9+10.0.9+main.dcd20f30 [17:35:03] [main/DEBUG] [ne.mi.fm.lo.FMLLoader/CORE]: FML found AccessTransformer version : 8.0.4+66+master.c09db6d7 [17:35:03] [main/DEBUG] [ne.mi.fm.lo.FMLLoader/CORE]: FML found EventBus version : 6.0.5+6.0.5+master.eb8e549b [17:35:03] [main/DEBUG] [ne.mi.fm.lo.FMLLoader/CORE]: Found Runtime Dist Cleaner [17:35:03] [main/DEBUG] [ne.mi.fm.lo.FMLLoader/CORE]: FML found CoreMod version : 5.1.6 [17:35:03] [main/DEBUG] [ne.mi.fm.lo.FMLLoader/CORE]: Found ForgeSPI package implementation version 7.0.1+7.0.1+master.d2b38bf6 [17:35:03] [main/DEBUG] [ne.mi.fm.lo.FMLLoader/CORE]: Found ForgeSPI package specification 5 [17:35:03] [main/DEBUG] [cp.mo.mo.TransformationServiceDecorator/MODLAUNCHER]: Loaded service fml [17:35:03] [main/DEBUG] [cp.mo.mo.TransformationServicesHandler/MODLAUNCHER]: Configuring option handling for services [17:35:03] [main/DEBUG] [cp.mo.mo.TransformationServicesHandler/MODLAUNCHER]: Transformation services initializing [17:35:03] [main/DEBUG] [cp.mo.mo.TransformationServiceDecorator/MODLAUNCHER]: Initializing transformation service mixin [17:35:03] [main/DEBUG] [mixin/]: MixinService [ModLauncher] was successfully booted in cpw.mods.cl.ModuleClassLoader@34b7ac2f [17:35:04] [main/INFO] [mixin/]: SpongePowered MIXIN Subsystem Version=0.8.5 Source=union:/C:/Users/moraw/.gradle/caches/modules-2/files-2.1/org.spongepowered/mixin/0.8.5/9d1c0c3a304ae6697ecd477218fa61b850bf57fc/mixin-0.8.5.jar%23126!/ Service=ModLauncher Env=CLIENT [17:35:04] [main/DEBUG] [mixin/]: Initialising Mixin Platform Manager [17:35:04] [main/DEBUG] [mixin/]: Adding mixin platform agents for container ModLauncher Root Container(ModLauncher:4f56a0a2) [17:35:04] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for ModLauncher Root Container(ModLauncher:4f56a0a2) [17:35:04] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container ModLauncher Root Container(ModLauncher:4f56a0a2) [17:35:04] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for ModLauncher Root Container(ModLauncher:4f56a0a2) [17:35:04] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container ModLauncher Root Container(ModLauncher:4f56a0a2) [17:35:04] [main/DEBUG] [cp.mo.mo.TransformationServiceDecorator/MODLAUNCHER]: Initialized transformation service mixin [17:35:04] [main/DEBUG] [cp.mo.mo.TransformationServiceDecorator/MODLAUNCHER]: Initializing transformation service fml [17:35:04] [main/DEBUG] [ne.mi.fm.lo.FMLServiceProvider/CORE]: Setting up basic FML game directories [17:35:04] [main/DEBUG] [ne.mi.fm.lo.FMLPaths/CORE]: Path GAMEDIR is C:\Users\moraw\Documents\Livestock\run [17:35:04] [main/DEBUG] [ne.mi.fm.lo.FMLPaths/CORE]: Path MODSDIR is C:\Users\moraw\Documents\Livestock\run\mods [17:35:04] [main/DEBUG] [ne.mi.fm.lo.FMLPaths/CORE]: Path CONFIGDIR is C:\Users\moraw\Documents\Livestock\run\config [17:35:04] [main/DEBUG] [ne.mi.fm.lo.FMLPaths/CORE]: Path FMLCONFIG is C:\Users\moraw\Documents\Livestock\run\config\fml.toml [17:35:04] [main/DEBUG] [ne.mi.fm.lo.FMLServiceProvider/CORE]: Loading configuration [17:35:04] [main/DEBUG] [ne.mi.fm.lo.FMLServiceProvider/CORE]: Preparing ModFile [17:35:04] [main/DEBUG] [ne.mi.fm.lo.FMLServiceProvider/CORE]: Preparing launch handler [17:35:04] [main/DEBUG] [ne.mi.fm.lo.FMLLoader/CORE]: Using forgeclientuserdev as launch service [17:35:04] [pool-2-thread-1/INFO] [EARLYDISPLAY/]: GL info: Intel(R) Iris(R) Xe Graphics GL version 4.6.0 - Build 31.0.101.5594, Intel [17:35:04] [main/DEBUG] [ne.mi.fm.lo.FMLLoader/CORE]: Received command line version data : VersionInfo[forgeVersion=47.3.0, mcVersion=1.20.1, mcpVersion=20230612.114412, forgeGroup=net.minecraftforge] [17:35:04] [main/DEBUG] [cp.mo.mo.TransformationServiceDecorator/MODLAUNCHER]: Initialized transformation service fml [17:35:04] [main/DEBUG] [cp.mo.mo.NameMappingServiceHandler/MODLAUNCHER]: Current naming domain is 'mcp' [17:35:04] [main/DEBUG] [cp.mo.mo.NameMappingServiceHandler/MODLAUNCHER]: Identified name mapping providers {srg=srgtomcp:1234} [17:35:04] [main/DEBUG] [cp.mo.mo.TransformationServicesHandler/MODLAUNCHER]: Transformation services begin scanning [17:35:04] [main/DEBUG] [cp.mo.mo.TransformationServiceDecorator/MODLAUNCHER]: Beginning scan trigger - transformation service mixin [17:35:04] [main/DEBUG] [cp.mo.mo.TransformationServiceDecorator/MODLAUNCHER]: End scan trigger - transformation service mixin [17:35:04] [main/DEBUG] [cp.mo.mo.TransformationServiceDecorator/MODLAUNCHER]: Beginning scan trigger - transformation service fml [17:35:04] [main/DEBUG] [ne.mi.fm.lo.FMLServiceProvider/CORE]: Initiating mod scan [17:35:04] [main/DEBUG] [ne.mi.fm.lo.mo.ModListHandler/CORE]: Found mod coordinates from lists: [] [17:35:04] [main/DEBUG] [ne.mi.fm.lo.mo.ModDiscoverer/CORE]: Found Mod Locators : (mods folder:null),(maven libs:null),(exploded directory:null),(minecraft:null),(userdev classpath:null) [17:35:04] [main/DEBUG] [ne.mi.fm.lo.mo.ModDiscoverer/CORE]: Found Dependency Locators : (JarInJar:null) [17:35:04] [main/DEBUG] [ne.mi.fm.lo.ta.CommonLaunchHandler/CORE]: Got mod coordinates livestock%%C:/Users/moraw/Documents/Livestock\build\resources\main;livestock%%C:/Users/moraw/Documents/Livestock\build\classes\java\main from env [17:35:04] [main/DEBUG] [ne.mi.fm.lo.ta.CommonLaunchHandler/CORE]: Found supplied mod coordinates [{livestock=[C:\Users\moraw\Documents\Livestock\build\resources\main, C:\Users\moraw\Documents\Livestock\build\classes\java\main]}] [17:35:04] [main/DEBUG] [ne.mi.fm.lo.mo.ModFileInfo/LOADING]: Found valid mod file forge-1.20.1-47.3.0_mapped_parchment_2023.09.03-1.20.1.jar with {minecraft} mods - versions {1.20.1} [17:35:04] [main/DEBUG] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Considering mod file candidate C:\Users\moraw\.gradle\caches\modules-2\files-2.1\net.minecraftforge\fmlcore\1.20.1-47.3.0\3b6be96aba3e323f3c918e8ef6a96312d82d76ad\fmlcore-1.20.1-47.3.0.jar [17:35:04] [main/WARN] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Mod file C:\Users\moraw\.gradle\caches\modules-2\files-2.1\net.minecraftforge\fmlcore\1.20.1-47.3.0\3b6be96aba3e323f3c918e8ef6a96312d82d76ad\fmlcore-1.20.1-47.3.0.jar is missing mods.toml file [17:35:04] [main/DEBUG] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Considering mod file candidate C:\Users\moraw\.gradle\caches\modules-2\files-2.1\net.minecraftforge\javafmllanguage\1.20.1-47.3.0\d7ebc62120f202109e300e084ca1a31a7b946a62\javafmllanguage-1.20.1-47.3.0.jar [17:35:04] [main/WARN] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Mod file C:\Users\moraw\.gradle\caches\modules-2\files-2.1\net.minecraftforge\javafmllanguage\1.20.1-47.3.0\d7ebc62120f202109e300e084ca1a31a7b946a62\javafmllanguage-1.20.1-47.3.0.jar is missing mods.toml file [17:35:04] [main/DEBUG] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Considering mod file candidate C:\Users\moraw\.gradle\caches\modules-2\files-2.1\net.minecraftforge\lowcodelanguage\1.20.1-47.3.0\1bf3e845ea0ce750096da8c71c8364b188ab74d4\lowcodelanguage-1.20.1-47.3.0.jar [17:35:04] [main/WARN] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Mod file C:\Users\moraw\.gradle\caches\modules-2\files-2.1\net.minecraftforge\lowcodelanguage\1.20.1-47.3.0\1bf3e845ea0ce750096da8c71c8364b188ab74d4\lowcodelanguage-1.20.1-47.3.0.jar is missing mods.toml file [17:35:04] [main/DEBUG] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Considering mod file candidate C:\Users\moraw\.gradle\caches\modules-2\files-2.1\net.minecraftforge\mclanguage\1.20.1-47.3.0\6093682e943ddccbabf70539319d7f2fe64db2e7\mclanguage-1.20.1-47.3.0.jar [17:35:04] [main/WARN] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Mod file C:\Users\moraw\.gradle\caches\modules-2\files-2.1\net.minecraftforge\mclanguage\1.20.1-47.3.0\6093682e943ddccbabf70539319d7f2fe64db2e7\mclanguage-1.20.1-47.3.0.jar is missing mods.toml file [17:35:04] [main/DEBUG] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Considering mod file candidate C:\Users\moraw\Documents\Livestock\build\resources\main [17:35:04] [main/DEBUG] [ne.mi.fm.lo.mo.ModFileInfo/LOADING]: Found valid mod file main with {livestock} mods - versions {0.01-1.20.1} [17:35:04] [main/DEBUG] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Considering mod file candidate / [17:35:04] [main/DEBUG] [ne.mi.fm.lo.mo.ModFileInfo/LOADING]: Found valid mod file with {forge} mods - versions {47.3.0} [17:35:04] [main/DEBUG] [ne.mi.fm.lo.mo.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from forge-1.20.1-47.3.0_mapped_parchment_2023.09.03-1.20.1.jar, it does not contain dependency information. [17:35:04] [main/DEBUG] [ne.mi.fm.lo.mo.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from , it does not contain dependency information. [17:35:04] [main/DEBUG] [ne.mi.fm.lo.mo.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from main, it does not contain dependency information. [17:35:04] [main/DEBUG] [ne.mi.fm.lo.mo.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from mclanguage-1.20.1-47.3.0.jar, it does not contain dependency information. [17:35:04] [main/DEBUG] [ne.mi.fm.lo.mo.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from javafmllanguage-1.20.1-47.3.0.jar, it does not contain dependency information. [17:35:04] [main/DEBUG] [ne.mi.fm.lo.mo.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from fmlcore-1.20.1-47.3.0.jar, it does not contain dependency information. [17:35:04] [main/DEBUG] [ne.mi.fm.lo.mo.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from lowcodelanguage-1.20.1-47.3.0.jar, it does not contain dependency information. [17:35:04] [main/INFO] [ne.mi.fm.lo.mo.JarInJarDependencyLocator/]: No dependencies to load found. Skipping! [17:35:04] [main/DEBUG] [ne.mi.fm.lo.mo.ModFileInfo/LOADING]: Found valid mod file forge-1.20.1-47.3.0_mapped_parchment_2023.09.03-1.20.1.jar with {minecraft} mods - versions {1.20.1} [17:35:04] [main/DEBUG] [ne.mi.fm.lo.mo.ModFile/LOADING]: Loading mod file C:\Users\moraw\.gradle\caches\forge_gradle\minecraft_user_repo\net\minecraftforge\forge\1.20.1-47.3.0_mapped_parchment_2023.09.03-1.20.1\forge-1.20.1-47.3.0_mapped_parchment_2023.09.03-1.20.1.jar with languages [LanguageSpec[languageName=minecraft, acceptedVersions=1]] [17:35:04] [main/DEBUG] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Considering mod file candidate / [17:35:04] [main/DEBUG] [ne.mi.fm.lo.mo.ModFileInfo/LOADING]: Found valid mod file with {forge} mods - versions {47.3.0} [17:35:04] [main/DEBUG] [ne.mi.fm.lo.mo.ModFile/LOADING]: Loading mod file / with languages [LanguageSpec[languageName=javafml, acceptedVersions=[24,]]] [17:35:04] [main/DEBUG] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Found coremod field_to_method with Javascript path coremods/field_to_method.js [17:35:04] [main/DEBUG] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Found coremod field_to_instanceof with Javascript path coremods/field_to_instanceof.js [17:35:04] [main/DEBUG] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Found coremod add_bouncer_method with Javascript path coremods/add_bouncer_method.js [17:35:04] [main/DEBUG] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Found coremod method_redirector with Javascript path coremods/method_redirector.js [17:35:04] [main/DEBUG] [ne.mi.fm.lo.mo.ModFile/LOADING]: Found coremod coremods/field_to_method.js [17:35:04] [main/DEBUG] [ne.mi.fm.lo.mo.ModFile/LOADING]: Found coremod coremods/field_to_instanceof.js [17:35:04] [main/DEBUG] [ne.mi.fm.lo.mo.ModFile/LOADING]: Found coremod coremods/add_bouncer_method.js [17:35:04] [main/DEBUG] [ne.mi.fm.lo.mo.ModFile/LOADING]: Found coremod coremods/method_redirector.js [17:35:04] [main/DEBUG] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Considering mod file candidate C:\Users\moraw\Documents\Livestock\build\resources\main [17:35:04] [main/DEBUG] [ne.mi.fm.lo.mo.ModFileInfo/LOADING]: Found valid mod file main with {livestock} mods - versions {0.01-1.20.1} [17:35:04] [main/DEBUG] [ne.mi.fm.lo.mo.ModFile/LOADING]: Loading mod file C:\Users\moraw\Documents\Livestock\build\resources\main with languages [LanguageSpec[languageName=javafml, acceptedVersions=[47,)]] [17:35:04] [main/DEBUG] [cp.mo.mo.TransformationServiceDecorator/MODLAUNCHER]: End scan trigger - transformation service fml [17:35:04] [main/DEBUG] [ne.mi.fm.lo.LanguageLoadingProvider/CORE]: Found 3 language providers [17:35:04] [main/DEBUG] [ne.mi.fm.lo.LanguageLoadingProvider/CORE]: Found language provider minecraft, version 1.0 [17:35:04] [main/DEBUG] [ne.mi.fm.lo.LanguageLoadingProvider/CORE]: Found language provider lowcodefml, version 47 [17:35:04] [main/DEBUG] [ne.mi.fm.lo.LanguageLoadingProvider/CORE]: Found language provider javafml, version 47 [17:35:04] [main/DEBUG] [ne.mi.fm.lo.ModSorter/]: Configured system mods: [minecraft, forge] [17:35:04] [main/DEBUG] [ne.mi.fm.lo.ModSorter/]: Found system mod: minecraft [17:35:04] [main/DEBUG] [ne.mi.fm.lo.ModSorter/]: Found system mod: forge [17:35:04] [main/DEBUG] [ne.mi.fm.lo.ModSorter/LOADING]: Found 2 mod requirements (2 mandatory, 0 optional) [17:35:04] [main/DEBUG] [ne.mi.fm.lo.ModSorter/LOADING]: Found 0 mod requirements missing (0 mandatory, 0 optional) [17:35:05] [main/DEBUG] [ne.mi.fm.lo.MCPNamingService/CORE]: Loaded 34318 method mappings from methods.csv [17:35:05] [main/DEBUG] [ne.mi.fm.lo.MCPNamingService/CORE]: Loaded 31014 field mappings from fields.csv [17:35:05] [main/DEBUG] [cp.mo.mo.TransformationServicesHandler/MODLAUNCHER]: Transformation services loading transformers [17:35:05] [main/DEBUG] [cp.mo.mo.TransformationServiceDecorator/MODLAUNCHER]: Initializing transformers for transformation service mixin [17:35:05] [main/DEBUG] [cp.mo.mo.TransformationServiceDecorator/MODLAUNCHER]: Initialized transformers for transformation service mixin [17:35:05] [main/DEBUG] [cp.mo.mo.TransformationServiceDecorator/MODLAUNCHER]: Initializing transformers for transformation service fml [17:35:05] [main/DEBUG] [ne.mi.fm.lo.FMLServiceProvider/CORE]: Loading coremod transformers [17:35:05] [main/DEBUG] [ne.mi.co.CoreModEngine/COREMOD]: Loading CoreMod from coremods/field_to_method.js [17:35:05] [main/DEBUG] [ne.mi.co.CoreModEngine/COREMOD]: CoreMod loaded successfully [17:35:05] [main/DEBUG] [ne.mi.co.CoreModEngine/COREMOD]: Loading CoreMod from coremods/field_to_instanceof.js [17:35:05] [main/DEBUG] [ne.mi.co.CoreModEngine/COREMOD]: CoreMod loaded successfully [17:35:05] [main/DEBUG] [ne.mi.co.CoreModEngine/COREMOD]: Loading CoreMod from coremods/add_bouncer_method.js [17:35:05] [main/DEBUG] [ne.mi.co.CoreModEngine/COREMOD]: CoreMod loaded successfully [17:35:05] [main/DEBUG] [ne.mi.co.CoreModEngine/COREMOD]: Loading CoreMod from coremods/method_redirector.js [17:35:05] [main/DEBUG] [ne.mi.co.CoreModEngine/COREMOD]: CoreMod loaded successfully [17:35:05] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@9b76b60 to Target : CLASS {Lnet/minecraft/world/level/biome/Biome;} {} {V} [17:35:05] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@493ac8d3 to Target : CLASS {Lnet/minecraft/world/level/levelgen/structure/Structure;} {} {V} [17:35:05] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@13dbed9e to Target : CLASS {Lnet/minecraft/world/effect/MobEffectInstance;} {} {V} [17:35:05] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@67531e3a to Target : CLASS {Lnet/minecraft/world/level/block/LiquidBlock;} {} {V} [17:35:05] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@2b38b1f to Target : CLASS {Lnet/minecraft/world/item/BucketItem;} {} {V} [17:35:05] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@1d50a7ca to Target : CLASS {Lnet/minecraft/world/level/block/StairBlock;} {} {V} [17:35:05] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@51ab1ee3 to Target : CLASS {Lnet/minecraft/world/level/block/FlowerPotBlock;} {} {V} [17:35:05] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@2e766822 to Target : CLASS {Lnet/minecraft/world/item/ItemStack;} {} {V} [17:35:05] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@3003e580 to Target : CLASS {Lnet/minecraft/network/play/client/CClientSettingsPacket;} {} {V} [17:35:05] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@28757abd to Target : CLASS {Lnet/minecraft/world/entity/monster/Evoker$EvokerSummonSpellGoal;} {} {V} [17:35:05] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@28757abd to Target : CLASS {Lnet/minecraft/world/entity/npc/CatSpawner;} {} {V} [17:35:05] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@28757abd to Target : CLASS {Lnet/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces$OceanRuinPiece;} {} {V} [17:35:05] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@28757abd to Target : CLASS {Lnet/minecraft/world/entity/animal/horse/SkeletonTrapGoal;} {} {V} [17:35:05] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@28757abd to Target : CLASS {Lnet/minecraft/world/entity/ai/village/VillageSiege;} {} {V} [17:35:05] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@28757abd to Target : CLASS {Lnet/minecraft/world/entity/monster/Strider;} {} {V} [17:35:05] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@28757abd to Target : CLASS {Lnet/minecraft/world/entity/monster/Spider;} {} {V} [17:35:05] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@28757abd to Target : CLASS {Lnet/minecraft/world/entity/monster/ZombieVillager;} {} {V} [17:35:05] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@28757abd to Target : CLASS {Lnet/minecraft/world/level/NaturalSpawner;} {} {V} [17:35:05] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@28757abd to Target : CLASS {Lnet/minecraft/world/entity/npc/Villager;} {} {V} [17:35:05] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@28757abd to Target : CLASS {Lnet/minecraft/server/commands/RaidCommand;} {} {V} [17:35:05] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@28757abd to Target : CLASS {Lnet/minecraft/world/level/levelgen/structure/structures/SwampHutPiece;} {} {V} [17:35:05] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@28757abd to Target : CLASS {Lnet/minecraft/world/entity/monster/Zombie;} {} {V} [17:35:05] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@28757abd to Target : CLASS {Lnet/minecraft/world/entity/raid/Raid;} {} {V} [17:35:05] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@28757abd to Target : CLASS {Lnet/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$WoodlandMansionPiece;} {} {V} [17:35:05] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@28757abd to Target : CLASS {Lnet/minecraft/world/entity/EntityType;} {} {V} [17:35:05] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@28757abd to Target : CLASS {Lnet/minecraft/world/level/levelgen/PatrolSpawner;} {} {V} [17:35:05] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@28757abd to Target : CLASS {Lnet/minecraft/world/level/levelgen/PhantomSpawner;} {} {V} [17:35:05] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@28757abd to Target : CLASS {Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece;} {} {V} [17:35:05] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@28757abd to Target : CLASS {Lnet/minecraft/server/commands/SummonCommand;} {} {V} [17:35:05] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@28757abd to Target : CLASS {Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate;} {} {V} [17:35:05] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@28757abd to Target : CLASS {Lnet/minecraft/world/entity/animal/frog/Tadpole;} {} {V} [17:35:05] [main/DEBUG] [cp.mo.mo.TransformationServiceDecorator/MODLAUNCHER]: Initialized transformers for transformation service fml Exception in thread "main" java.lang.module.ResolutionException: Modules classes and livestock export package net.s3alampr3y.livestockmod.entity.client to module minecraft at java.base/java.lang.module.Resolver.resolveFail(Resolver.java:901) at java.base/java.lang.module.Resolver.failTwoSuppliers(Resolver.java:815) at java.base/java.lang.module.Resolver.checkExportSuppliers(Resolver.java:736) at java.base/java.lang.module.Resolver.finish(Resolver.java:380) at java.base/java.lang.module.Configuration.<init>(Configuration.java:140) at java.base/java.lang.module.Configuration.resolveAndBind(Configuration.java:494) at MC-BOOTSTRAP/[email protected]/cpw.mods.modlauncher.ModuleLayerHandler.buildLayer(ModuleLayerHandler.java:75) at MC-BOOTSTRAP/[email protected]/cpw.mods.modlauncher.TransformationServicesHandler.buildTransformingClassLoader(TransformationServicesHandler.java:60) at MC-BOOTSTRAP/[email protected]/cpw.mods.modlauncher.Launcher.run(Launcher.java:106) at MC-BOOTSTRAP/[email protected]/cpw.mods.modlauncher.Launcher.main(Launcher.java:78) at MC-BOOTSTRAP/[email protected]/cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:26) at MC-BOOTSTRAP/[email protected]/cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:23) at [email protected]/cpw.mods.bootstraplauncher.BootstrapLauncher.main(BootstrapLauncher.java:141) Process finished with exit code 1  
    • Bump? Do I have to add more content or can I just say this? Any help would be really appreciated.
    • Hello! My friends and I were attempting to add a few extra mods to the Create Chronicles modpack, and all was well until people started crashing when they opened their inventories. Any help finding the culprit would be MUCH appreciated, I've been scratching my head for the past few days on what went wrong. https://paste.ee/p/8pajP
  • Topics

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.