Jump to content

Getting texture from block and adding overlay


LoreSchaeffer

Recommended Posts

Hi, I'm developing a mod for minecraft 1.7.10 and I'm trying to get the texture of some blocks and adding to them an overlay to make something like this R1kCi7J.png that is the texture of the oak planks plus the black cage with the red dots, is there a way to do this without making every single texture? Thanks in advance

Set the power inside a single block free! ;D

Link to comment
Share on other sites

Oh man are you in for a fun time tonight.

 

Short answer: yes, two ways.

1) render the block twice

2) custom TextureAtlasSprite loading

 

1 is easier and found via Google ("two pass blocks"), 2 is muuuch more complicated and will need to wait for me to be at my desktop again. There's a copy on the forum here somewhere, check my user profile for threads started on the last couple of months.

Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable.  If you think this is the case, JUST REPORT ME.  Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice.

 

Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked.

 

DO NOT PM ME WITH PROBLEMS. No help will be given.

Link to comment
Share on other sites

Here we go.

 

There are a few important parts, and a few unimportant ones.

Important:

-

hasCustomLoader()

-

load()

 

Unimportant:

-

colorize()

which handles color multiplication (I used it to colorize the overlay image but not the base).

- anything dealing with

invert

(this was special case handling I wanted so that my grayscale overlays could be inverted white-to-black so that they could be used equally well on a dark base (such as basalt) or a light base (such as marble).

 

scaleToSmaller() should be rewritten to be "scaleToLarger()" but it was easy to write and lets the overlay handle resource packs changing resolution size of only one texture without breaking horribly.  It may not generate a good result, but it will generate a valid result.

 

 

The imports

import java.awt.Color;
import java.awt.image.BufferedImage;
import java.io.IOException;
import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;
import java.lang.reflect.Type;

import javax.imageio.ImageIO;

import com.google.common.collect.Lists;

import net.minecraft.client.Minecraft;
import net.minecraft.client.renderer.texture.DynamicTexture;
import net.minecraft.client.renderer.texture.TextureAtlasSprite;
import net.minecraft.client.renderer.texture.TextureMap;
import net.minecraft.client.renderer.texture.TextureUtil;
import net.minecraft.client.resources.IResourceManager;
import net.minecraft.client.resources.data.AnimationMetadataSection;
import net.minecraft.util.IIcon;
import net.minecraft.util.MathHelper;
import net.minecraft.util.ResourceLocation;

 

public class TextureAtlasDynamic extends TextureAtlasSprite {
protected String textureBase;
protected String textureOverlay;
protected Color colorMulti;
protected boolean invert;

public TextureAtlasDynamic(String p_i1282_1_, String base, String overlay, Color color, boolean inv) {
	super(p_i1282_1_);
	textureBase = base;
	textureOverlay = overlay;
	colorMulti = color;
	invert = inv;
}

@Override
public void updateAnimation() {
	TextureUtil.uploadTextureMipmap((int[][])this.framesTextureData.get(0), this.width, this.height, this.originX, this.originY, false, false);
}

@Override
public boolean hasCustomLoader(IResourceManager manager, ResourceLocation location) {
        return true;
    }

@Override
    public boolean load(IResourceManager manager, ResourceLocation location) {
	framesTextureData.clear();
        this.frameCounter = 0;
        this.tickCounter = 0;
        
    	ResourceLocation resource1 = new ResourceLocation(textureBase);
    	ResourceLocation resource2 = new ResourceLocation(textureOverlay);
        try {
        	TextureMap map = Minecraft.getMinecraft().getTextureMapBlocks();
        	resource1 = this.completeResourceLocation(map, resource1, 0);
        	resource2 = this.completeResourceLocation(map, resource2, 0);
		BufferedImage buff = ImageIO.read(manager.getResource(resource1).getInputStream());
		BufferedImage buff2 = ImageIO.read(manager.getResource(resource2).getInputStream());

        int[] rawBase = new int[buff.getWidth()*buff.getHeight()];
        int[] rawOverlay = new int[buff2.getWidth()*buff2.getHeight()];

        buff.getRGB(0, 0, buff.getWidth(), buff.getHeight(), rawBase, 0, buff.getWidth());
        buff2.getRGB(0, 0, buff2.getWidth(), buff2.getHeight(), rawOverlay, 0, buff2.getWidth());
        
        int min = Math.min(buff.getWidth(),buff2.getWidth());
        rawBase = scaleToSmaller(rawBase, buff.getWidth(), min);
        rawOverlay = scaleToSmaller(rawOverlay, buff2.getWidth(), min);

        width = min;
        height = min;
        
        int r1,g1,b1;
        int r2,g2,b2;
        float a1,a2,a3;
        for(int p=0; p<rawBase.length;p++) {
        	Color c1 = new Color(rawBase[p],true);
        	Color c2 = new Color(rawOverlay[p],true);
        	
        	c2 = colorize(colorMulti,c2,invert);
        	
        	a1 = c1.getAlpha()/255f;
        	r1 = c1.getRed();
        	g1 = c1.getGreen();
        	b1 = c1.getBlue();
        	a2 = c2.getAlpha()/255f;
        	r2 = c2.getRed();
        	g2 = c2.getGreen();
        	b2 = c2.getBlue();
        	a3 = a2+a1*(1-a2);
        	
        	if(a3 > 0) {
	        	r1 = Math.round(((r2*a2)+(r1*a1*(1-a2)))/a3);
	        	g1 = Math.round(((g2*a2)+(g1*a1*(1-a2)))/a3);
	        	b1 = Math.round(((b2*a2)+(b1*a1*(1-a2)))/a3);
        	}
        	else {
        		r1 = g1 = b1 = 0;
        	}
        	Color c3 = new Color(r1,g1,b1,Math.round(a3*255));
        	rawBase[p] = c3.getRGB();
        }
        
        int[][] aint = new int[1 + MathHelper.calculateLogBaseTwo(min)][];
        for (int k = 0; k < aint.length; ++k)
        {
        	aint[k] = rawBase;
        }

        this.framesTextureData.add(aint);
	} catch (IOException e) {
		e.printStackTrace();
		int[][] aint = new int[1][];
        for (int k = 0; k < 1; ++k)
        {
        	aint[k] = new int[16*16];
        	for(int l=0; l<aint[k].length;l++) {
        		aint[k][l] = 0xFFFFFFFF;
        	}
        }
        width = 16;
        height = 16;

        this.framesTextureData.add(aint);
	}
        return false;
    }

private static int[] scaleToSmaller(int[] data, int width, int min) {
	if(width == min) { return data; }
	int scale = width / min;
	int[] output = new int[min*min];
	int j = 0;
	for(int i = 0; i < output.length; i++) {
		if(i%min == 0) {
			j += width;
		}
		output[i] = data[i*scale+j];
	}
	return output;
}

private static ResourceLocation completeResourceLocation(TextureMap map, ResourceLocation loc, int c)
    {
        try {
		return (ResourceLocation)HardLib.proxy.resourceLocation.invoke(map, loc, c); //see below
	} catch (IllegalAccessException e) {
		e.printStackTrace();
	} catch (IllegalArgumentException e) {
		e.printStackTrace();
	} catch (InvocationTargetException e) {
		e.printStackTrace();
	}
        return null;
    }

    private static Color colorize(Color cm, Color c2, boolean invert) {
    	float[] pix = new float[3];
    	float[] mul = new float[3];
    	Color.RGBtoHSB(c2.getRed(), c2.getGreen(), c2.getBlue(),pix);
    	Color.RGBtoHSB(cm.getRed(), cm.getGreen(), cm.getBlue(), mul);
    	float v = (invert?1-pix[2]:pix[2]);
    	Color c3 = new Color(Color.HSBtoRGB(mul[0], mul[1], v));
    	return new Color(c3.getRed(),c3.getGreen(),c3.getBlue(),c2.getAlpha());
    }
}

The only bit that is external is the reflection which I did in my common proxy.  It could have been static.

public class ClientProxy extends CommonProxy {
//public Method resourceLocation; in CommonProxy
public void init() {
	Class clz = TextureMap.class;
        Method[] meths = clz.getDeclaredMethods();
        for(Method m : meths) {
        	if(m.getReturnType() == ResourceLocation.class) {
        		m.setAccessible(true);
        		resourceLocation = m;
        	}
        }
}

 

And finally, registering the TextureAtlasSprite without needing events:

(I had an array of 12 used for the same block)

 

	@Override
    @SideOnly(Side.CLIENT)
public void registerBlockIcons(IIconRegister iconRegister) {
	this.icons = new IIcon[12];
	if(iconRegister instanceof TextureMap) { //instanceof check, TextureMap should be the only thing that implements IIconRegister
		TextureMap map = (TextureMap)iconRegister;
		for(int o = 0; o < 12; o++) {
			String overlayName = "hazards:stone_overlay_"+o;
			String baseName = this.getTextureName(); //passed via block constructor from the block its "cloning"
			String regname = "hazards:"+this.getUnlocalizedName()+"_"+o; //the overlay texture
			map.setTextureEntry(regname, new TextureAtlasDynamic(regname,baseName,overlayName,new Color(color),inv));
			icons[o] = map.getTextureExtry(regname);
		}
	}
}

Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable.  If you think this is the case, JUST REPORT ME.  Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice.

 

Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked.

 

DO NOT PM ME WITH PROBLEMS. No help will be given.

Link to comment
Share on other sites

Here we go.

 

There are a few important parts, and a few unimportant ones.

Important:

-

hasCustomLoader()

-

load()

 

Unimportant:

-

colorize()

which handles color multiplication (I used it to colorize the overlay image but not the base).

- anything dealing with

invert

(this was special case handling I wanted so that my grayscale overlays could be inverted white-to-black so that they could be used equally well on a dark base (such as basalt) or a light base (such as marble).

 

scaleToSmaller() should be rewritten to be "scaleToLarger()" but it was easy to write and lets the overlay handle resource packs changing resolution size of only one texture without breaking horribly.  It may not generate a good result, but it will generate a valid result.

 

 

The imports

import java.awt.Color;
import java.awt.image.BufferedImage;
import java.io.IOException;
import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;
import java.lang.reflect.Type;

import javax.imageio.ImageIO;

import com.google.common.collect.Lists;

import net.minecraft.client.Minecraft;
import net.minecraft.client.renderer.texture.DynamicTexture;
import net.minecraft.client.renderer.texture.TextureAtlasSprite;
import net.minecraft.client.renderer.texture.TextureMap;
import net.minecraft.client.renderer.texture.TextureUtil;
import net.minecraft.client.resources.IResourceManager;
import net.minecraft.client.resources.data.AnimationMetadataSection;
import net.minecraft.util.IIcon;
import net.minecraft.util.MathHelper;
import net.minecraft.util.ResourceLocation;

 

public class TextureAtlasDynamic extends TextureAtlasSprite {
protected String textureBase;
protected String textureOverlay;
protected Color colorMulti;
protected boolean invert;

public TextureAtlasDynamic(String p_i1282_1_, String base, String overlay, Color color, boolean inv) {
	super(p_i1282_1_);
	textureBase = base;
	textureOverlay = overlay;
	colorMulti = color;
	invert = inv;
}

@Override
public void updateAnimation() {
	TextureUtil.uploadTextureMipmap((int[][])this.framesTextureData.get(0), this.width, this.height, this.originX, this.originY, false, false);
}

@Override
public boolean hasCustomLoader(IResourceManager manager, ResourceLocation location) {
        return true;
    }

@Override
    public boolean load(IResourceManager manager, ResourceLocation location) {
	framesTextureData.clear();
        this.frameCounter = 0;
        this.tickCounter = 0;
        
    	ResourceLocation resource1 = new ResourceLocation(textureBase);
    	ResourceLocation resource2 = new ResourceLocation(textureOverlay);
        try {
        	TextureMap map = Minecraft.getMinecraft().getTextureMapBlocks();
        	resource1 = this.completeResourceLocation(map, resource1, 0);
        	resource2 = this.completeResourceLocation(map, resource2, 0);
		BufferedImage buff = ImageIO.read(manager.getResource(resource1).getInputStream());
		BufferedImage buff2 = ImageIO.read(manager.getResource(resource2).getInputStream());

        int[] rawBase = new int[buff.getWidth()*buff.getHeight()];
        int[] rawOverlay = new int[buff2.getWidth()*buff2.getHeight()];

        buff.getRGB(0, 0, buff.getWidth(), buff.getHeight(), rawBase, 0, buff.getWidth());
        buff2.getRGB(0, 0, buff2.getWidth(), buff2.getHeight(), rawOverlay, 0, buff2.getWidth());
        
        int min = Math.min(buff.getWidth(),buff2.getWidth());
        rawBase = scaleToSmaller(rawBase, buff.getWidth(), min);
        rawOverlay = scaleToSmaller(rawOverlay, buff2.getWidth(), min);

        width = min;
        height = min;
        
        int r1,g1,b1;
        int r2,g2,b2;
        float a1,a2,a3;
        for(int p=0; p<rawBase.length;p++) {
        	Color c1 = new Color(rawBase[p],true);
        	Color c2 = new Color(rawOverlay[p],true);
        	
        	c2 = colorize(colorMulti,c2,invert);
        	
        	a1 = c1.getAlpha()/255f;
        	r1 = c1.getRed();
        	g1 = c1.getGreen();
        	b1 = c1.getBlue();
        	a2 = c2.getAlpha()/255f;
        	r2 = c2.getRed();
        	g2 = c2.getGreen();
        	b2 = c2.getBlue();
        	a3 = a2+a1*(1-a2);
        	
        	if(a3 > 0) {
	        	r1 = Math.round(((r2*a2)+(r1*a1*(1-a2)))/a3);
	        	g1 = Math.round(((g2*a2)+(g1*a1*(1-a2)))/a3);
	        	b1 = Math.round(((b2*a2)+(b1*a1*(1-a2)))/a3);
        	}
        	else {
        		r1 = g1 = b1 = 0;
        	}
        	Color c3 = new Color(r1,g1,b1,Math.round(a3*255));
        	rawBase[p] = c3.getRGB();
        }
        
        int[][] aint = new int[1 + MathHelper.calculateLogBaseTwo(min)][];
        for (int k = 0; k < aint.length; ++k)
        {
        	aint[k] = rawBase;
        }

        this.framesTextureData.add(aint);
	} catch (IOException e) {
		e.printStackTrace();
		int[][] aint = new int[1][];
        for (int k = 0; k < 1; ++k)
        {
        	aint[k] = new int[16*16];
        	for(int l=0; l<aint[k].length;l++) {
        		aint[k][l] = 0xFFFFFFFF;
        	}
        }
        width = 16;
        height = 16;

        this.framesTextureData.add(aint);
	}
        return false;
    }

private static int[] scaleToSmaller(int[] data, int width, int min) {
	if(width == min) { return data; }
	int scale = width / min;
	int[] output = new int[min*min];
	int j = 0;
	for(int i = 0; i < output.length; i++) {
		if(i%min == 0) {
			j += width;
		}
		output[i] = data[i*scale+j];
	}
	return output;
}

private static ResourceLocation completeResourceLocation(TextureMap map, ResourceLocation loc, int c)
    {
        try {
		return (ResourceLocation)HardLib.proxy.resourceLocation.invoke(map, loc, c); //see below
	} catch (IllegalAccessException e) {
		e.printStackTrace();
	} catch (IllegalArgumentException e) {
		e.printStackTrace();
	} catch (InvocationTargetException e) {
		e.printStackTrace();
	}
        return null;
    }

    private static Color colorize(Color cm, Color c2, boolean invert) {
    	float[] pix = new float[3];
    	float[] mul = new float[3];
    	Color.RGBtoHSB(c2.getRed(), c2.getGreen(), c2.getBlue(),pix);
    	Color.RGBtoHSB(cm.getRed(), cm.getGreen(), cm.getBlue(), mul);
    	float v = (invert?1-pix[2]:pix[2]);
    	Color c3 = new Color(Color.HSBtoRGB(mul[0], mul[1], v));
    	return new Color(c3.getRed(),c3.getGreen(),c3.getBlue(),c2.getAlpha());
    }
}

The only bit that is external is the reflection which I did in my common proxy.  It could have been static.

public class ClientProxy extends CommonProxy {
//public Method resourceLocation; in CommonProxy
public void init() {
	Class clz = TextureMap.class;
        Method[] meths = clz.getDeclaredMethods();
        for(Method m : meths) {
        	if(m.getReturnType() == ResourceLocation.class) {
        		m.setAccessible(true);
        		resourceLocation = m;
        	}
        }
}

 

And finally, registering the TextureAtlasSprite without needing events:

(I had an array of 12 used for the same block)

 

	@Override
    @SideOnly(Side.CLIENT)
public void registerBlockIcons(IIconRegister iconRegister) {
	this.icons = new IIcon[12];
	if(iconRegister instanceof TextureMap) { //instanceof check, TextureMap should be the only thing that implements IIconRegister
		TextureMap map = (TextureMap)iconRegister;
		for(int o = 0; o < 12; o++) {
			String overlayName = "hazards:stone_overlay_"+o;
			String baseName = this.getTextureName(); //passed via block constructor from the block its "cloning"
			String regname = "hazards:"+this.getUnlocalizedName()+"_"+o; //the overlay texture
			map.setTextureEntry(regname, new TextureAtlasDynamic(regname,baseName,overlayName,new Color(color),inv));
			icons[o] = map.getTextureExtry(regname);
		}
	}
}

First of all, THANK YOU.

 

Second: I've tried your code but I've a problem at this point:

private static ResourceLocation completeResourceLocation(TextureMap map, ResourceLocation loc, int c) {
	try {
		return (ResourceLocation) HardLib.proxy.resourceLocation.invoke(map, loc, c);
	} catch (IllegalAccessException e) {
		e.printStackTrace();
	} catch (IllegalArgumentException e) {
		e.printStackTrace();
	} catch (InvocationTargetException e) {
		e.printStackTrace();
	}
	return null;
}

It need HardLib proxy that's from your library/api (I found it on github  ;D) so I've changed it to refer to my ClientProxy Class but it sais that i've not decleared resourceLocation as a variable. My ClientProxy Class is:

package com.lsmod.compactstorage;

import java.lang.reflect.Method;

import cpw.mods.fml.common.event.FMLInitializationEvent;
import cpw.mods.fml.common.event.FMLPostInitializationEvent;
import cpw.mods.fml.common.event.FMLPreInitializationEvent;

import net.minecraft.client.renderer.texture.TextureMap;
import net.minecraft.util.ResourceLocation;

public class ClientProxy {

public void preInit(FMLPreInitializationEvent e) {

}

public void init() {
	Class clz = TextureMap.class;
	Method[] meths = clz.getDeclaredMethods();
	for (Method m : meths) {
		if (m.getReturnType() == ResourceLocation.class) {
			m.setAccessible(true);
			resourceLocation = m;
		}
	}
}

public void postInit(FMLPostInitializationEvent e) {

}

}

Oh, if it could help I followed this guide to learn basics for modding and my classes looks very similar to the author's ones https://play.google.com/store/books/details?id=KE2EBAAAQBAJ&source=ge-web-app

Set the power inside a single block free! ;D

Link to comment
Share on other sites

Second: I've tried your code but I've a problem at this point:

 

It need HardLib proxy that's from your library/api (I found it on github  ;D) so I've changed it to refer to my ClientProxy Class but it sais that i've not decleared resourceLocation as a variable. My ClientProxy Class is:

 

That was the second choice block I'd including putting the field in the common proxy.

Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable.  If you think this is the case, JUST REPORT ME.  Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice.

 

Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked.

 

DO NOT PM ME WITH PROBLEMS. No help will be given.

Link to comment
Share on other sites

That was the second choice block I'd including putting the field in the common proxy.

Ok, now the game loads correctly but in the console I've the missing texture error with another error that i haven't never seen

[21:35:20] [Client thread/ERROR] [TEXTURE ERRORS]: +=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
[21:35:20] [Client thread/ERROR] [TEXTURE ERRORS]: The following texture errors were found.
[21:35:20] [Client thread/ERROR] [TEXTURE ERRORS]: ==================================================
[21:35:20] [Client thread/ERROR] [TEXTURE ERRORS]:   DOMAIN minecraft
[21:35:20] [Client thread/ERROR] [TEXTURE ERRORS]: --------------------------------------------------
[21:35:20] [Client thread/ERROR] [TEXTURE ERRORS]:   domain minecraft is missing 1 texture
[21:35:20] [Client thread/ERROR] [TEXTURE ERRORS]:     domain minecraft has 3 locations:
[21:35:20] [Client thread/ERROR] [TEXTURE ERRORS]:       unknown resourcepack type net.minecraft.client.resources.DefaultResourcePack : Default
[21:35:20] [Client thread/ERROR] [TEXTURE ERRORS]:       mod FML resources at C:\Users\lmlor\.gradle\caches\minecraft\net\minecraftforge\forge\1.7.10-10.13.4.1558-1.7.10\forgeSrc-1.7.10-10.13.4.1558-1.7.10.jar
[21:35:20] [Client thread/ERROR] [TEXTURE ERRORS]:       mod Forge resources at C:\Users\lmlor\.gradle\caches\minecraft\net\minecraftforge\forge\1.7.10-10.13.4.1558-1.7.10\forgeSrc-1.7.10-10.13.4.1558-1.7.10.jar
[21:35:20] [Client thread/ERROR] [TEXTURE ERRORS]: -------------------------
[21:35:20] [Client thread/ERROR] [TEXTURE ERRORS]:     The missing resources for domain minecraft are:
[21:35:20] [Client thread/ERROR] [TEXTURE ERRORS]:       textures/blocks/MISSING_ICON_BLOCK_165_testBlock.png
[21:35:20] [Client thread/ERROR] [TEXTURE ERRORS]: -------------------------
[21:35:20] [Client thread/ERROR] [TEXTURE ERRORS]:     No other errors exist for domain minecraft
[21:35:20] [Client thread/ERROR] [TEXTURE ERRORS]: ==================================================
[21:35:20] [Client thread/ERROR] [TEXTURE ERRORS]: +=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=

Set the power inside a single block free! ;D

Link to comment
Share on other sites

Show your icon registration method in your block class.

Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable.  If you think this is the case, JUST REPORT ME.  Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice.

 

Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked.

 

DO NOT PM ME WITH PROBLEMS. No help will be given.

Link to comment
Share on other sites

Show your icon registration method in your block class.

This is ma test Block class, I don't know if it's correct, probabily no  :-[ Which are the resources folder for the textures? minecraft default for base and  src\main\resources\assets\modid\textures\blocks for overlay?

package com.lsmod.CompactStorage.Blocks;

import com.lsmod.CompactStorage.CompactStorage;
import com.lsmod.CompactStorage.client.TextureAtlasDynamic;

import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;
import net.minecraft.block.Block;
import net.minecraft.block.material.Material;
import net.minecraft.client.renderer.texture.IIconRegister;
import net.minecraft.client.renderer.texture.TextureMap;
import net.minecraft.creativetab.CreativeTabs;

public class testBlock extends Block {

public testBlock(String name) {
	super(Material.wood);
	setBlockName(name);
	setCreativeTab(CreativeTabs.tabBlock);
	setHardness(3F);
	setResistance(15F);
	setStepSound(soundTypeWood);
	setHarvestLevel("axe", 1);
}

@SideOnly(Side.CLIENT)
public void registerIcons(IIconRegister iconRegister) {
	if (iconRegister instanceof TextureMap) {
		TextureMap map = (TextureMap) iconRegister;
		String overlayName = "tier0";
		String baseName = "planks_oak";
		String regname = "planks_oak";
		map.setTextureEntry(regname, new TextureAtlasDynamic(regname, baseName, overlayName));
	}
}
}

Set the power inside a single block free! ;D

Link to comment
Share on other sites

You missed an important line:

 

				icons[o] = map.getTextureExtry(regname);

 

You need to get the IIcon back out and save it to a field in the block, which is then returned via getIcon(...)

Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable.  If you think this is the case, JUST REPORT ME.  Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice.

 

Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked.

 

DO NOT PM ME WITH PROBLEMS. No help will be given.

Link to comment
Share on other sites

You missed an important line:

 

				icons[o] = map.getTextureExtry(regname);

 

You need to get the IIcon back out and save it to a field in the block, which is then returned via getIcon(...)

Ok, I've finished my ideas  :'( Please Help me  :'( :'( :'(

Crash Report

[16:05:53] [main/INFO] [GradleStart]: Extra: []

[16:05:54] [main/INFO] [GradleStart]: Running with arguments: [--userProperties, {}, --accessToken, {REDACTED}, --assetIndex, 1.7.10, --assetsDir, C:/Users/lmlor/.gradle/caches/minecraft/assets, --version, 1.7.10, --tweakClass, cpw.mods.fml.common.launcher.FMLTweaker, --tweakClass, net.minecraftforge.gradle.tweakers.CoremodTweaker]

[16:05:54] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.FMLTweaker

[16:05:54] [main/INFO] [LaunchWrapper]: Using primary tweak class name cpw.mods.fml.common.launcher.FMLTweaker

[16:05:54] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker

[16:05:54] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLTweaker

[16:05:54] [main/INFO] [FML]: Forge Mod Loader version 7.99.36.1558 for Minecraft 1.7.10 loading

[16:05:54] [main/INFO] [FML]: Java is Java HotSpot 64-Bit Server VM, version 1.7.0_79, running on Windows 8.1:amd64:6.3, installed at C:\Program Files\Java\jdk1.7.0_79\jre

[16:05:54] [main/INFO] [FML]: Managed to load a deobfuscated Minecraft name- we are in a deobfuscated environment. Skipping runtime deobfuscation

[16:05:54] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.gradle.tweakers.CoremodTweaker

[16:05:54] [main/INFO] [GradleStart]: Injecting location in coremod cpw.mods.fml.relauncher.FMLCorePlugin

[16:05:54] [main/INFO] [GradleStart]: Injecting location in coremod net.minecraftforge.classloading.FMLForgePlugin

[16:05:54] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker

[16:05:54] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.FMLDeobfTweaker

[16:05:54] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.AccessTransformerTweaker

[16:05:54] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker

[16:05:54] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker

[16:05:54] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper

[16:05:54] [main/ERROR] [FML]: The binary patch set is missing. Either you are in a development environment, or things are not going to work!

[16:05:55] [main/ERROR] [FML]: FML appears to be missing any signature data. This is not a good thing

[16:05:55] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper

[16:05:55] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLDeobfTweaker

[16:05:55] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.gradle.tweakers.AccessTransformerTweaker

[16:05:55] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.TerminalTweaker

[16:05:55] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.TerminalTweaker

[16:05:55] [main/INFO] [LaunchWrapper]: Launching wrapped minecraft {net.minecraft.client.main.Main}

[16:05:56] [main/INFO]: Setting user: Player640

[16:05:57] [Client thread/INFO]: LWJGL Version: 2.9.1

[16:05:57] [Client thread/INFO] [sTDOUT]: [cpw.mods.fml.client.SplashProgress:start:188]: ---- Minecraft Crash Report ----

// I bet Cylons wouldn't have this problem.

 

Time: 30/12/15 16.05

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.7.10

Operating System: Windows 8.1 (amd64) version 6.3

Java Version: 1.7.0_79, Oracle Corporation

Java VM Version: Java HotSpot 64-Bit Server VM (mixed mode), Oracle Corporation

Memory: 810616680 bytes (773 MB) / 1037959168 bytes (989 MB) up to 1037959168 bytes (989 MB)

JVM Flags: 3 total; -Xincgc -Xmx1024M -Xms1024M

AABB Pool Size: 0 (0 bytes; 0 MB) allocated, 0 (0 bytes; 0 MB) used

IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0

FML:

GL info: ' Vendor: 'NVIDIA Corporation' Version: '4.5.0 NVIDIA 359.06' Renderer: 'GeForce GTX 650/PCIe/SSE2'

[16:05:58] [Client thread/INFO] [MinecraftForge]: Attempting early MinecraftForge initialization

[16:05:58] [Client thread/INFO] [FML]: MinecraftForge v10.13.4.1558 Initialized

[16:05:58] [Client thread/INFO] [FML]: Replaced 183 ore recipies

[16:05:58] [Client thread/INFO] [MinecraftForge]: Completed early MinecraftForge initialization

[16:05:58] [Client thread/INFO] [FML]: Found 0 mods from the command line. Injecting into mod discoverer

[16:05:58] [Client thread/INFO] [FML]: Searching C:\Users\lmlor\Desktop\MODs\CS-Dev\eclipse\mods for mods

[16:06:02] [Client thread/INFO] [FML]: Forge Mod Loader has identified 4 mods to load

[16:06:02] [Client thread/INFO] [FML]: Attempting connection with missing mods [mcp, FML, Forge, CompactStorage] at CLIENT

[16:06:02] [Client thread/INFO] [FML]: Attempting connection with missing mods [mcp, FML, Forge, CompactStorage] at SERVER

[16:06:02] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:Compact Storage

[16:06:02] [Client thread/INFO] [FML]: Processing ObjectHolder annotations

[16:06:02] [Client thread/INFO] [FML]: Found 341 ObjectHolder annotations

[16:06:02] [Client thread/INFO] [FML]: Identifying ItemStackHolder annotations

[16:06:02] [Client thread/INFO] [FML]: Found 0 ItemStackHolder annotations

[16:06:02] [Client thread/INFO] [FML]: Configured a dormant chunk cache size of 0

[16:06:02] [Forge Version Check/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: java.net.UnknownHostException: files.minecraftforge.net

[16:06:02] [Forge Version Check/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: at java.net.AbstractPlainSocketImpl.connect(AbstractPlainSocketImpl.java:178)

[16:06:02] [Forge Version Check/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:172)

[16:06:02] [Forge Version Check/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:392)

[16:06:02] [Forge Version Check/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: at java.net.Socket.connect(Socket.java:579)

[16:06:02] [Forge Version Check/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: at java.net.Socket.connect(Socket.java:528)

[16:06:02] [Forge Version Check/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: at sun.net.NetworkClient.doConnect(NetworkClient.java:180)

[16:06:02] [Forge Version Check/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: at sun.net.www.http.HttpClient.openServer(HttpClient.java:432)

[16:06:02] [Forge Version Check/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: at sun.net.www.http.HttpClient.openServer(HttpClient.java:527)

[16:06:02] [Forge Version Check/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: at sun.net.www.http.HttpClient.<init>(HttpClient.java:211)

[16:06:02] [Forge Version Check/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: at sun.net.www.http.HttpClient.New(HttpClient.java:308)

[16:06:02] [Forge Version Check/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: at sun.net.www.http.HttpClient.New(HttpClient.java:326)

[16:06:02] [Forge Version Check/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: at sun.net.www.protocol.http.HttpURLConnection.getNewHttpClient(HttpURLConnection.java:997)

[16:06:02] [Forge Version Check/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: at sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:933)

[16:06:02] [Forge Version Check/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: at sun.net.www.protocol.http.HttpURLConnection.connect(HttpURLConnection.java:851)

[16:06:02] [Forge Version Check/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: at sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1301)

[16:06:02] [Forge Version Check/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: at java.net.URL.openStream(URL.java:1037)

[16:06:02] [Forge Version Check/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: at net.minecraftforge.common.ForgeVersion$1.run(ForgeVersion.java:90)

[16:06:02] [Client thread/INFO] [FML]: Applying holder lookups

[16:06:02] [Client thread/INFO] [FML]: Holder lookups applied

[16:06:02] [Client thread/INFO] [FML]: Injecting itemstacks

[16:06:02] [Client thread/INFO] [FML]: Itemstack injection complete

[16:06:02] [sound Library Loader/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]:

[16:06:02] [sound Library Loader/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: Starting up SoundSystem...

[16:06:02] [Thread-8/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: Initializing LWJGL OpenAL

[16:06:02] [Thread-8/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]:    (The LWJGL binding of OpenAL.  For more information, see http://www.lwjgl.org)

[16:06:02] [Thread-8/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: OpenAL initialized.

[16:06:03] [sound Library Loader/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]:

[16:06:03] [sound Library Loader/INFO]: Sound engine started

[16:06:03] [Client thread/INFO]: Created: 16x16 textures/blocks-atlas

[16:06:03] [Client thread/INFO]: Created: 16x16 textures/items-atlas

[16:06:03] [Client thread/INFO] [FML]: Injecting itemstacks

[16:06:03] [Client thread/INFO] [FML]: Itemstack injection complete

[16:06:03] [Client thread/INFO] [FML]: Forge Mod Loader has successfully loaded 4 mods

[16:06:03] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:Compact Storage

[16:06:03] [Client thread/INFO]: Created: 256x256 textures/items-atlas

[16:06:03] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: java.lang.IllegalArgumentException: wrong number of arguments

[16:06:03] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

[16:06:03] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)

[16:06:03] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)

[16:06:03] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: at java.lang.reflect.Method.invoke(Method.java:606)

[16:06:03] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: at com.lsmod.CompactStorage.client.TextureAtlasDynamic.completeResourceLocation(TextureAtlasDynamic.java:110)

[16:06:03] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: at com.lsmod.CompactStorage.client.TextureAtlasDynamic.load(TextureAtlasDynamic.java:51)

[16:06:03] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: at net.minecraft.client.renderer.texture.TextureMap.loadTextureAtlas(TextureMap.java:125)

[16:06:03] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: at net.minecraft.client.renderer.texture.TextureMap.loadTexture(TextureMap.java:98)

[16:06:03] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: at net.minecraft.client.renderer.texture.TextureManager.loadTexture(TextureManager.java:89)

[16:06:03] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: at net.minecraft.client.renderer.texture.TextureManager.onResourceManagerReload(TextureManager.java:172)

[16:06:03] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: at net.minecraft.client.resources.SimpleReloadableResourceManager.notifyReloadListeners(SimpleReloadableResourceManager.java:143)

[16:06:03] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: at net.minecraft.client.resources.SimpleReloadableResourceManager.reloadResources(SimpleReloadableResourceManager.java:121)

[16:06:03] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: at net.minecraft.client.Minecraft.refreshResources(Minecraft.java:654)

[16:06:03] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: at cpw.mods.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:327)

[16:06:03] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: at net.minecraft.client.Minecraft.startGame(Minecraft.java:597)

[16:06:03] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: at net.minecraft.client.Minecraft.run(Minecraft.java:942)

[16:06:03] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: at net.minecraft.client.main.Main.main(Main.java:164)

[16:06:03] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

[16:06:03] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)

[16:06:03] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)

[16:06:03] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: at java.lang.reflect.Method.invoke(Method.java:606)

[16:06:03] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: at net.minecraft.launchwrapper.Launch.launch(Launch.java:135)

[16:06:03] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: at net.minecraft.launchwrapper.Launch.main(Launch.java:28)

[16:06:03] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: at net.minecraftforge.gradle.GradleStartCommon.launch(Unknown Source)

[16:06:03] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: at GradleStart.main(Unknown Source)

[16:06:03] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: java.lang.IllegalArgumentException: wrong number of arguments

[16:06:03] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

[16:06:03] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)

[16:06:03] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)

[16:06:03] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: at java.lang.reflect.Method.invoke(Method.java:606)

[16:06:03] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: at com.lsmod.CompactStorage.client.TextureAtlasDynamic.completeResourceLocation(TextureAtlasDynamic.java:110)

[16:06:03] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: at com.lsmod.CompactStorage.client.TextureAtlasDynamic.load(TextureAtlasDynamic.java:52)

[16:06:03] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: at net.minecraft.client.renderer.texture.TextureMap.loadTextureAtlas(TextureMap.java:125)

[16:06:03] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: at net.minecraft.client.renderer.texture.TextureMap.loadTexture(TextureMap.java:98)

[16:06:03] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: at net.minecraft.client.renderer.texture.TextureManager.loadTexture(TextureManager.java:89)

[16:06:03] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: at net.minecraft.client.renderer.texture.TextureManager.onResourceManagerReload(TextureManager.java:172)

[16:06:03] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: at net.minecraft.client.resources.SimpleReloadableResourceManager.notifyReloadListeners(SimpleReloadableResourceManager.java:143)

[16:06:03] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: at net.minecraft.client.resources.SimpleReloadableResourceManager.reloadResources(SimpleReloadableResourceManager.java:121)

[16:06:03] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: at net.minecraft.client.Minecraft.refreshResources(Minecraft.java:654)

[16:06:03] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: at cpw.mods.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:327)

[16:06:03] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: at net.minecraft.client.Minecraft.startGame(Minecraft.java:597)

[16:06:03] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: at net.minecraft.client.Minecraft.run(Minecraft.java:942)

[16:06:03] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: at net.minecraft.client.main.Main.main(Main.java:164)

[16:06:03] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

[16:06:03] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)

[16:06:03] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)

[16:06:03] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: at java.lang.reflect.Method.invoke(Method.java:606)

[16:06:03] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: at net.minecraft.launchwrapper.Launch.launch(Launch.java:135)

[16:06:03] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: at net.minecraft.launchwrapper.Launch.main(Launch.java:28)

[16:06:03] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: at net.minecraftforge.gradle.GradleStartCommon.launch(Unknown Source)

[16:06:03] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: at GradleStart.main(Unknown Source)

[16:06:03] [Client thread/INFO]: Caught error stitching, removing all assigned resourcepacks

net.minecraft.util.ReportedException: Registering texture

at net.minecraft.client.renderer.texture.TextureManager.loadTexture(TextureManager.java:111) ~[TextureManager.class:?]

at net.minecraft.client.renderer.texture.TextureManager.onResourceManagerReload(TextureManager.java:172) ~[TextureManager.class:?]

at net.minecraft.client.resources.SimpleReloadableResourceManager.notifyReloadListeners(SimpleReloadableResourceManager.java:143) ~[simpleReloadableResourceManager.class:?]

at net.minecraft.client.resources.SimpleReloadableResourceManager.reloadResources(SimpleReloadableResourceManager.java:121) ~[simpleReloadableResourceManager.class:?]

at net.minecraft.client.Minecraft.refreshResources(Minecraft.java:654) [Minecraft.class:?]

at cpw.mods.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:327) [FMLClientHandler.class:?]

at net.minecraft.client.Minecraft.startGame(Minecraft.java:597) [Minecraft.class:?]

at net.minecraft.client.Minecraft.run(Minecraft.java:942) [Minecraft.class:?]

at net.minecraft.client.main.Main.main(Main.java:164) [Main.class:?]

at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.7.0_79]

at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) ~[?:1.7.0_79]

at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.7.0_79]

at java.lang.reflect.Method.invoke(Method.java:606) ~[?:1.7.0_79]

at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.12.jar:?]

at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.12.jar:?]

at net.minecraftforge.gradle.GradleStartCommon.launch(Unknown Source) [start/:?]

at GradleStart.main(Unknown Source) [start/:?]

Caused by: java.lang.NullPointerException

at net.minecraft.client.resources.SimpleReloadableResourceManager.getResource(SimpleReloadableResourceManager.java:63) ~[simpleReloadableResourceManager.class:?]

at com.lsmod.CompactStorage.client.TextureAtlasDynamic.load(TextureAtlasDynamic.java:53) ~[TextureAtlasDynamic.class:?]

at net.minecraft.client.renderer.texture.TextureMap.loadTextureAtlas(TextureMap.java:125) ~[TextureMap.class:?]

at net.minecraft.client.renderer.texture.TextureMap.loadTexture(TextureMap.java:98) ~[TextureMap.class:?]

at net.minecraft.client.renderer.texture.TextureManager.loadTexture(TextureManager.java:89) ~[TextureManager.class:?]

... 16 more

[16:06:04] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:Compact Storage

[16:06:04] [Client thread/INFO]: Created: 256x256 textures/items-atlas

[16:06:04] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: java.lang.IllegalArgumentException: wrong number of arguments

[16:06:04] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

[16:06:04] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)

[16:06:04] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)

[16:06:04] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: at java.lang.reflect.Method.invoke(Method.java:606)

[16:06:04] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: at com.lsmod.CompactStorage.client.TextureAtlasDynamic.completeResourceLocation(TextureAtlasDynamic.java:110)

[16:06:04] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: at com.lsmod.CompactStorage.client.TextureAtlasDynamic.load(TextureAtlasDynamic.java:51)

[16:06:04] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: at net.minecraft.client.renderer.texture.TextureMap.loadTextureAtlas(TextureMap.java:125)

[16:06:04] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: at net.minecraft.client.renderer.texture.TextureMap.loadTexture(TextureMap.java:98)

[16:06:04] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: at net.minecraft.client.renderer.texture.TextureManager.loadTexture(TextureManager.java:89)

[16:06:04] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: at net.minecraft.client.renderer.texture.TextureManager.onResourceManagerReload(TextureManager.java:172)

[16:06:04] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: at net.minecraft.client.resources.SimpleReloadableResourceManager.notifyReloadListeners(SimpleReloadableResourceManager.java:143)

[16:06:04] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: at net.minecraft.client.resources.SimpleReloadableResourceManager.reloadResources(SimpleReloadableResourceManager.java:121)

[16:06:04] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: at net.minecraft.client.Minecraft.refreshResources(Minecraft.java:662)

[16:06:04] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: at cpw.mods.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:327)

[16:06:04] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: at net.minecraft.client.Minecraft.startGame(Minecraft.java:597)

[16:06:04] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: at net.minecraft.client.Minecraft.run(Minecraft.java:942)

[16:06:04] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: at net.minecraft.client.main.Main.main(Main.java:164)

[16:06:04] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

[16:06:04] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)

[16:06:04] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)

[16:06:04] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: at java.lang.reflect.Method.invoke(Method.java:606)

[16:06:04] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: at net.minecraft.launchwrapper.Launch.launch(Launch.java:135)

[16:06:04] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: at net.minecraft.launchwrapper.Launch.main(Launch.java:28)

[16:06:04] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: at net.minecraftforge.gradle.GradleStartCommon.launch(Unknown Source)

[16:06:04] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: at GradleStart.main(Unknown Source)

[16:06:04] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: java.lang.IllegalArgumentException: wrong number of arguments

[16:06:04] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

[16:06:04] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)

[16:06:04] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)

[16:06:04] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: at java.lang.reflect.Method.invoke(Method.java:606)

[16:06:04] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: at com.lsmod.CompactStorage.client.TextureAtlasDynamic.completeResourceLocation(TextureAtlasDynamic.java:110)

[16:06:04] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: at com.lsmod.CompactStorage.client.TextureAtlasDynamic.load(TextureAtlasDynamic.java:52)

[16:06:04] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: at net.minecraft.client.renderer.texture.TextureMap.loadTextureAtlas(TextureMap.java:125)

[16:06:04] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: at net.minecraft.client.renderer.texture.TextureMap.loadTexture(TextureMap.java:98)

[16:06:04] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: at net.minecraft.client.renderer.texture.TextureManager.loadTexture(TextureManager.java:89)

[16:06:04] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: at net.minecraft.client.renderer.texture.TextureManager.onResourceManagerReload(TextureManager.java:172)

[16:06:04] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: at net.minecraft.client.resources.SimpleReloadableResourceManager.notifyReloadListeners(SimpleReloadableResourceManager.java:143)

[16:06:04] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: at net.minecraft.client.resources.SimpleReloadableResourceManager.reloadResources(SimpleReloadableResourceManager.java:121)

[16:06:04] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: at net.minecraft.client.Minecraft.refreshResources(Minecraft.java:662)

[16:06:04] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: at cpw.mods.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:327)

[16:06:04] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: at net.minecraft.client.Minecraft.startGame(Minecraft.java:597)

[16:06:04] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: at net.minecraft.client.Minecraft.run(Minecraft.java:942)

[16:06:04] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: at net.minecraft.client.main.Main.main(Main.java:164)

[16:06:04] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

[16:06:04] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)

[16:06:04] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)

[16:06:04] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: at java.lang.reflect.Method.invoke(Method.java:606)

[16:06:04] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: at net.minecraft.launchwrapper.Launch.launch(Launch.java:135)

[16:06:04] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: at net.minecraft.launchwrapper.Launch.main(Launch.java:28)

[16:06:04] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: at net.minecraftforge.gradle.GradleStartCommon.launch(Unknown Source)

[16:06:04] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: at GradleStart.main(Unknown Source)

[16:06:04] [Client thread/INFO] [sTDOUT]: [net.minecraft.client.Minecraft:displayCrashReport:388]: ---- Minecraft Crash Report ----

// Uh... Did I do that?

 

Time: 30/12/15 16.06

Description: Registering texture

 

java.lang.NullPointerException: Registering texture

at net.minecraft.client.resources.SimpleReloadableResourceManager.getResource(SimpleReloadableResourceManager.java:63)

at com.lsmod.CompactStorage.client.TextureAtlasDynamic.load(TextureAtlasDynamic.java:53)

at net.minecraft.client.renderer.texture.TextureMap.loadTextureAtlas(TextureMap.java:125)

at net.minecraft.client.renderer.texture.TextureMap.loadTexture(TextureMap.java:98)

at net.minecraft.client.renderer.texture.TextureManager.loadTexture(TextureManager.java:89)

at net.minecraft.client.renderer.texture.TextureManager.onResourceManagerReload(TextureManager.java:172)

at net.minecraft.client.resources.SimpleReloadableResourceManager.notifyReloadListeners(SimpleReloadableResourceManager.java:143)

at net.minecraft.client.resources.SimpleReloadableResourceManager.reloadResources(SimpleReloadableResourceManager.java:121)

at net.minecraft.client.Minecraft.refreshResources(Minecraft.java:662)

at cpw.mods.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:327)

at net.minecraft.client.Minecraft.startGame(Minecraft.java:597)

at net.minecraft.client.Minecraft.run(Minecraft.java:942)

at net.minecraft.client.main.Main.main(Main.java:164)

at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)

at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)

at java.lang.reflect.Method.invoke(Method.java:606)

at net.minecraft.launchwrapper.Launch.launch(Launch.java:135)

at net.minecraft.launchwrapper.Launch.main(Launch.java:28)

at net.minecraftforge.gradle.GradleStartCommon.launch(Unknown Source)

at GradleStart.main(Unknown Source)

 

 

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

---------------------------------------------------------------------------------------

 

-- Head --

Stacktrace:

at net.minecraft.client.resources.SimpleReloadableResourceManager.getResource(SimpleReloadableResourceManager.java:63)

at com.lsmod.CompactStorage.client.TextureAtlasDynamic.load(TextureAtlasDynamic.java:53)

at net.minecraft.client.renderer.texture.TextureMap.loadTextureAtlas(TextureMap.java:125)

at net.minecraft.client.renderer.texture.TextureMap.loadTexture(TextureMap.java:98)

 

-- Resource location being registered --

Details:

Resource location: minecraft:textures/atlas/blocks.png

Texture object class: net.minecraft.client.renderer.texture.TextureMap

Stacktrace:

at net.minecraft.client.renderer.texture.TextureManager.loadTexture(TextureManager.java:89)

at net.minecraft.client.renderer.texture.TextureManager.onResourceManagerReload(TextureManager.java:172)

at net.minecraft.client.resources.SimpleReloadableResourceManager.notifyReloadListeners(SimpleReloadableResourceManager.java:143)

at net.minecraft.client.resources.SimpleReloadableResourceManager.reloadResources(SimpleReloadableResourceManager.java:121)

at net.minecraft.client.Minecraft.refreshResources(Minecraft.java:662)

at cpw.mods.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:327)

at net.minecraft.client.Minecraft.startGame(Minecraft.java:597)

 

-- Initialization --

Details:

Stacktrace:

at net.minecraft.client.Minecraft.run(Minecraft.java:942)

at net.minecraft.client.main.Main.main(Main.java:164)

at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)

at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)

at java.lang.reflect.Method.invoke(Method.java:606)

at net.minecraft.launchwrapper.Launch.launch(Launch.java:135)

at net.minecraft.launchwrapper.Launch.main(Launch.java:28)

at net.minecraftforge.gradle.GradleStartCommon.launch(Unknown Source)

at GradleStart.main(Unknown Source)

 

-- System Details --

Details:

Minecraft Version: 1.7.10

Operating System: Windows 8.1 (amd64) version 6.3

Java Version: 1.7.0_79, Oracle Corporation

Java VM Version: Java HotSpot 64-Bit Server VM (mixed mode), Oracle Corporation

Memory: 851862840 bytes (812 MB) / 1037959168 bytes (989 MB) up to 1037959168 bytes (989 MB)

JVM Flags: 3 total; -Xincgc -Xmx1024M -Xms1024M

AABB Pool Size: 0 (0 bytes; 0 MB) allocated, 0 (0 bytes; 0 MB) used

IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0

FML: MCP v9.05 FML v7.10.99.99 Minecraft Forge 10.13.4.1558 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.05} [Minecraft Coder Pack] (minecraft.jar)

UCHIJA FML{7.10.99.99} [Forge Mod Loader] (forgeSrc-1.7.10-10.13.4.1558-1.7.10.jar)

UCHIJA Forge{10.13.4.1558} [Minecraft Forge] (forgeSrc-1.7.10-10.13.4.1558-1.7.10.jar)

UCHIJA CompactStorage{{@version}} [Compact Storage] (bin)

GL info: ' Vendor: 'NVIDIA Corporation' Version: '4.5.0 NVIDIA 359.06' Renderer: 'GeForce GTX 650/PCIe/SSE2'

Launched Version: 1.7.10

LWJGL: 2.9.1

OpenGL: GeForce GTX 650/PCIe/SSE2 GL version 4.5.0 NVIDIA 359.06, NVIDIA Corporation

GL Caps: Using GL 1.3 multitexturing.

Using framebuffer objects because OpenGL 3.0 is supported and separate blending is supported.

Anisotropic filtering is supported and maximum anisotropy is 16.

Shaders are available because OpenGL 2.1 is supported.

 

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)

Vec3 Pool Size: 0 (0 bytes; 0 MB) allocated, 0 (0 bytes; 0 MB) used

Anisotropic Filtering: Off (1)

[16:06:04] [Client thread/INFO] [sTDOUT]: [net.minecraft.client.Minecraft:displayCrashReport:398]: #@!@# Game crashed! Crash report saved to: #@!@# C:\Users\lmlor\Desktop\MODs\CS-Dev\eclipse\.\crash-reports\crash-2015-12-30_16.06.04-client.txt

AL lib: (EE) alc_cleanup: 1 device not closed

 

 

 

Block Class

package com.lsmod.CompactStorage.Blocks;

import java.util.ArrayList;
import java.util.List;
import java.util.Random;

import com.lsmod.CompactStorage.client.TextureAtlasDynamic;

import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;
import net.minecraft.block.Block;
import net.minecraft.block.material.Material;
import net.minecraft.client.renderer.texture.IIconRegister;
import net.minecraft.client.renderer.texture.TextureMap;
import net.minecraft.creativetab.CreativeTabs;
import net.minecraft.init.Items;
import net.minecraft.item.Item;
import net.minecraft.item.ItemStack;
import net.minecraft.util.IIcon;
import net.minecraft.world.World;

public class test2Block extends Block {

String name = "endOre";
// Indicates the number of metadata -> Number of blocks
int metadata = 8;

@SideOnly(Side.CLIENT)
private IIcon[] icons;

public test2Block() {

	super(Material.rock);
	setBlockName(name);
	setCreativeTab(CreativeTabs.tabBlock);
	setHardness(3F);
	setResistance(15F);
	setStepSound(soundTypeStone);
	setHarvestLevel("pickaxe", 2);
}

@Override
@SideOnly(Side.CLIENT)
public void registerBlockIcons(IIconRegister par1IconRegister) {
	icons = new IIcon[metadata];

	if (par1IconRegister instanceof TextureMap) {
		TextureMap map = (TextureMap) par1IconRegister;
		for (int i = 0; i < icons.length; i++) {
			String overlayName = "tier"+i;
			String baseName = "plank_oak";
			String regname = this.getUnlocalizedName()+"_"+i;
			map.setTextureEntry(regname, new TextureAtlasDynamic(regname, baseName, overlayName));
			icons[i] = map.getTextureExtry(regname);
			//icons[i] = par1IconRegister.registerIcon("CompactStorage" + ":" + "plank_oak" + i);
		}
	}
}

@Override
@SideOnly(Side.CLIENT)
public IIcon getIcon(int par1, int par2) {
	return icons[par2];
}

@SuppressWarnings({ "unchecked", "rawtypes" })
@SideOnly(Side.CLIENT)
@Override
public void getSubBlocks(Item par1, CreativeTabs par2CreativeTabs, List par3List) {
	for (int var4 = 0; var4 < metadata; ++var4) {
		par3List.add(new ItemStack(par1, 1, var4));
	}
}

}

ItemBlock Class

package com.lsmod.CompactStorage.Blocks;


import net.minecraft.block.Block;
import net.minecraft.item.ItemBlock;
import net.minecraft.item.ItemStack;

public class test2Item extends ItemBlock {

public test2Item(Block block) {

	super(block);

}

@Override
public int getMetadata(int par1) {

	return par1;

}

@Override
public String getUnlocalizedName(ItemStack itemstack) {

	String name = "";

	switch (itemstack.getItemDamage()) {

	case 0:
		name = "tier0";
		break;
	case 1:
		name = "tier1";
		break;
	case 2:
		name = "tier2";
		break;
	case 3:
		name = "tier3";
		break;
	case 4:
		name = "tier4";
		break;
	case 5:
		name = "tier5";
		break;
	case 6:
		name = "tier6";
		break;
	case 7:
		name = "tier7";
		break;
	default:
		System.out.println("Invalid metadata for Block EndOre");
		name = "broken";
		break;

	}

	return getUnlocalizedName() + "." + name;
}

}

 

TextureAtlas

package com.lsmod.CompactStorage.client;

import java.awt.image.BufferedImage;
import java.io.IOException;
import java.lang.reflect.InvocationTargetException;

import javax.imageio.ImageIO;

import com.lsmod.CompactStorage.CompactStorage;

import net.minecraft.client.Minecraft;
import net.minecraft.client.renderer.texture.TextureAtlasSprite;
import net.minecraft.client.renderer.texture.TextureMap;
import net.minecraft.client.renderer.texture.TextureUtil;
import net.minecraft.client.resources.IResourceManager;
import net.minecraft.util.MathHelper;
import net.minecraft.util.ResourceLocation;

public class TextureAtlasDynamic extends TextureAtlasSprite {

protected String textureBase;
protected String textureOverlay;

public TextureAtlasDynamic(String string, String base, String overlay) {
	super(string);
	textureBase = base;
	textureOverlay = overlay;
}

@Override
public void updateAnimation() {
	TextureUtil.uploadTextureMipmap((int[][]) this.framesTextureData.get(0), this.width, this.height, this.originX, this.originY, false, false);
}

@Override
public boolean hasCustomLoader(IResourceManager manager, ResourceLocation location) {
	return true;
}

@Override
public boolean load(IResourceManager manager, ResourceLocation location) {
	framesTextureData.clear();
	this.frameCounter = 0;
	this.tickCounter = 0;

	ResourceLocation resource1 = new ResourceLocation(textureBase);
	ResourceLocation resource2 = new ResourceLocation(textureOverlay);

	try {
        	TextureMap map = Minecraft.getMinecraft().getTextureMapBlocks();
        	resource1 = this.completeResourceLocation(map, resource1, 0);
        	resource2 = this.completeResourceLocation(map, resource2, 0);
		BufferedImage buff = ImageIO.read(manager.getResource(resource1).getInputStream());
		BufferedImage buff2 = ImageIO.read(manager.getResource(resource2).getInputStream());

        int[] rawBase = new int[buff.getWidth()*buff.getHeight()];
        int[] rawOverlay = new int[buff2.getWidth()*buff2.getHeight()];

        buff.getRGB(0, 0, buff.getWidth(), buff.getHeight(), rawBase, 0, buff.getWidth());
        buff2.getRGB(0, 0, buff2.getWidth(), buff2.getHeight(), rawOverlay, 0, buff2.getWidth());
        
        int min = Math.min(buff.getWidth(),buff2.getWidth());
        rawBase = scaleToSmaller(rawBase, buff.getWidth(), min);
        rawOverlay = scaleToSmaller(rawOverlay, buff2.getWidth(), min);

        width = min;
        height = min;
        
        int[][] aint = new int[1 + MathHelper.calculateLogBaseTwo(min)][];
        for (int k = 0; k < aint.length; ++k)
        {
        	aint[k] = rawBase;
        }

        this.framesTextureData.add(aint);
	} catch (IOException e) {
		e.printStackTrace();
		int[][] aint = new int[1][];
        for (int k = 0; k < 1; ++k)
        {
        	aint[k] = new int[16*16];
        	for(int l=0; l<aint[k].length;l++) {
        		aint[k][l] = 0xFFFFFFFF;
        	}
        }
        width = 16;
        height = 16;

        this.framesTextureData.add(aint);
	}
        return false;
}

private static int[] scaleToSmaller(int[] data, int width, int min) {
	if(width == min) { return data; }
	int scale = width / min;
	int[] output = new int[min*min];
	int j = 0;
	for(int i = 0; i < output.length; i++) {
		if(i%min == 0) {
			j += width;
		}
		output[i] = data[i*scale+j];
	}
	return output;
}

private static ResourceLocation completeResourceLocation(TextureMap map, ResourceLocation loc, int c) {
	try {
		return (ResourceLocation)CompactStorage.proxy.resourceLocation.invoke(map, c);
	} catch (IllegalAccessException e) {
		e.printStackTrace();
	} catch (IllegalArgumentException e) {
		e.printStackTrace();
	} catch (InvocationTargetException e) {
		e.printStackTrace();
	}
	return null;
}

}

 

I don't really know what to do, please be good with me, can you make me a simple example of a block using TextureAtlas?

Set the power inside a single block free! ;D

Link to comment
Share on other sites

AFAICT something in the texture atlas load method is borked. This is an incredibly difficult error to solve, as the point at which the program discovers that there's a problem is long after our code has run, or deep in the call stack. I don't see the problem off hand.

 

I'll have to get you my block later, I'm not home.

Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable.  If you think this is the case, JUST REPORT ME.  Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice.

 

Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked.

 

DO NOT PM ME WITH PROBLEMS. No help will be given.

Link to comment
Share on other sites

AFAICT something in the texture atlas load method is borked. This is an incredibly difficult error to solve, as the point at which the program discovers that there's a problem is long after our code has run, or deep in the call stack. I don't see the problem off hand.

 

I'll have to get you my block later, I'm not home.

Oh, thank you very much, you're doing a lot for me!  ;D

Set the power inside a single block free! ;D

Link to comment
Share on other sites

Oh, thank you very much, you're doing a lot for me!  ;D

 

I think I'm the only one who has used the custom sprite loader, so I'm the only one that knows how it works, and even that knowledge is questionable. It is so much easier to just render the block twice and accept the crappy break particles.

Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable.  If you think this is the case, JUST REPORT ME.  Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice.

 

Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked.

 

DO NOT PM ME WITH PROBLEMS. No help will be given.

Link to comment
Share on other sites

Stacktrace:
   at net.minecraft.client.resources.SimpleReloadableResourceManager.getResource(SimpleReloadableResourceManager.java:63)
   at com.lsmod.CompactStorage.client.TextureAtlasDynamic.load(TextureAtlasDynamic.java:53)

The only thing that can be null on line 63 in

SimpleReloadableResourceManager

is the ResourceLocation parameter passed in. This corresponds to your

ResourceLocation

variable called

resource1

. This gets intialized with a call to

completeResourceLocation

. This means that that method returns

null

. In your crash log, it also mentions this:

[16:06:03] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]: java.lang.IllegalArgumentException: wrong number of arguments
[16:06:03] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]:    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
[16:06:03] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]:    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
[16:06:03] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]:    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
[16:06:03] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]:    at java.lang.reflect.Method.invoke(Method.java:606)
[16:06:03] [Client thread/INFO] [sTDERR]: [java.lang.Throwable$WrappedPrintStream:println:748]:    at com.lsmod.CompactStorage.client.TextureAtlasDynamic.completeResourceLocation(TextureAtlasDynamic.java:110)

Line 110 in

TextureAtlasDynamic

is that line in

completeResourceLocation

, which means you call

invoke

with the wrong number of arguments. Seems a bit weird to me...

Don't PM me with questions. They will be ignored! Make a thread on the appropriate board for support.

 

1.12 -> 1.13 primer by williewillus.

 

1.7.10 and older versions of Minecraft are no longer supported due to it's age! Update to the latest version for support.

 

http://www.howoldisminecraft1710.today/

Link to comment
Share on other sites

That suggests that "plank_oak" is not the correct texture string.

 

The standard texture alas would throw one of those "texture not found: minecraft:plank_oak" messages, but in creating a custom loader, that error handling got lost. I'll take a look at the strings I pass. It might need to be "minecraft:plank_oak"

Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable.  If you think this is the case, JUST REPORT ME.  Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice.

 

Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked.

 

DO NOT PM ME WITH PROBLEMS. No help will be given.

Link to comment
Share on other sites

Ok, so I poked around.  You are using it correctly, however, the texture name is not "plank_oak" its "planks_oak"

Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable.  If you think this is the case, JUST REPORT ME.  Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice.

 

Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked.

 

DO NOT PM ME WITH PROBLEMS. No help will be given.

Link to comment
Share on other sites

Ok, so I poked around.  You are using it correctly, however, the texture name is not "plank_oak" its "planks_oak"

Ok, I corrected it to "planks oak" but that's not the thing that cause the crash, it should load without loading that texture, the problem is in TextureAtlas class

Set the power inside a single block free! ;D

Link to comment
Share on other sites

"planks oak" != ""planks_oak". See the underscore?

Don't PM me with questions. They will be ignored! Make a thread on the appropriate board for support.

 

1.12 -> 1.13 primer by williewillus.

 

1.7.10 and older versions of Minecraft are no longer supported due to it's age! Update to the latest version for support.

 

http://www.howoldisminecraft1710.today/

Link to comment
Share on other sites

Ok, so I poked around.  You are using it correctly, however, the texture name is not "plank_oak" its "planks_oak"

Ok, I corrected it to "planks oak" but that's not the thing that cause the crash, it should load without loading that texture, the problem is in TextureAtlas class

 

Unfortunately, whatever the problem is, the error handling is not there to tell us what's wrong.  You're going to have to do some stack trace digging and examining what it is crashes, why, where that value came from, and work backwards.

 

Took me weeks to figure a couple of errors out myself that way, having to do with the various data arrays for the mipmaps.

Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable.  If you think this is the case, JUST REPORT ME.  Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice.

 

Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked.

 

DO NOT PM ME WITH PROBLEMS. No help will be given.

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

    • I have been having a problem with minecraft forge. Any version. Everytime I try to launch it it always comes back with error code 1. I have tried launching from curseforge, from the minecraft launcher. I have also tried resetting my computer to see if that would help. It works on my other computer but that one is too old to run it properly. I have tried with and without mods aswell. Fabric works, optifine works, and MultiMC works aswell but i want to use forge. If you can help with this issue please DM on discord my # is Haole_Dawg#6676
    • Add the latest.log (logs-folder) with sites like https://paste.ee/ and paste the link to it here  
    • I have no idea how a UI mod crashed a whole world but HUGE props to you man, just saved me +2 months of progress!  
    • So i know for a fact this has been asked before but Render stuff troubles me a little and i didnt find any answer for recent version. I have a custom nausea effect. Currently i add both my nausea effect and the vanilla one for the effect. But the problem is that when I open the inventory, both are listed, while I'd only want mine to show up (both in the inv and on the GUI)   I've arrived to the GameRender (on joined/net/minecraft/client) and also found shaders on client-extra/assets/minecraft/shaders/post and client-extra/assets/minecraft/shaders/program but I'm lost. I understand that its like a regular screen, where I'd render stuff "over" the game depending on data on the server, but If someone could point to the right client and server classes that i can read to see how i can manage this or any tip would be apreciated
    • Hey. im trying to run a modpack on a server but it just will not run. this is my first time working with mods and I do not really know much of what im doing but how can i fix the errors im getting?  Heres my mod list: 04/18/2024  07:48 PM    <DIR>          . 04/18/2024  07:28 PM    <DIR>          .. 04/17/2024  10:26 PM         4,126,239 Adorn-5.0.1+1.20.1-forge.jar 04/17/2024  10:27 PM         3,916,723 Alex's Mobs Music Mod 1.20.1.jar 04/17/2024  10:27 PM            55,398 alexsdelight-1.5.jar 04/17/2024  10:27 PM        26,055,355 alexsmobs-1.22.8.jar 04/18/2024  06:36 PM           931,038 amendments-1.20-1.1.22.jar 04/17/2024  10:34 PM           580,602 architectury-9.2.14-forge.jar 04/17/2024  10:35 PM           370,350 astemirlib-1.20.1-1.25.jar 04/17/2024  10:26 PM           343,714 balm-forge-1.20.1-7.2.2.jar 04/17/2024  10:28 PM        21,800,460 BiomesOPlenty-1.20.1-18.0.0.592.jar 04/17/2024  10:25 PM           337,327 Bookshelf-Forge-1.20.1-20.1.10.jar 04/17/2024  10:26 PM           319,549 bushierflowers-0.0.3-1.20.1.jar 04/17/2024  10:29 PM            35,464 ChunkAnimator-1.20.1-1.3.7.jar 04/17/2024  10:27 PM         3,181,461 citadel-2.5.4-1.20.1.jar 04/17/2024  10:29 PM            20,299 Clumps-forge-1.20.1-12.0.0.3.jar 04/17/2024  10:26 PM           815,220 cookingforblockheads-forge-1.20.1-16.0.4.jar 04/17/2024  10:29 PM            24,736 cupboard-1.20.1-2.6.jar 04/17/2024  10:26 PM           144,057 duckling-3.0.0-forge.jar 04/17/2024  10:28 PM         1,013,941 exposure-1.20.1-1.5.1-forge.jar 04/17/2024  10:25 PM         2,915,349 FarmersDelight-1.20.1-1.2.4.jar 04/17/2024  10:26 PM           989,964 geckolib-forge-1.20.1-4.4.4.jar 04/18/2024  06:04 PM           439,448 hamsters-forge-1.0.3-1.20.1.jar 04/17/2024  10:33 PM         1,127,828 jei-1.20.1-forge-15.3.0.4.jar 04/17/2024  10:26 PM         7,778,600 kotlinforforge-4.10.0-all.jar 04/18/2024  06:22 PM             6,689 latest.log 04/17/2024  10:34 PM           402,297 letsdo-API-forge-1.2.9-forge.jar 04/17/2024  10:34 PM         1,751,775 letsdo-bakery-forge-1.1.8.jar 04/17/2024  10:34 PM         3,587,352 letsdo-beachparty-forge-1.1.4-1.jar 04/17/2024  10:34 PM         2,290,239 letsdo-brewery-forge-1.1.5.jar 04/17/2024  10:34 PM         2,661,755 letsdo-candlelight-forge-1.2.11.jar 04/17/2024  10:34 PM           720,427 letsdo-herbalbrews-forge-1.0.6.jar 04/17/2024  10:34 PM         2,835,271 letsdo-meadow-forge-1.3.8.jar 04/17/2024  10:34 PM           869,409 letsdo-nethervinery-forge-1.2.9.jar 04/17/2024  10:34 PM         3,497,113 letsdo-vinery-forge-1.4.14.jar 04/18/2024  07:48 PM                 0 listing.txt 04/17/2024  10:36 PM         1,161,940 moonlight-1.20-2.11.12-forge.jar 04/17/2024  10:26 PM           377,881 nightlights-1.20.1-1.1.jar 04/17/2024  10:04 PM           420,640 notenoughanimations-forge-1.7.1-mc1.20.1.jar 04/17/2024  10:35 PM           642,506 Patchouli-1.20.1-84-FORGE.jar 04/17/2024  10:07 PM           181,437 player-animation-lib-forge-1.0.2-rc1+1.20.jar 04/17/2024  10:25 PM           348,118 QualityCrops-1.20.1-1.3.3.jar 04/17/2024  10:25 PM           601,831 QualitysDelight-1.20.1-1.5.3.jar 04/17/2024  10:29 PM            12,011 smoothchunk-1.20.1-3.6.jar 04/18/2024  06:04 PM           851,762 sophisticatedbackpacks-1.20.1-3.20.5.1039.jar 04/18/2024  06:04 PM         1,079,415 sophisticatedcore-1.20.1-0.6.18.597.jar 04/17/2024  10:36 PM        14,516,938 supplementaries-1.20-2.8.10.jar 04/17/2024  10:36 PM           813,469 suppsquared-1.20-1.1.14.jar 04/18/2024  06:34 PM           107,369 TerraBlender-forge-1.20.1-3.0.1.4.jar 04/17/2024  10:33 PM         4,068,057 thedawnera-1.20.1-0.58.94.jar 04/17/2024  10:26 PM         2,766,476 Twigs-1.20.1-3.1.0.jar               49 File(s)    123,895,299 bytes                2 Dir(s)  262,384,455,680 bytes free   and heres the crash report:  19.04 00:02:16 [Multicraft] Received start command 19.04 00:02:16 [Multicraft] Loading server properties 19.04 00:02:16 [Multicraft] Starting server! 19.04 00:02:16 [Multicraft] Loaded config for "Forge 1.20.1 - 47.2.0" 19.04 00:02:18 [Multicraft] JAR file not found, copying from global JAR directory 19.04 00:02:18 [Multicraft] Failed to copy jarfile from global JAR directory 19.04 00:02:18 [Multicraft] Setting template to "Forge_1.20.1_47.2.0" from config file 19.04 00:02:18 [Multicraft] Setting template options to "always" from config file 19.04 00:02:18 [Multicraft] Running setup... 19.04 00:02:19 [Setup/"(Installation) Forge 1.20.1 - 47.2.0" before setup] Checking if Forge is already installed on your server! 19.04 00:02:19 [Setup/"(Installation) Forge 1.20.1 - 47.2.0" before setup] forge-installer.jar present. 19.04 00:02:19 [Setup/"(Installation) Forge 1.20.1 - 47.2.0" before setup] libraries/net/minecraft/server/1.20.1/server-1.20.1.jar present. 19.04 00:02:19 [Setup/"(Installation) Forge 1.20.1 - 47.2.0" before setup] Starting your server... 19.04 00:02:19 [Multicraft] Done, returned Ok 19.04 00:02:19 [Multicraft] Setting server binary to "Forge_1.20.1_47.2.0" 19.04 00:02:19 [Multicraft] Setup done, restarting 19.04 00:02:19 [Multicraft] Server stopped 19.04 00:02:22 [Multicraft] Loading server properties 19.04 00:02:22 [Multicraft] Starting server! 19.04 00:02:22 [Multicraft] Loaded config for "Forge 1.20.1 - 47.2.0" 19.04 00:02:24 [Multicraft] JAR file not found, copying from global JAR directory 19.04 00:02:24 [Multicraft] Failed to copy jarfile from global JAR directory 19.04 00:02:24 [Multicraft] Updating eula.txt file 19.04 00:02:28 [Server] INFO 2024-04-19 00:02:28,923 main WARN Advanced terminal features are not available in this environment 19.04 00:02:29 [Server] main/INFO [cp.mo.mo.Launcher/MODLAUNCHER]: ModLauncher running: args [--launchTarget, forgeserver, --fml.forgeVersion, 47.2.0, --fml.mcVersion, 1.20.1, --fml.forgeGroup, net.minecraftforge, --fml.mcpVersion, 20230612.114412, nogui] 19.04 00:02:29 [Server] main/INFO [cp.mo.mo.Launcher/MODLAUNCHER]: ModLauncher 10.0.9+10.0.9+main.dcd20f30 starting: java version 17.0.2 by Oracle Corporation; OS Linux arch amd64 version 4.19.0-26-amd64 19.04 00:02:30 [Server] main/INFO [ne.mi.fm.lo.ImmediateWindowHandler/]: ImmediateWindowProvider not loading because launch target is forgeserver 19.04 00:02:30 [Server] main/INFO [mixin/]: SpongePowered MIXIN Subsystem Version=0.8.5 Source=union:/libraries/org/spongepowered/mixin/0.8.5/mixin-0.8.5.jar%2365!/ Service=ModLauncher Env=SERVER 19.04 00:02:31 [Server] main/WARN [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Mod file /libraries/net/minecraftforge/fmlcore/1.20.1-47.2.0/fmlcore-1.20.1-47.2.0.jar is missing mods.toml file 19.04 00:02:31 [Server] main/WARN [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Mod file /libraries/net/minecraftforge/javafmllanguage/1.20.1-47.2.0/javafmllanguage-1.20.1-47.2.0.jar is missing mods.toml file 19.04 00:02:31 [Server] main/WARN [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Mod file /libraries/net/minecraftforge/lowcodelanguage/1.20.1-47.2.0/lowcodelanguage-1.20.1-47.2.0.jar is missing mods.toml file 19.04 00:02:31 [Server] main/WARN [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Mod file /libraries/net/minecraftforge/mclanguage/1.20.1-47.2.0/mclanguage-1.20.1-47.2.0.jar is missing mods.toml file 19.04 00:02:31 [Server] main/WARN [ne.mi.ja.se.JarSelector/]: Attempted to select two dependency jars from JarJar which have the same identification: Mod File: and Mod File: . Using Mod File: 19.04 00:02:31 [Server] main/INFO [ne.mi.fm.lo.mo.JarInJarDependencyLocator/]: Found 9 dependencies adding them to mods collection 19.04 00:02:16 [Multicraft] Received start command 19.04 00:02:16 [Multicraft] Loading server properties 19.04 00:02:16 [Multicraft] Starting server! 19.04 00:02:16 [Multicraft] Loaded config for "Forge 1.20.1 - 47.2.0" 19.04 00:02:18 [Multicraft] JAR file not found, copying from global JAR directory 19.04 00:02:18 [Multicraft] Failed to copy jarfile from global JAR directory 19.04 00:02:18 [Multicraft] Setting template to "Forge_1.20.1_47.2.0" from config file 19.04 00:02:18 [Multicraft] Setting template options to "always" from config file 19.04 00:02:18 [Multicraft] Running setup... 19.04 00:02:19 [Setup/"(Installation) Forge 1.20.1 - 47.2.0" before setup] Checking if Forge is already installed on your server! 19.04 00:02:19 [Setup/"(Installation) Forge 1.20.1 - 47.2.0" before setup] forge-installer.jar present. 19.04 00:02:19 [Setup/"(Installation) Forge 1.20.1 - 47.2.0" before setup] libraries/net/minecraft/server/1.20.1/server-1.20.1.jar present. 19.04 00:02:19 [Setup/"(Installation) Forge 1.20.1 - 47.2.0" before setup] Starting your server... 19.04 00:02:19 [Multicraft] Done, returned Ok 19.04 00:02:19 [Multicraft] Setting server binary to "Forge_1.20.1_47.2.0" 19.04 00:02:19 [Multicraft] Setup done, restarting 19.04 00:02:19 [Multicraft] Server stopped 19.04 00:02:22 [Multicraft] Loading server properties 19.04 00:02:22 [Multicraft] Starting server! 19.04 00:02:22 [Multicraft] Loaded config for "Forge 1.20.1 - 47.2.0" 19.04 00:02:24 [Multicraft] JAR file not found, copying from global JAR directory 19.04 00:02:24 [Multicraft] Failed to copy jarfile from global JAR directory 19.04 00:02:24 [Multicraft] Updating eula.txt file 19.04 00:02:28 [Server] INFO 2024-04-19 00:02:28,923 main WARN Advanced terminal features are not available in this environment 19.04 00:02:29 [Server] main/INFO [cp.mo.mo.Launcher/MODLAUNCHER]: ModLauncher running: args [--launchTarget, forgeserver, --fml.forgeVersion, 47.2.0, --fml.mcVersion, 1.20.1, --fml.forgeGroup, net.minecraftforge, --fml.mcpVersion, 20230612.114412, nogui] 19.04 00:02:29 [Server] main/INFO [cp.mo.mo.Launcher/MODLAUNCHER]: ModLauncher 10.0.9+10.0.9+main.dcd20f30 starting: java version 17.0.2 by Oracle Corporation; OS Linux arch amd64 version 4.19.0-26-amd64 19.04 00:02:30 [Server] main/INFO [ne.mi.fm.lo.ImmediateWindowHandler/]: ImmediateWindowProvider not loading because launch target is forgeserver 19.04 00:02:30 [Server] main/INFO [mixin/]: SpongePowered MIXIN Subsystem Version=0.8.5 Source=union:/libraries/org/spongepowered/mixin/0.8.5/mixin-0.8.5.jar%2365!/ Service=ModLauncher Env=SERVER 19.04 00:02:31 [Server] main/WARN [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Mod file /libraries/net/minecraftforge/fmlcore/1.20.1-47.2.0/fmlcore-1.20.1-47.2.0.jar is missing mods.toml file 19.04 00:02:31 [Server] main/WARN [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Mod file /libraries/net/minecraftforge/javafmllanguage/1.20.1-47.2.0/javafmllanguage-1.20.1-47.2.0.jar is missing mods.toml file 19.04 00:02:31 [Server] main/WARN [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Mod file /libraries/net/minecraftforge/lowcodelanguage/1.20.1-47.2.0/lowcodelanguage-1.20.1-47.2.0.jar is missing mods.toml file 19.04 00:02:31 [Server] main/WARN [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Mod file /libraries/net/minecraftforge/mclanguage/1.20.1-47.2.0/mclanguage-1.20.1-47.2.0.jar is missing mods.toml file 19.04 00:02:31 [Server] main/WARN [ne.mi.ja.se.JarSelector/]: Attempted to select two dependency jars from JarJar which have the same identification: Mod File: and Mod File: . Using Mod File: 19.04 00:02:31 [Server] main/INFO [ne.mi.fm.lo.mo.JarInJarDependencyLocator/]: Found 9 dependencies adding them to mods collection 19.04 00:02:34 [Server] main/INFO [mixin/]: Compatibility level set to JAVA_17 19.04 00:02:34 [Server] main/ERROR [mixin/]: Mixin config hamsters.mixins.json does not specify "minVersion" property 19.04 00:02:42 [Server] main/INFO [cp.mo.mo.LaunchServiceHandler/MODLAUNCHER]: Launching target 'forgeserver' with arguments [nogui] 19.04 00:02:42 [Server] main/WARN [mixin/]: Reference map 'hamsters.refmap.json' for hamsters.mixins.json could not be read. If this is a development environment you can ignore this message 19.04 00:02:42 [Server] main/WARN [mixin/]: Reference map 'cookingforblockheads.refmap.json' for cookingforblockheads.mixins.json could not be read. If this is a development environment you can ignore this message 19.04 00:02:42 [Server] main/WARN [mixin/]: Reference map 'letsdo-bakery-forge-forge-refmap.json' for bakery.mixins.json could not be read. If this is a development environment you can ignore this message 19.04 00:02:42 [Server] main/WARN [mixin/]: Reference map 'letsdo-vinery-forge-forge-refmap.json' for vinery.mixins.json could not be read. If this is a development environment you can ignore this message 19.04 00:02:42 [Server] main/WARN [mixin/]: Reference map 'QualitysDelight.refmap.json' for qualitysdelight.mixins.json could not be read. If this is a development environment you can ignore this message 19.04 00:02:42 [Server] main/WARN [mixin/]: Reference map 'letsdo-brewery-forge-forge-refmap.json' for brewery.mixins.json could not be read. If this is a development environment you can ignore this message 19.04 00:02:42 [Server] main/WARN [mixin/]: Reference map 'suppsquared-common-refmap.json' for suppsquared-common.mixins.json could not be read. If this is a development environment you can ignore this message 19.04 00:02:42 [Server] main/WARN [mixin/]: Reference map 'suppsquared-forge-refmap.json' for suppsquared.mixins.json could not be read. If this is a development environment you can ignore this message 19.04 00:02:42 [Server] main/WARN [mixin/]: Error loading class: com/simibubi/create/content/fluids/spout/FillingBySpout (java.lang.ClassNotFoundException: com.simibubi.create.content.fluids.spout.FillingBySpout) 19.04 00:02:42 [Server] main/INFO [MixinExtras|Service/]: Initializing MixinExtras via com.llamalad7.mixinextras.service.MixinExtrasServiceImpl(version=0.3.5). 19.04 00:02:42 [Server] main/WARN [mixin/]: @Final field f_57244_:Lnet/minecraft/world/level/block/state/properties/IntegerProperty; in QualityCrops.mixins.json:SweetBerryBushMixin should be final Couldn't get log: Empty response 19.04 00:02:16 [Multicraft] Received start command 19.04 00:02:16 [Multicraft] Loading server properties 19.04 00:02:16 [Multicraft] Starting server! 19.04 00:02:16 [Multicraft] Loaded config for "Forge 1.20.1 - 47.2.0" 19.04 00:02:18 [Multicraft] JAR file not found, copying from global JAR directory 19.04 00:02:18 [Multicraft] Failed to copy jarfile from global JAR directory 19.04 00:02:18 [Multicraft] Setting template to "Forge_1.20.1_47.2.0" from config file 19.04 00:02:18 [Multicraft] Setting template options to "always" from config file 19.04 00:02:18 [Multicraft] Running setup... 19.04 00:02:19 [Setup/"(Installation) Forge 1.20.1 - 47.2.0" before setup] Checking if Forge is already installed on your server! 19.04 00:02:19 [Setup/"(Installation) Forge 1.20.1 - 47.2.0" before setup] forge-installer.jar present. 19.04 00:02:19 [Setup/"(Installation) Forge 1.20.1 - 47.2.0" before setup] libraries/net/minecraft/server/1.20.1/server-1.20.1.jar present. 19.04 00:02:19 [Setup/"(Installation) Forge 1.20.1 - 47.2.0" before setup] Starting your server... 19.04 00:02:19 [Multicraft] Done, returned Ok 19.04 00:02:19 [Multicraft] Setting server binary to "Forge_1.20.1_47.2.0" 19.04 00:02:19 [Multicraft] Setup done, restarting 19.04 00:02:19 [Multicraft] Server stopped 19.04 00:02:22 [Multicraft] Loading server properties 19.04 00:02:22 [Multicraft] Starting server! 19.04 00:02:22 [Multicraft] Loaded config for "Forge 1.20.1 - 47.2.0" 19.04 00:02:24 [Multicraft] JAR file not found, copying from global JAR directory 19.04 00:02:24 [Multicraft] Failed to copy jarfile from global JAR directory 19.04 00:02:24 [Multicraft] Updating eula.txt file 19.04 00:02:28 [Server] INFO 2024-04-19 00:02:28,923 main WARN Advanced terminal features are not available in this environment 19.04 00:02:29 [Server] main/INFO [cp.mo.mo.Launcher/MODLAUNCHER]: ModLauncher running: args [--launchTarget, forgeserver, --fml.forgeVersion, 47.2.0, --fml.mcVersion, 1.20.1, --fml.forgeGroup, net.minecraftforge, --fml.mcpVersion, 20230612.114412, nogui] 19.04 00:02:29 [Server] main/INFO [cp.mo.mo.Launcher/MODLAUNCHER]: ModLauncher 10.0.9+10.0.9+main.dcd20f30 starting: java version 17.0.2 by Oracle Corporation; OS Linux arch amd64 version 4.19.0-26-amd64 19.04 00:02:30 [Server] main/INFO [ne.mi.fm.lo.ImmediateWindowHandler/]: ImmediateWindowProvider not loading because launch target is forgeserver 19.04 00:02:30 [Server] main/INFO [mixin/]: SpongePowered MIXIN Subsystem Version=0.8.5 Source=union:/libraries/org/spongepowered/mixin/0.8.5/mixin-0.8.5.jar%2365!/ Service=ModLauncher Env=SERVER 19.04 00:02:31 [Server] main/WARN [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Mod file /libraries/net/minecraftforge/fmlcore/1.20.1-47.2.0/fmlcore-1.20.1-47.2.0.jar is missing mods.toml file 19.04 00:02:31 [Server] main/WARN [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Mod file /libraries/net/minecraftforge/javafmllanguage/1.20.1-47.2.0/javafmllanguage-1.20.1-47.2.0.jar is missing mods.toml file 19.04 00:02:31 [Server] main/WARN [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Mod file /libraries/net/minecraftforge/lowcodelanguage/1.20.1-47.2.0/lowcodelanguage-1.20.1-47.2.0.jar is missing mods.toml file 19.04 00:02:31 [Server] main/WARN [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Mod file /libraries/net/minecraftforge/mclanguage/1.20.1-47.2.0/mclanguage-1.20.1-47.2.0.jar is missing mods.toml file 19.04 00:02:31 [Server] main/WARN [ne.mi.ja.se.JarSelector/]: Attempted to select two dependency jars from JarJar which have the same identification: Mod File: and Mod File: . Using Mod File: 19.04 00:02:31 [Server] main/INFO [ne.mi.fm.lo.mo.JarInJarDependencyLocator/]: Found 9 dependencies adding them to mods collection 19.04 00:02:34 [Server] main/INFO [mixin/]: Compatibility level set to JAVA_17 19.04 00:02:34 [Server] main/ERROR [mixin/]: Mixin config hamsters.mixins.json does not specify "minVersion" property 19.04 00:02:42 [Server] main/INFO [cp.mo.mo.LaunchServiceHandler/MODLAUNCHER]: Launching target 'forgeserver' with arguments [nogui] 19.04 00:02:42 [Server] main/WARN [mixin/]: Reference map 'hamsters.refmap.json' for hamsters.mixins.json could not be read. If this is a development environment you can ignore this message 19.04 00:02:42 [Server] main/WARN [mixin/]: Reference map 'cookingforblockheads.refmap.json' for cookingforblockheads.mixins.json could not be read. If this is a development environment you can ignore this message 19.04 00:02:42 [Server] main/WARN [mixin/]: Reference map 'letsdo-bakery-forge-forge-refmap.json' for bakery.mixins.json could not be read. If this is a development environment you can ignore this message 19.04 00:02:42 [Server] main/WARN [mixin/]: Reference map 'letsdo-vinery-forge-forge-refmap.json' for vinery.mixins.json could not be read. If this is a development environment you can ignore this message 19.04 00:02:42 [Server] main/WARN [mixin/]: Reference map 'QualitysDelight.refmap.json' for qualitysdelight.mixins.json could not be read. If this is a development environment you can ignore this message 19.04 00:02:42 [Server] main/WARN [mixin/]: Reference map 'letsdo-brewery-forge-forge-refmap.json' for brewery.mixins.json could not be read. If this is a development environment you can ignore this message 19.04 00:02:42 [Server] main/WARN [mixin/]: Reference map 'suppsquared-common-refmap.json' for suppsquared-common.mixins.json could not be read. If this is a development environment you can ignore this message 19.04 00:02:42 [Server] main/WARN [mixin/]: Reference map 'suppsquared-forge-refmap.json' for suppsquared.mixins.json could not be read. If this is a development environment you can ignore this message 19.04 00:02:42 [Server] main/WARN [mixin/]: Error loading class: com/simibubi/create/content/fluids/spout/FillingBySpout (java.lang.ClassNotFoundException: com.simibubi.create.content.fluids.spout.FillingBySpout) 19.04 00:02:42 [Server] main/INFO [MixinExtras|Service/]: Initializing MixinExtras via com.llamalad7.mixinextras.service.MixinExtrasServiceImpl(version=0.3.5). 19.04 00:02:42 [Server] main/WARN [mixin/]: @Final field f_57244_:Lnet/minecraft/world/level/block/state/properties/IntegerProperty; in QualityCrops.mixins.json:SweetBerryBushMixin should be final 19.04 00:02:55 [Server] modloading-worker-0/INFO [ne.mi.co.ForgeMod/FORGEMOD]: Forge mod loading, version 47.2.0, for MC 1.20.1 with MCP 20230612.114412 19.04 00:02:55 [Server] modloading-worker-0/INFO [ne.mi.co.MinecraftForge/FORGE]: MinecraftForge v47.2.0 Initialized 19.04 00:02:55 [Server] modloading-worker-0/WARN [mixin/]: @Final field VINE_AGE:Lnet/minecraft/world/level/block/state/properties/IntegerProperty; in qualitysdelight.mixins.json:TomatoVineMixin should be final 19.04 00:02:55 [Server] modloading-worker-0/INFO [co.cu.Cupboard/]: Loaded config for: cupboard.json 19.04 00:02:55 [Server] modloading-worker-0/INFO [Bookshelf/]: Fixing MC-151457. Crafting remainder for minecraft:pufferfish_bucket is now minecraft:bucket. 19.04 00:02:55 [Server] modloading-worker-0/INFO [Bookshelf/]: Fixing MC-151457. Crafting remainder for minecraft:salmon_bucket is now minecraft:bucket. 19.04 00:02:55 [Server] modloading-worker-0/INFO [Bookshelf/]: Fixing MC-151457. Crafting remainder for minecraft:cod_bucket is now minecraft:bucket. 19.04 00:02:55 [Server] modloading-worker-0/INFO [Bookshelf/]: Fixing MC-151457. Crafting remainder for minecraft:tropical_fish_bucket is now minecraft:bucket. 19.04 00:02:55 [Server] modloading-worker-0/INFO [Bookshelf/]: Fixing MC-151457. Crafting remainder for minecraft:axolotl_bucket is now minecraft:bucket. 19.04 00:02:55 [Server] modloading-worker-0/INFO [Bookshelf/]: Fixing MC-151457. Crafting remainder for minecraft:powder_snow_bucket is now minecraft:bucket. 19.04 00:02:55 [Server] modloading-worker-0/INFO [Bookshelf/]: Fixing MC-151457. Crafting remainder for minecraft:tadpole_bucket is now minecraft:bucket. 19.04 00:02:55 [Server] modloading-worker-0/INFO [de.ar.ne.fo.NetworkManagerImpl/]: Registering C2S receiver with id architectury:sync_ids 19.04 00:02:55 [Server] modloading-worker-0/INFO [de.ar.ne.fo.NetworkManagerImpl/]: Registering C2S receiver with id beachparty:mouse_scroll 19.04 00:02:55 [Server] modloading-worker-0/INFO [de.ar.ne.fo.NetworkManagerImpl/]: Registering C2S receiver with id brewery:alcohol_sync_request 19.04 00:02:55 [Server] modloading-worker-0/INFO [de.ar.ne.fo.NetworkManagerImpl/]: Registering C2S receiver with id brewery:drink_alcohol 19.04 00:02:55 [Server] modloading-worker-0/INFO [de.ar.ne.fo.NetworkManagerImpl/]: Registering C2S receiver with id candlelight:typewriter_sync 19.04 00:02:55 [Server] modloading-worker-0/INFO [de.ar.ne.fo.NetworkManagerImpl/]: Registering C2S receiver with id candlelight:sign_note 19.04 00:02:55 [Server] modloading-worker-0/INFO [de.ar.ne.fo.NetworkManagerImpl/]: Registering C2S receiver with id meadow:var_request 19.04 00:02:55 [Server] modloading-worker-0/INFO [th.ko.te.KotlinForForge/]: Kotlin For Forge Enabled! 19.04 00:03:02 [Server] main/INFO [Moonlight/]: Initialized block sets in 41ms 19.04 00:03:03 [Server] main/WARN [de.ar.re.re.fo.RegistrarManagerImpl/]: Registry entry listened Registry Entry [minecraft:entity_type / meadow:water_buffalo] was not realized! 19.04 00:03:03 [Server] main/WARN [de.ar.re.re.fo.RegistrarManagerImpl/]: Registry entry listened Registry Entry [minecraft:entity_type / bakery:wandering_baker] was not realized! 19.04 00:03:03 [Server] main/WARN [de.ar.re.re.fo.RegistrarManagerImpl/]: Registry entry listened Registry Entry [minecraft:entity_type / meadow:brown_bear] was not realized! 19.04 00:03:03 [Server] main/WARN [de.ar.re.re.fo.RegistrarManagerImpl/]: Registry entry listened Registry Entry [minecraft:entity_type / brewery:beer_elemental] was not realized! 19.04 00:03:03 [Server] main/WARN [de.ar.re.re.fo.RegistrarManagerImpl/]: Registry entry listened Registry Entry [minecraft:entity_type / meadow:wooly_cow] was not realized! 19.04 00:03:03 [Server] main/WARN [de.ar.re.re.fo.RegistrarManagerImpl/]: Registry entry listened Registry Entry [minecraft:entity_type / vinery:mule] was not realized! 19.04 00:03:03 [Server] main/WARN [de.ar.re.re.fo.RegistrarManagerImpl/]: Registry entry listened Registry Entry [minecraft:entity_type / vinery:wandering_winemaker] was not realized! 19.04 00:03:03 [Server] main/WARN [de.ar.re.re.fo.RegistrarManagerImpl/]: Registry entry listened Registry Entry [minecraft:entity_type / meadow:water_buffalo] was not realized! 19.04 00:03:03 [Server] main/WARN [de.ar.re.re.fo.RegistrarManagerImpl/]: Registry entry listened Registry Entry [minecraft:entity_type / bakery:wandering_baker] was not realized! 19.04 00:03:03 [Server] main/WARN [de.ar.re.re.fo.RegistrarManagerImpl/]: Registry entry listened Registry Entry [minecraft:entity_type / meadow:brown_bear] was not realized! 19.04 00:03:03 [Server] main/WARN [de.ar.re.re.fo.RegistrarManagerImpl/]: Registry entry listened Registry Entry [minecraft:entity_type / brewery:beer_elemental] was not realized! 19.04 00:03:03 [Server] main/WARN [de.ar.re.re.fo.RegistrarManagerImpl/]: Registry entry listened Registry Entry [minecraft:entity_type / meadow:wooly_cow] was not realized! 19.04 00:03:03 [Server] main/WARN [de.ar.re.re.fo.RegistrarManagerImpl/]: Registry entry listened Registry Entry [minecraft:entity_type / vinery:mule] was not realized! 19.04 00:03:03 [Server] main/WARN [de.ar.re.re.fo.RegistrarManagerImpl/]: Registry entry listened Registry Entry [minecraft:entity_type / vinery:wandering_winemaker] was not realized! 19.04 00:03:03 [Server] main/WARN [de.ar.re.re.fo.RegistrarManagerImpl/]: Registry entry listened Registry Entry [minecraft:entity_type / meadow:water_buffalo] was not realized! 19.04 00:03:03 [Server] main/WARN [de.ar.re.re.fo.RegistrarManagerImpl/]: Registry entry listened Registry Entry [minecraft:entity_type / bakery:wandering_baker] was not realized! 19.04 00:03:03 [Server] main/WARN [de.ar.re.re.fo.RegistrarManagerImpl/]: Registry entry listened Registry Entry [minecraft:entity_type / meadow:brown_bear] was not realized! 19.04 00:03:03 [Server] main/WARN [de.ar.re.re.fo.RegistrarManagerImpl/]: Registry entry listened Registry Entry [minecraft:entity_type / brewery:beer_elemental] was not realized! 19.04 00:03:03 [Server] main/WARN [de.ar.re.re.fo.RegistrarManagerImpl/]: Registry entry listened Registry Entry [minecraft:entity_type / meadow:wooly_cow] was not realized! 19.04 00:03:03 [Server] main/WARN [de.ar.re.re.fo.RegistrarManagerImpl/]: Registry entry listened Registry Entry [minecraft:entity_type / vinery:mule] was not realized! 19.04 00:03:03 [Server] main/WARN [de.ar.re.re.fo.RegistrarManagerImpl/]: Registry entry listened Registry Entry [minecraft:entity_type / vinery:wandering_winemaker] was not realized! 19.04 00:03:03 [Server] main/WARN [de.ar.re.re.fo.RegistrarManagerImpl/]: Registry entry listened Registry Entry [minecraft:entity_type / meadow:water_buffalo] was not realized! 19.04 00:03:03 [Server] main/WARN [de.ar.re.re.fo.RegistrarManagerImpl/]: Registry entry listened Registry Entry [minecraft:entity_type / meadow:brown_bear] was not realized! 19.04 00:03:03 [Server] main/WARN [de.ar.re.re.fo.RegistrarManagerImpl/]: Registry entry listened Registry Entry [minecraft:entity_type / brewery:beer_elemental] was not realized! 19.04 00:03:03 [Server] main/WARN [de.ar.re.re.fo.RegistrarManagerImpl/]: Registry entry listened Registry Entry [minecraft:entity_type / meadow:wooly_cow] was not realized! 19.04 00:03:03 [Server] main/WARN [de.ar.re.re.fo.RegistrarManagerImpl/]: Registry entry listened Registry Entry [minecraft:entity_type / vinery:mule] was not realized! 19.04 00:03:03 [Server] main/WARN [de.ar.re.re.fo.RegistrarManagerImpl/]: Registry entry listened Registry Entry [minecraft:entity_type / vinery:wandering_winemaker] was not realized! 19.04 00:03:03 [Server] main/WARN [de.ar.re.re.fo.RegistrarManagerImpl/]: Registry entry listened Registry Entry [minecraft:entity_type / meadow:water_buffalo] was not realized! 19.04 00:03:03 [Server] main/WARN [de.ar.re.re.fo.RegistrarManagerImpl/]: Registry entry listened Registry Entry [minecraft:entity_type / meadow:brown_bear] was not realized! 19.04 00:03:03 [Server] main/WARN [de.ar.re.re.fo.RegistrarManagerImpl/]: Registry entry listened Registry Entry [minecraft:entity_type / brewery:beer_elemental] was not realized! 19.04 00:03:03 [Server] main/WARN [de.ar.re.re.fo.RegistrarManagerImpl/]: Registry entry listened Registry Entry [minecraft:entity_type / meadow:wooly_cow] was not realized! 19.04 00:03:03 [Server] main/WARN [de.ar.re.re.fo.RegistrarManagerImpl/]: Registry entry listened Registry Entry [minecraft:entity_type / meadow:water_buffalo] was not realized! 19.04 00:03:03 [Server] main/WARN [de.ar.re.re.fo.RegistrarManagerImpl/]: Registry entry listened Registry Entry [minecraft:entity_type / meadow:brown_bear] was not realized! 19.04 00:03:03 [Server] main/WARN [de.ar.re.re.fo.RegistrarManagerImpl/]: Registry entry listened Registry Entry [minecraft:entity_type / brewery:beer_elemental] was not realized! 19.04 00:03:03 [Server] main/WARN [de.ar.re.re.fo.RegistrarManagerImpl/]: Registry entry listened Registry Entry [minecraft:entity_type / meadow:wooly_cow] was not realized! 19.04 00:03:03 [Server] main/WARN [de.ar.re.re.fo.RegistrarManagerImpl/]: Registry entry listened Registry Entry [minecraft:entity_type / meadow:water_buffalo] was not realized! 19.04 00:03:03 [Server] main/WARN [de.ar.re.re.fo.RegistrarManagerImpl/]: Registry entry listened Registry Entry [minecraft:entity_type / meadow:brown_bear] was not realized! 19.04 00:03:03 [Server] main/WARN [de.ar.re.re.fo.RegistrarManagerImpl/]: Registry entry listened Registry Entry [minecraft:entity_type / brewery:beer_elemental] was not realized! 19.04 00:03:03 [Server] main/WARN [de.ar.re.re.fo.RegistrarManagerImpl/]: Registry entry listened Registry Entry [minecraft:entity_type / meadow:wooly_cow] was not realized! 19.04 00:03:03 [Server] main/WARN [de.ar.re.re.fo.RegistrarManagerImpl/]: Registry entry listened Registry Entry [minecraft:entity_type / meadow:water_buffalo] was not realized! 19.04 00:03:03 [Server] main/WARN [de.ar.re.re.fo.RegistrarManagerImpl/]: Registry entry listened Registry Entry [minecraft:entity_type / meadow:brown_bear] was not realized! 19.04 00:03:03 [Server] main/WARN [de.ar.re.re.fo.RegistrarManagerImpl/]: Registry entry listened Registry Entry [minecraft:entity_type / meadow:wooly_cow] was not realized! 19.04 00:03:04 [Server] modloading-worker-0/INFO [co.mt.qu.QualityCrops/]: HELLO FROM COMMON SETUP 19.04 00:03:04 [Server] modloading-worker-0/INFO [co.mt.qu.QualityCrops/]: DIRT BLOCK >> minecraft:dirt 19.04 00:03:04 [Server] modloading-worker-0/INFO [co.sa.ni.NightLightsMain/]: Hey, it's Night Lights! 19.04 00:03:04 [Server] modloading-worker-0/INFO [ne.Pa.bu.BushierFlowers/]: Bushier Flowers set up 19.04 00:03:04 [Server] Forge Version Check/INFO [ne.mi.fm.VersionChecker/]: [clumps] Starting version check at https://updates.blamejared.com/get=clumps&gv=1.20.1 19.04 00:03:04 [Server] main/INFO [Moonlight/]: Initialized color sets in 81ms 19.04 00:03:04 [Server] main/INFO [terrablender/]: Registered region minecraft:overworld to index 0 for type OVERWORLD 19.04 00:03:04 [Server] main/INFO [terrablender/]: Registered region minecraft:nether to index 0 for type NETHER 19.04 00:03:04 [Server] main/INFO [terrablender/]: Registered region biomesoplenty:overworld_primary to index 1 for type OVERWORLD 19.04 00:03:04 [Server] main/INFO [terrablender/]: Registered region biomesoplenty:overworld_secondary to index 2 for type OVERWORLD 19.04 00:03:04 [Server] main/INFO [terrablender/]: Registered region biomesoplenty:overworld_rare to index 3 for type OVERWORLD 19.04 00:03:04 [Server] main/INFO [terrablender/]: Registered region biomesoplenty:nether_common to index 1 for type NETHER 19.04 00:03:04 [Server] main/INFO [terrablender/]: Registered region biomesoplenty:nether_rare to index 2 for type NETHER 19.04 00:03:04 [Server] main/INFO [Supplementaries/]: Finished mod setup in: [0, 2, 0, 1, 0, 0, 21, 2] ms 19.04 00:03:04 [Server] Forge Version Check/INFO [ne.mi.fm.VersionChecker/]: [clumps] Found status: BETA Current: 12.0.0.3 Target: 12.0.0.3 19.04 00:03:04 [Server] Forge Version Check/INFO [ne.mi.fm.VersionChecker/]: [bookshelf] Starting version check at https://updates.blamejared.com/get=bookshelf&gv=1.20.1 19.04 00:03:05 [Server] Forge Version Check/INFO [ne.mi.fm.VersionChecker/]: [bookshelf] Found status: BETA Current: 20.1.10 Target: 20.1.10 19.04 00:03:05 [Server] Forge Version Check/INFO [ne.mi.fm.VersionChecker/]: [forge] Starting version check at https://files.minecraftforge.net/net/minecraftforge/forge/promotions_slim.json 19.04 00:03:05 [Server] Forge Version Check/INFO [ne.mi.fm.VersionChecker/]: [forge] Found status: UP_TO_DATE Current: 47.2.0 Target: null 19.04 00:03:05 [Server] Forge Version Check/INFO [ne.mi.fm.VersionChecker/]: [supplementaries] Starting version check at https://raw.githubusercontent.com/MehVahdJukaar/Supplementaries/1.20/forge/update.json 19.04 00:03:05 [Server] Forge Version Check/INFO [ne.mi.fm.VersionChecker/]: [supplementaries] Found status: BETA Current: 1.20-2.8.10 Target: null 19.04 00:03:05 [Server] Forge Version Check/INFO [ne.mi.fm.VersionChecker/]: [moonlight] Starting version check at https://raw.githubusercontent.com/MehVahdJukaar/Moonlight/multi-loader/forge/update.json 19.04 00:03:05 [Server] Forge Version Check/INFO [ne.mi.fm.VersionChecker/]: [moonlight] Found status: BETA Current: 1.20-2.11.12 Target: null 19.04 00:03:22 [Server] main/INFO [mojang/YggdrasilAuthenticationService]: Environment: authHost='https://authserver.mojang.com', accountsHost='https://api.mojang.com', sessionHost='https://sessionserver.mojang.com', servicesHost='https://api.minecraftservices.com', name='PROD' Couldn't get log: Authentication failed (auth: Empty response) 19.04 00:03:36 [Server] INFO at net.minecraft.world.item.crafting.SimpleCookingSerializer.m_6729_(SimpleCookingSerializer.java:11) ~[server-1.20.1-20230612.114412-srg.jar%23189!/:?] {re:classloading} 19.04 00:03:36 [Server] INFO at net.minecraftforge.common.extensions.IForgeRecipeSerializer.fromJson(IForgeRecipeSerializer.java:23) ~[forge-1.20.1-47.2.0-universal.jar%23194!/:?] {re:classloading} 19.04 00:03:36 [Server] INFO at net.minecraft.world.item.crafting.RecipeManager.fromJson(RecipeManager.java:171) ~[server-1.20.1-20230612.114412-srg.jar%23189!/:?] {re:mixin,re:classloading,pl:mixin:APP:bookshelf.common.mixins.json:accessors.world.AccessorRecipeManager,pl:mixin:APP:farmersdelight.mixins.json:accessor.RecipeManagerAccessor,pl:mixin:A} 19.04 00:03:36 [Server] INFO at net.minecraft.world.item.crafting.RecipeManager.m_5787_(RecipeManager.java:67) ~[server-1.20.1-20230612.114412-srg.jar%23189!/:?] {re:mixin,re:classloading,pl:mixin:APP:bookshelf.common.mixins.json:accessors.world.AccessorRecipeManager,pl:mixin:APP:farmersdelight.mixins.json:accessor.RecipeManagerAccessor,pl:mixin:A} 19.04 00:03:36 [Server] INFO at net.minecraft.world.item.crafting.RecipeManager.m_5787_(RecipeManager.java:34) ~[server-1.20.1-20230612.114412-srg.jar%23189!/:?] {re:mixin,re:classloading,pl:mixin:APP:bookshelf.common.mixins.json:accessors.world.AccessorRecipeManager,pl:mixin:APP:farmersdelight.mixins.json:accessor.RecipeManagerAccessor,pl:mixin:A} 19.04 00:03:36 [Server] INFO at net.minecraft.server.packs.resources.SimplePreparableReloadListener.m_10789_(SimplePreparableReloadListener.java:13) ~[server-1.20.1-20230612.114412-srg.jar%23189!/:?] {re:mixin,re:computing_frames,re:classloading,pl:mixin:APP:moonlight.mixins.json:ConditionHackMixin,pl:mixin:A} 19.04 00:03:36 [Server] INFO at java.util.concurrent.CompletableFuture$UniAccept.tryFire(CompletableFuture.java:718) ~[?:?] {} 19.04 00:03:36 [Server] INFO at java.util.concurrent.CompletableFuture$Completion.run(CompletableFuture.java:482) ~[?:?] {} 19.04 00:03:36 [Server] INFO at net.minecraft.server.packs.resources.SimpleReloadInstance.m_143940_(SimpleReloadInstance.java:69) ~[server-1.20.1-20230612.114412-srg.jar%23189!/:?] {re:classloading} 19.04 00:03:36 [Server] INFO at net.minecraft.Util.m_214652_(Util.java:783) ~[server-1.20.1-20230612.114412-srg.jar%23189!/:?] {re:classloading,re:mixin} 19.04 00:03:36 [Server] INFO at net.minecraft.Util.m_214679_(Util.java:772) ~[server-1.20.1-20230612.114412-srg.jar%23189!/:?] {re:classloading,re:mixin} 19.04 00:03:36 [Server] INFO at net.minecraft.server.Main.main(Main.java:166) ~[server-1.20.1-20230612.114412-srg.jar%23189!/:?] {re:classloading} 19.04 00:03:36 [Server] INFO at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:?] {} 19.04 00:03:36 [Server] INFO at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) ~[?:?] {} 19.04 00:03:36 [Server] INFO at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?] {} 19.04 00:03:36 [Server] INFO at java.lang.reflect.Method.invoke(Method.java:568) ~[?:?] {} 19.04 00:03:36 [Server] INFO at net.minecraftforge.fml.loading.targets.CommonLaunchHandler.runTarget(CommonLaunchHandler.java:111) ~[fmlloader-1.20.1-47.2.0.jar%2369!/:?] {} 19.04 00:03:36 [Server] INFO at net.minecraftforge.fml.loading.targets.CommonLaunchHandler.serverService(CommonLaunchHandler.java:103) ~[fmlloader-1.20.1-47.2.0.jar%2369!/:?] {} 19.04 00:03:36 [Server] INFO at net.minecraftforge.fml.loading.targets.CommonServerLaunchHandler.lambda$makeService$0(CommonServerLaunchHandler.java:27) ~[fmlloader-1.20.1-47.2.0.jar%2369!/:?] {} 19.04 00:03:36 [Server] INFO at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:30) ~[modlauncher-10.0.9.jar%2355!/:?] {} 19.04 00:03:36 [Server] INFO at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:53) ~[modlauncher-10.0.9.jar%2355!/:?] {} 19.04 00:03:36 [Server] INFO at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:71) ~[modlauncher-10.0.9.jar%2355!/:?] {} 19.04 00:03:36 [Server] INFO at cpw.mods.modlauncher.Launcher.run(Launcher.java:108) ~[modlauncher-10.0.9.jar%2355!/:?] {} 19.04 00:03:36 [Server] INFO at cpw.mods.modlauncher.Launcher.main(Launcher.java:78) ~[modlauncher-10.0.9.jar%2355!/:?] {} 19.04 00:03:36 [Server] INFO at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:26) ~[modlauncher-10.0.9.jar%2355!/:?] {} 19.04 00:03:36 [Server] INFO at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:23) ~[modlauncher-10.0.9.jar%2355!/:?] {} 19.04 00:03:36 [Server] INFO at cpw.mods.bootstraplauncher.BootstrapLauncher.main(BootstrapLauncher.java:141) ~[bootstraplauncher-1.1.2.jar:?] {} 19.04 00:03:36 [Server] main/ERROR [minecraft/RecipeManager]: Parsing error loading recipe farmersdelight:cooking/grilled_strider_diamond 19.04 00:03:36 [Server] INFO com.google.gson.JsonSyntaxException: Unknown item 'qualitysdelight:ground_strider_diamond' 19.04 00:03:36 [Server] INFO at net.minecraft.world.item.crafting.ShapedRecipe.m_151280_(ShapedRecipe.java:292) ~[server-1.20.1-20230612.114412-srg.jar%23189!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:bookshelf.common.mixins.json:accessors.item.crafting.AccessorShapedRecipe,pl:mixin:A} 19.04 00:03:36 [Server] INFO at java.util.Optional.orElseThrow(Optional.java:403) ~[?:?] {re:mixin} 19.04 00:03:36 [Server] INFO at net.minecraft.world.item.crafting.ShapedRecipe.m_151278_(ShapedRecipe.java:291) ~[server-1.20.1-20230612.114412-srg.jar%23189!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:bookshelf.common.mixins.json:accessors.item.crafting.AccessorShapedRecipe,pl:mixin:A} 19.04 00:03:36 [Server] INFO at net.minecraft.world.item.crafting.Ingredient.m_43919_(Ingredient.java:219) ~[server-1.20.1-20230612.114412-srg.jar%23189!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B} 19.04 00:03:36 [Server] INFO at net.minecraftforge.common.crafting.VanillaIngredientSerializer.parse(VanillaIngredientSerializer.java:27) ~[forge-1.20.1-47.2.0-universal.jar%23194!/:?] {re:classloading} 19.04 00:03:36 [Server] INFO at net.minecraftforge.common.crafting.CraftingHelper.getIngredient(CraftingHelper.java:148) ~[forge-1.20.1-47.2.0-universal.jar%23194!/:?] {re:mixin,re:classloading} 19.04 00:03:36 [Server] INFO at net.minecraftforge.common.crafting.CraftingHelper.lambda$getIngredient$0(CraftingHelper.java:109) ~[forge-1.20.1-47.2.0-universal.jar%23194!/:?] {re:mixin,re:classloading} 19.04 00:03:36 [Server] INFO at java.lang.Iterable.forEach(Iterable.java:75) ~[?:?] {re:mixin} 19.04 00:03:36 [Server] INFO at net.minecraftforge.common.crafting.CraftingHelper.getIngredient(CraftingHelper.java:107) ~[forge-1.20.1-47.2.0-universal.jar%23194!/:?] {re:mixin,re:classloading} 19.04 00:03:36 [Server] INFO at net.minecraft.world.item.crafting.Ingredient.m_288218_(Ingredient.java:194) ~[server-1.20.1-20230612.114412-srg.jar%23189!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B} 19.04 00:03:36 [Server] INFO at net.minecraft.world.item.crafting.Ingredient.m_43917_(Ingredient.java:189) ~[server-1.20.1-20230612.114412-srg.jar%23189!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B} 19.04 00:03:36 [Server] INFO at vectorwing.farmersdelight.common.crafting.CookingPotRecipe$Serializer.readIngredients(CookingPotRecipe.java:199) ~[FarmersDelight-1.20.1-1.2.4.jar%23161!/:1.20.1-1.2.4] {re:classloading} 19.04 00:03:36 [Server] INFO at vectorwing.farmersdelight.common.crafting.CookingPotRecipe$Serializer.fromJson(CookingPotRecipe.java:176) ~[FarmersDelight-1.20.1-1.2.4.jar%23161!/:1.20.1-1.2.4] {re:classloading} 19.04 00:03:36 [Server] INFO at vectorwing.farmersdelight.common.crafting.CookingPotRecipe$Serializer.m_6729_(CookingPotRecipe.java:168) ~[FarmersDelight-1.20.1-1.2.4.jar%23161!/:1.20.1-1.2.4] {re:classloading} 19.04 00:03:36 [Server] INFO at net.minecraftforge.common.extensions.IForgeRecipeSerializer.fromJson(IForgeRecipeSerializer.java:23) ~[forge-1.20.1-47.2.0-universal.jar%23194!/:?] {re:classloading} 19.04 00:03:36 [Server] INFO at net.minecraft.world.item.crafting.RecipeManager.fromJson(RecipeManager.java:171) ~[server-1.20.1-20230612.114412-srg.jar%23189!/:?] {re:mixin,re:classloading,pl:mixin:APP:bookshelf.common.mixins.json:accessors.world.AccessorRecipeManager,pl:mixin:APP:farmersdelight.mixins.json:accessor.RecipeManagerAccessor,pl:mixin:A} 19.04 00:03:36 [Server] INFO at net.minecraft.world.item.crafting.RecipeManager.m_5787_(RecipeManager.java:67) ~[server-1.20.1-20230612.114412-srg.jar%23189!/:?] {re:mixin,re:classloading,pl:mixin:APP:bookshelf.common.mixins.json:accessors.world.AccessorRecipeManager,pl:mixin:APP:farmersdelight.mixins.json:accessor.RecipeManagerAccessor,pl:mixin:A} 19.04 00:03:36 [Server] INFO at net.minecraft.world.item.crafting.RecipeManager.m_5787_(RecipeManager.java:34) ~[server-1.20.1-20230612.114412-srg.jar%23189!/:?] {re:mixin,re:classloading,pl:mixin:APP:bookshelf.common.mixins.json:accessors.world.AccessorRecipeManager,pl:mixin:APP:farmersdelight.mixins.json:accessor.RecipeManagerAccessor,pl:mixin:A} 19.04 00:03:36 [Server] INFO at net.minecraft.server.packs.resources.SimplePreparableReloadListener.m_10789_(SimplePreparableReloadListener.java:13) ~[server-1.20.1-20230612.114412-srg.jar%23189!/:?] {re:mixin,re:computing_frames,re:classloading,pl:mixin:APP:moonlight.mixins.json:ConditionHackMixin,pl:mixin:A} 19.04 00:03:36 [Server] INFO at java.util.concurrent.CompletableFuture$UniAccept.tryFire(CompletableFuture.java:718) ~[?:?] {} 19.04 00:03:36 [Server] INFO at java.util.concurrent.CompletableFuture$Completion.run(CompletableFuture.java:482) ~[?:?] {} 19.04 00:03:36 [Server] INFO at net.minecraft.server.packs.resources.SimpleReloadInstance.m_143940_(SimpleReloadInstance.java:69) ~[server-1.20.1-20230612.114412-srg.jar%23189!/:?] {re:classloading} 19.04 00:03:36 [Server] INFO at net.minecraft.Util.m_214652_(Util.java:783) ~[server-1.20.1-20230612.114412-srg.jar%23189!/:?] {re:classloading,re:mixin} 19.04 00:03:36 [Server] INFO at net.minecraft.Util.m_214679_(Util.java:772) ~[server-1.20.1-20230612.114412-srg.jar%23189!/:?] {re:classloading,re:mixin} 19.04 00:03:36 [Server] INFO at net.minecraft.server.Main.main(Main.java:166) ~[server-1.20.1-20230612.114412-srg.jar%23189!/:?] {re:classloading} 19.04 00:03:36 [Server] INFO at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:?] {} 19.04 00:03:36 [Server] INFO at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) ~[?:?] {} 19.04 00:03:36 [Server] INFO at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?] {} 19.04 00:03:36 [Server] INFO at java.lang.reflect.Method.invoke(Method.java:568) ~[?:?] {} 19.04 00:03:36 [Server] INFO at net.minecraftforge.fml.loading.targets.CommonLaunchHandler.runTarget(CommonLaunchHandler.java:111) ~[fmlloader-1.20.1-47.2.0.jar%2369!/:?] {} 19.04 00:03:36 [Server] INFO at net.minecraftforge.fml.loading.targets.CommonLaunchHandler.serverService(CommonLaunchHandler.java:103) ~[fmlloader-1.20.1-47.2.0.jar%2369!/:?] {} 19.04 00:03:36 [Server] INFO at net.minecraftforge.fml.loading.targets.CommonServerLaunchHandler.lambda$makeService$0(CommonServerLaunchHandler.java:27) ~[fmlloader-1.20.1-47.2.0.jar%2369!/:?] {} 19.04 00:03:36 [Server] INFO at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:30) ~[modlauncher-10.0.9.jar%2355!/:?] {} 19.04 00:03:36 [Server] INFO at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:53) ~[modlauncher-10.0.9.jar%2355!/:?] {} 19.04 00:03:36 [Server] INFO at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:71) ~[modlauncher-10.0.9.jar%2355!/:?] {} 19.04 00:03:36 [Server] INFO at cpw.mods.modlauncher.Launcher.run(Launcher.java:108) ~[modlauncher-10.0.9.jar%2355!/:?] {} 19.04 00:03:36 [Server] INFO at cpw.mods.modlauncher.Launcher.main(Launcher.java:78) ~[modlauncher-10.0.9.jar%2355!/:?] {} 19.04 00:03:36 [Server] INFO at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:26) ~[modlauncher-10.0.9.jar%2355!/:?] {} 19.04 00:03:36 [Server] INFO at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:23) ~[modlauncher-10.0.9.jar%2355!/:?] {} 19.04 00:03:36 [Server] INFO at cpw.mods.bootstraplauncher.BootstrapLauncher.main(BootstrapLauncher.java:141) ~[bootstraplauncher-1.1.2.jar:?] {} 19.04 00:03:36 [Server] main/ERROR [minecraft/RecipeManager]: Parsing error loading recipe minecraft:cooked_elder_guardian_slice_iron_from_campfire_cooking 19.04 00:03:36 [Server] INFO com.google.gson.JsonSyntaxException: Unknown item 'qualitysdelight:elder_guardian_slice_iron' 19.04 00:03:36 [Server] INFO at net.minecraft.world.item.crafting.ShapedRecipe.m_151280_(ShapedRecipe.java:292) ~[server-1.20.1-20230612.114412-srg.jar%23189!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:bookshelf.common.mixins.json:accessors.item.crafting.AccessorShapedRecipe,pl:mixin:A} 19.04 00:03:36 [Server] INFO at java.util.Optional.orElseThrow(Optional.java:403) ~[?:?] {re:mixin} 19.04 00:03:36 [Server] INFO at net.minecraft.world.item.crafting.ShapedRecipe.m_151278_(ShapedRecipe.java:291) ~[server-1.20.1-20230612.114412-srg.jar%23189!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:bookshelf.common.mixins.json:accessors.item.crafting.AccessorShapedRecipe,pl:mixin:A} 19.04 00:03:36 [Server] INFO at net.minecraft.world.item.crafting.Ingredient.m_43919_(Ingredient.java:219) ~[server-1.20.1-20230612.114412-srg.jar%23189!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B} 19.04 00:03:36 [Server] INFO at net.minecraftforge.common.crafting.VanillaIngredientSerializer.parse(VanillaIngredientSerializer.java:27) ~[forge-1.20.1-47.2.0-universal.jar%23194!/:?] {re:classloading} 19.04 00:03:36 [Server] INFO at net.minecraftforge.common.crafting.CraftingHelper.getIngredient(CraftingHelper.java:148) ~[forge-1.20.1-47.2.0-universal.jar%23194!/:?] {re:mixin,re:classloading} 19.04 00:03:36 [Server] INFO at net.minecraft.world.item.crafting.Ingredient.m_288218_(Ingredient.java:194) ~[server-1.20.1-20230612.114412-srg.jar%23189!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B} 19.04 00:03:36 [Server] INFO at net.minecraft.world.item.crafting.SimpleCookingSerializer.m_6729_(SimpleCookingSerializer.java:24) ~[server-1.20.1-20230612.114412-srg.jar%23189!/:?] {re:classloading} 19.04 00:03:36 [Server] INFO at net.minecraft.world.item.crafting.SimpleCookingSerializer.m_6729_(SimpleCookingSerializer.java:11) ~[server-1.20.1-20230612.114412-srg.jar%23189!/:?] {re:classloading} 19.04 00:03:36 [Server] INFO at net.minecraftforge.common.extensions.IForgeRecipeSerializer.fromJson(IForgeRecipeSerializer.java:23) ~[forge-1.20.1-47.2.0-universal.jar%23194!/:?] {re:classloading} 19.04 00:03:36 [Server] INFO at net.minecraft.world.item.crafting.RecipeManager.fromJson(RecipeManager.java:171) ~[server-1.20.1-20230612.114412-srg.jar%23189!/:?] {re:mixin,re:classloading,pl:mixin:APP:bookshelf.common.mixins.json:accessors.world.AccessorRecipeManager,pl:mixin:APP:farmersdelight.mixins.json:accessor.RecipeManagerAccessor,pl:mixin:A} 19.04 00:03:36 [Server] INFO at net.minecraft.world.item.crafting.RecipeManager.m_5787_(RecipeManager.java:67) ~[server-1.20.1-20230612.114412-srg.jar%23189!/:?] {re:mixin,re:classloading,pl:mixin:APP:bookshelf.common.mixins.json:accessors.world.AccessorRecipeManager,pl:mixin:APP:farmersdelight.mixins.json:accessor.RecipeManagerAccessor,pl:mixin:A} 19.04 00:03:36 [Server] INFO at net.minecraft.world.item.crafting.RecipeManager.m_5787_(RecipeManager.java:34) ~[server-1.20.1-20230612.114412-srg.jar%23189!/:?] {re:mixin,re:classloading,pl:mixin:APP:bookshelf.common.mixins.json:accessors.world.AccessorRecipeManager,pl:mixin:APP:farmersdelight.mixins.json:accessor.RecipeManagerAccessor,pl:mixin:A} 19.04 00:03:36 [Server] INFO at net.minecraft.server.packs.resources.SimplePreparableReloadListener.m_10789_(SimplePreparableReloadListener.java:13) ~[server-1.20.1-20230612.114412-srg.jar%23189!/:?] {re:mixin,re:computing_frames,re:classloading,pl:mixin:APP:moonlight.mixins.json:ConditionHackMixin,pl:mixin:A} 19.04 00:03:36 [Server] INFO at java.util.concurrent.CompletableFuture$UniAccept.tryFire(CompletableFuture.java:718) ~[?:?] {} 19.04 00:03:36 [Server] INFO at java.util.concurrent.CompletableFuture$Completion.run(CompletableFuture.java:482) ~[?:?] {} 19.04 00:03:36 [Server] INFO at net.minecraft.server.packs.resources.SimpleReloadInstance.m_143940_(SimpleReloadInstance.java:69) ~[server-1.20.1-20230612.114412-srg.jar%23189!/:?] {re:classloading} 19.04 00:03:36 [Server] INFO at net.minecraft.Util.m_214652_(Util.java:783) ~[server-1.20.1-20230612.114412-srg.jar%23189!/:?] {re:classloading,re:mixin} 19.04 00:03:36 [Server] INFO at net.minecraft.Util.m_214679_(Util.java:772) ~[server-1.20.1-20230612.114412-srg.jar%23189!/:?] {re:classloading,re:mixin} 19.04 00:03:36 [Server] INFO at net.minecraft.server.Main.main(Main.java:166) ~[server-1.20.1-20230612.114412-srg.jar%23189!/:?] {re:classloading} 19.04 00:03:36 [Server] INFO at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:?] {} 19.04 00:03:36 [Server] INFO at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) ~[?:?] {} 19.04 00:03:36 [Server] INFO at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?] {} 19.04 00:03:36 [Server] INFO at java.lang.reflect.Method.invoke(Method.java:568) ~[?:?] {} 19.04 00:03:36 [Server] INFO at net.minecraftforge.fml.loading.targets.CommonLaunchHandler.runTarget(CommonLaunchHandler.java:111) ~[fmlloader-1.20.1-47.2.0.jar%2369!/:?] {} 19.04 00:03:36 [Server] INFO at net.minecraftforge.fml.loading.targets.CommonLaunchHandler.serverService(CommonLaunchHandler.java:103) ~[fmlloader-1.20.1-47.2.0.jar%2369!/:?] {} 19.04 00:03:36 [Server] INFO at net.minecraftforge.fml.loading.targets.CommonServerLaunchHandler.lambda$makeService$0(CommonServerLaunchHandler.java:27) ~[fmlloader-1.20.1-47.2.0.jar%2369!/:?] {} 19.04 00:03:36 [Server] INFO at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:30) ~[modlauncher-10.0.9.jar%2355!/:?] {} 19.04 00:03:36 [Server] INFO at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:53) ~[modlauncher-10.0.9.jar%2355!/:?] {} 19.04 00:03:36 [Server] INFO at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:71) ~[modlauncher-10.0.9.jar%2355!/:?] {} 19.04 00:03:36 [Server] INFO at cpw.mods.modlauncher.Launcher.run(Launcher.java:108) ~[modlauncher-10.0.9.jar%2355!/:?] {} 19.04 00:03:36 [Server] INFO at cpw.mods.modlauncher.Launcher.main(Launcher.java:78) ~[modlauncher-10.0.9.jar%2355!/:?] {} 19.04 00:03:36 [Server] INFO at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:26) ~[modlauncher-10.0.9.jar%2355!/:?] {} 19.04 00:03:36 [Server] INFO at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:23) ~[modlauncher-10.0.9.jar%2355!/:?] {} 19.04 00:03:36 [Server] INFO at cpw.mods.bootstraplauncher.BootstrapLa... (133 KB left)  
  • Topics

×
×
  • Create New...

Important Information

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