Jump to content

[1.10] Outside eclipse, server crashes or disconnects when using one of 3 blocks


KeeganDeathman

Recommended Posts

Ok fam, let me see if I can explain this.

Both me and a guy running my mod through a crash course before making a video have encountered the same bug in two forms. Not being able to save after connecting data cables to either the accelerator interface(him) or the control panel(me). Logs show NOTHING, but enderio outputs and the one probe suggest the server is not talking with the client. I have no idea why this is happening, and it does NOT happen in eclipse. Any ideas?

 

package keegan.labstuff.tileentity;

import keegan.labstuff.LabStuffMain;
import keegan.labstuff.items.ItemDiscoveryDrive;
import keegan.labstuff.recipes.Recipes;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.inventory.IInventory;
import net.minecraft.item.ItemStack;
import net.minecraft.nbt.*;
import net.minecraft.tileentity.TileEntity;
import net.minecraft.util.math.*;

public class TileEntityAcceleratorInterface extends DataConnectedDevice implements IInventory
{

private ItemStack[] chestContents = new ItemStack[3];
private TileEntityAcceleratorControlPanel control;
private int tickCount;
public boolean upgraded;

public TileEntityAcceleratorInterface()
{
	tickCount = 0;
	control = null;
	upgraded = false;
}

@Override
public int getSizeInventory()
{
	// TODO Auto-generated method stub
	return chestContents.length;
}

@Override
public ItemStack getStackInSlot(int slot)
{
	return chestContents[slot];
}

public void activateAntiMatter()
{
	upgraded = true;

}

@Override
public void update()
{
	super.update();
	tickCount++;
	if(tickCount>=400)
	{
		tickCount = 0;
		if(!worldObj.isRemote)
		{
			if(this.getId() == null)
				registerWithNetwork();
			if(getNetwork() != null)
			{
				while(control == null)
				{
					if(getNetwork().getDeviceCount() == 0)
						break;
					for(int i = 0; i < getNetwork().getDeviceCount(); i++)
					{
						detectControl(getNetwork().getDeviceByIndex(i).getId());
					}
				}
			}
			else
				System.out.println("no network");
			if(control != null)
			{
				if(getStackInSlot(0) != null)
				{
					DataPackage hasMatter = new DataPackage(control, "particlesLoaded");
					getNetwork().sendMessage(hasMatter);
				}
				else
				{
					DataPackage hasMatter = new DataPackage(control, "particlesNotLoaded");
					getNetwork().sendMessage(hasMatter);
				}
				TileEntity core = worldObj.getTileEntity(pos.subtract(new Vec3i(6,0,0)));
				if(core instanceof TileEntityAcceleratorDetectorCore)
				{
					if(((TileEntityAcceleratorDetectorCore) core).isGoodForLaunch())
					{
						DataPackage isPowered = new DataPackage(control, "powered");
						getNetwork().sendMessage(isPowered);
					}
					else
					{
						DataPackage isPowered = new DataPackage(control, "notPowered");
						getNetwork().sendMessage(isPowered);
					}
				}
				else
				{
					System.out.println("Wheres the core?");
				}
			}
		}
	}
}

private void detectControl(String i)
{
	if(getNetwork().getDeviceById(i) instanceof TileEntityAcceleratorControlPanel)
	{
		System.out.println("Control detected");
		control = (TileEntityAcceleratorControlPanel) getNetwork().getDeviceById(i);
	}
}

@Override
public void performAction(String command)
{
	if(command.startsWith("discovery_"))
	{
		int discovery = Integer.parseInt(command.substring(command.indexOf("_")+1));
		if(getStackInSlot(1) != null && getStackInSlot(1).isItemEqual(new ItemStack(LabStuffMain.itemDiscoveryDrive)))
		{
			setInventorySlotContents(1, Recipes.accelDiscoveries.get(discovery).getDiscoveryFlashDrive());
			if(upgraded)
			{
				if(getStackInSlot(2).getItem().equals(LabStuffMain.itemEmptyWarpDriveBattery))
					setInventorySlotContents(2, new ItemStack(LabStuffMain.itemWarpDriveBattery));
			}
		}
	}
	if(command.startsWith("launch"))
	{
		System.out.println("Accelerator active");
		decrStackSize(0, 1);
	}
}

@Override
public ItemStack decrStackSize(int slot, int amt) 
{
	// TODO Auto-generated method stub
	ItemStack stack = getStackInSlot(slot);
	if (stack != null)
	{
			if (stack.stackSize <= amt)
			{
				setInventorySlotContents(slot, null);
			}
			else
			{
				stack = stack.splitStack(amt);
				if (stack.stackSize == 0)
				{
					setInventorySlotContents(slot, null);
				}
			}
	}
	return stack;
}

@Override
public void setInventorySlotContents(int slot, ItemStack itemstack) 
{
	chestContents[slot] = itemstack;
	if(itemstack != null && itemstack.stackSize > getInventoryStackLimit())
	{
		itemstack.stackSize = getInventoryStackLimit();
	}

}

@Override
public int getInventoryStackLimit() 
{
	// TODO Auto-generated method stub
	return 1;
}

@Override
public boolean isUseableByPlayer(EntityPlayer entityplayer) 
{
	// TODO Auto-generated method stub
	return true;
}


@Override
public boolean isItemValidForSlot(int slot, ItemStack itemstack) {
	if(slot == 0)
		return true;
	if(slot == 2 && (itemstack.isItemEqual(new ItemStack(LabStuffMain.itemWarpDriveBattery)) || itemstack.isItemEqual(new ItemStack(LabStuffMain.itemEmptyWarpDriveBattery))))
		return true;
	if(slot == 1 && itemstack.getItem() instanceof ItemDiscoveryDrive)
		return true;
	return false;
}


@Override
public NBTTagCompound writeToNBT(NBTTagCompound tag)
{
	super.writeToNBT(tag);
	NBTTagList itemList = new NBTTagList();
	for (int i = 0; i < chestContents.length; i++) 
	{
		ItemStack stack = chestContents[i];
		if (stack != null) 
		{
			NBTTagCompound tagCompound = new NBTTagCompound();
			tagCompound.setByte("Slot", (byte) i);
			stack.writeToNBT(tagCompound);
			itemList.appendTag(tagCompound);
		}
	}
	tag.setTag("Inventory", itemList);
	if(getNetwork()!=null)
	{
		int netX = getNetwork().getPos().getX();
		int netY = getNetwork().getPos().getY();
		int netZ = getNetwork().getPos().getZ();
		int[] networkLoc = {netX,netY,netZ};

		tag.setIntArray("network", networkLoc);

		tag.setBoolean("upgraded", upgraded);
	}
	return tag;
}

@Override
public void readFromNBT(NBTTagCompound tag)
{
	super.readFromNBT(tag);
	NBTTagList tagList = tag.getTagList("Inventory", 10);
	for (int i = 0; i < tagList.tagCount(); i++) 
	{
		NBTTagCompound tagCompound = (NBTTagCompound) tagList.getCompoundTagAt(i);
		byte slot = tagCompound.getByte("Slot");
		if (slot >= 0 && slot < chestContents.length) 
		{
			chestContents[slot] = ItemStack.loadItemStackFromNBT(tagCompound);
		}
	}
	int[] net = tag.getIntArray("network");
	this.register(new BlockPos(net[0], net[1], net[2]));
	upgraded = tag.getBoolean("upgraded");
}

@Override
public String getName() {
	// TODO Auto-generated method stub
	return null;
}

@Override
public boolean hasCustomName() {
	// TODO Auto-generated method stub
	return false;
}

@Override
public ItemStack removeStackFromSlot(int index) {
	ItemStack stack = chestContents[index];
	chestContents[index] = null;
	return stack;
}

@Override
public void openInventory(EntityPlayer player) {
	// TODO Auto-generated method stub

}

@Override
public void closeInventory(EntityPlayer player) {
	// TODO Auto-generated method stub

}

@Override
public int getField(int id) {
	// TODO Auto-generated method stub
	return 0;
}

@Override
public void setField(int id, int value) {
	// TODO Auto-generated method stub

}

@Override
public int getFieldCount() {
	// TODO Auto-generated method stub
	return 0;
}

@Override
public void clear() {
	// TODO Auto-generated method stub

}
}

 

 

package keegan.labstuff.tileentity;

import java.util.ArrayList;

import net.minecraft.tileentity.TileEntity;
import net.minecraft.util.ITickable;
import net.minecraft.util.math.BlockPos;

public class TileEntityDataCable extends TileEntity implements ITickable
{
private ArrayList<DataConnectedDevice> devices;
private boolean networked;
private int tickCount;

public TileEntityDataCable()
{
	devices = new ArrayList<DataConnectedDevice>();
	networked = false;
	tickCount = 0;
}

public void addDevice(DataConnectedDevice device)
{
	devices.add(device);
	TileEntityDataCable next = getNetwork(this);
	if(next != null)
	{
		next.addDevice(device, this);
	}
}
public void addDevice(DataConnectedDevice device, TileEntityDataCable src)
{
	devices.add(device);
	TileEntityDataCable next = getNetwork(src);
	if(next != null)
	{
		next.addDevice(device, this);
	}
}

public TileEntityDataCable getNetwork()
{
	if(!worldObj.isRemote) {
		if (worldObj.getTileEntity(new BlockPos(getPos().getX() + 1, getPos().getY(), getPos().getZ())) != null  && worldObj.getTileEntity(new BlockPos(getPos().getX() + 1, getPos().getY(), getPos().getZ())) instanceof TileEntityDataCable) {
			return (TileEntityDataCable)worldObj.getTileEntity(new BlockPos(getPos().getX() + 1, getPos().getY(), getPos().getZ()));
		}if (worldObj.getTileEntity(new BlockPos(getPos().getX() - 1, getPos().getY(), getPos().getZ())) != null  && worldObj.getTileEntity(new BlockPos(getPos().getX() - 1, getPos().getY(), getPos().getZ())) instanceof TileEntityDataCable) {
			return (TileEntityDataCable)worldObj.getTileEntity(new BlockPos(getPos().getX() - 1, getPos().getY(), getPos().getZ()));
		}if (worldObj.getTileEntity(new BlockPos(getPos().getX(), getPos().getY() + 1, getPos().getZ())) != null  && worldObj.getTileEntity(new BlockPos(getPos().getX(), getPos().getY() + 1, getPos().getZ())) instanceof TileEntityDataCable) {
			return (TileEntityDataCable)worldObj.getTileEntity(new BlockPos(getPos().getX(), getPos().getY() + 1, getPos().getZ()));
		}if (worldObj.getTileEntity(new BlockPos(getPos().getX(), getPos().getY() - 1, getPos().getZ())) != null  && worldObj.getTileEntity(new BlockPos(getPos().getX(), getPos().getY() - 1, getPos().getZ())) instanceof TileEntityDataCable) {
			return (TileEntityDataCable)worldObj.getTileEntity(new BlockPos(getPos().getX(), getPos().getY() - 1, getPos().getZ()));
		}if (worldObj.getTileEntity(new BlockPos(getPos().getX(), getPos().getY(), getPos().getZ() +1)) != null  && worldObj.getTileEntity(new BlockPos(getPos().getX(), getPos().getY(), getPos().getZ() +1)) instanceof TileEntityDataCable) {
			return (TileEntityDataCable)worldObj.getTileEntity(new BlockPos(getPos().getX(), getPos().getY(), getPos().getZ() + 1));
		}if (worldObj.getTileEntity(new BlockPos(getPos().getX(), getPos().getY(), getPos().getZ() -1)) != null  && worldObj.getTileEntity(new BlockPos(getPos().getX(), getPos().getY(), getPos().getZ() -1)) instanceof TileEntityDataCable) {
			return (TileEntityDataCable)worldObj.getTileEntity(new BlockPos(getPos().getX(), getPos().getY(), getPos().getZ() - 1));
		}
	}
	return null;
}

public TileEntityDataCable getNetwork(TileEntityDataCable src)
{
	if(!worldObj.isRemote) {
		TileEntity posX = worldObj.getTileEntity(new BlockPos(getPos().getX() + 1, getPos().getY(), getPos().getZ()));
		TileEntity negX = worldObj.getTileEntity(new BlockPos(getPos().getX() - 1, getPos().getY(), getPos().getZ()));
		TileEntity posY = worldObj.getTileEntity(new BlockPos(getPos().getX(), getPos().getY() + 1, getPos().getZ()));
		TileEntity negY = worldObj.getTileEntity(new BlockPos(getPos().getX(), getPos().getY() - 1, getPos().getZ()));
		TileEntity posZ = worldObj.getTileEntity(new BlockPos(getPos().getX(), getPos().getY(), getPos().getZ() + 1));
		TileEntity negZ = worldObj.getTileEntity(new BlockPos(getPos().getX(), getPos().getY(), getPos().getZ() - 1));
		if (posX != null  && posX instanceof TileEntityDataCable && !posX.equals(src) && !posX.equals(src)) {
			return (TileEntityDataCable)posX;
		}if (negX != null  && negX instanceof TileEntityDataCable && !negX.equals(src)) {
			return (TileEntityDataCable)negX;
		}if (posY != null  && posY instanceof TileEntityDataCable && !posY.equals(src)) {
			return (TileEntityDataCable)posY;
		}if (negY != null  && negY instanceof TileEntityDataCable && !negY.equals(src)) {
			return (TileEntityDataCable)negY;
		}if (posZ != null  && posZ instanceof TileEntityDataCable && !posZ.equals(src)) {
			return (TileEntityDataCable)posZ;
		}if (negZ != null  && negZ instanceof TileEntityDataCable && !negZ.equals(src)) {
			return (TileEntityDataCable)negZ;
		}
	}
	return null;
}

public TileEntityDataCable getNetworkWithDevices()
{
	if(!worldObj.isRemote) {
		if (worldObj.getTileEntity(new BlockPos(getPos().getX() + 1, getPos().getY(), getPos().getZ())) != null  && worldObj.getTileEntity(new BlockPos(getPos().getX() + 1, getPos().getY(), getPos().getZ())) instanceof TileEntityDataCable) {
			TileEntityDataCable cable =   (TileEntityDataCable)worldObj.getTileEntity(new BlockPos(getPos().getX() + 1, getPos().getY(), getPos().getZ()));
			if(cable.devices != null && cable.getDeviceCount() > 0)
				return cable;
		}if (worldObj.getTileEntity(new BlockPos(getPos().getX() - 1, getPos().getY(), getPos().getZ())) != null  && worldObj.getTileEntity(new BlockPos(getPos().getX() - 1, getPos().getY(), getPos().getZ())) instanceof TileEntityDataCable) {
			TileEntityDataCable cable =   (TileEntityDataCable)worldObj.getTileEntity(new BlockPos(getPos().getX() - 1, getPos().getY(), getPos().getZ()));
			if(cable.devices != null && cable.getDeviceCount() > 0)
				return cable;
		}if (worldObj.getTileEntity(new BlockPos(getPos().getX(), getPos().getY() + 1, getPos().getZ())) != null  && worldObj.getTileEntity(new BlockPos(getPos().getX(), getPos().getY() + 1, getPos().getZ())) instanceof TileEntityDataCable) {
			TileEntityDataCable cable =   (TileEntityDataCable)worldObj.getTileEntity(new BlockPos(getPos().getX(), getPos().getY() + 1, getPos().getZ()));
			if(cable.devices != null && cable.getDeviceCount() > 0)
				return cable;
		}if (worldObj.getTileEntity(new BlockPos(getPos().getX(), getPos().getY() - 1, getPos().getZ())) != null  && worldObj.getTileEntity(new BlockPos(getPos().getX(), getPos().getY() - 1, getPos().getZ())) instanceof TileEntityDataCable) {
			TileEntityDataCable cable =   (TileEntityDataCable)worldObj.getTileEntity(new BlockPos(getPos().getX(), getPos().getY() - 1, getPos().getZ()));
			if(cable.devices != null && cable.getDeviceCount() > 0)
				return cable;
		}if (worldObj.getTileEntity(new BlockPos(getPos().getX(), getPos().getY(), getPos().getZ() +1)) != null  && worldObj.getTileEntity(new BlockPos(getPos().getX(), getPos().getY(), getPos().getZ() +1)) instanceof TileEntityDataCable) {
			TileEntityDataCable cable =   (TileEntityDataCable)worldObj.getTileEntity(new BlockPos(getPos().getX(), getPos().getY(), getPos().getZ() + 1));
			if(cable.devices != null && cable.getDeviceCount() > 0)
				return cable;
		}if (worldObj.getTileEntity(new BlockPos(getPos().getX(), getPos().getY(), getPos().getZ() - 1)) != null  && worldObj.getTileEntity(new BlockPos(getPos().getX(), getPos().getY(), getPos().getZ() - 1)) instanceof TileEntityDataCable) {
			TileEntityDataCable cable =  (TileEntityDataCable)worldObj.getTileEntity(new BlockPos(getPos().getX(), getPos().getY(), getPos().getZ() - 1));
			if(cable.devices != null && cable.getDeviceCount() > 0)
				return cable;
		}
	}
	return null;
}

public void validateDevices()
{
	for(DataConnectedDevice device : devices)
	{
		if(worldObj.getTileEntity(new BlockPos(device.getPos().getX(), device.getPos().getY(), device.getPos().getZ())).equals(device)){}
		else
		{ 
			removeDeviceById(device.getId());
		}
	}
}

public DataConnectedDevice getDeviceById(String id)
{
	for(DataConnectedDevice device:devices)
	{
		if(device.getId() == id)
		{
			return device;
		}
	}
	return null;
}

public int getDeviceCount()
{
	return devices.size();
}

public DataConnectedDevice getDeviceByIndex(int index)
{
	if(devices.get(index) != null)
		return devices.get(index);
	return null;
}

public void removeDeviceById(String id)
{
	for(DataConnectedDevice device:devices)
	{
		if(device.getId().equals(id))
		{
			devices.remove(device);
			TileEntityDataCable next = getNetwork();
			if(next != null)
			{
				next.removeDeviceById(id, this);
			}
		}
	}
}

public void removeDeviceById(String id, TileEntityDataCable src)
{
	for(DataConnectedDevice device:devices)
	{
		if(device.getId().equals(id))
		{
			devices.remove(device);
			TileEntityDataCable next = getNetwork(src);
			if(next != null)
			{
				next.removeDeviceById(id, this);
			}
		}
	}
}

public void removeDeviceByIndex(int index)
{
	if(devices.get(index) != null)
	{
		devices.remove(index);
		TileEntityDataCable next = getNetwork();
		if(next != null)
		{
			next.removeDeviceByIndex(index, this);
		}
	}
}

public void removeDeviceByIndex(int index, TileEntityDataCable src)
{
	if(devices.get(index) != null)
		devices.remove(index);
	TileEntityDataCable next = getNetwork(src);
	if(next != null)
	{
		next.removeDeviceByIndex(index, this);
	}
}

public void sendMessage(DataPackage msg)
{
	if(getDeviceById(msg.getTarget().getId()) != null)
	{
		msg.getTarget().performAction(msg.getMessage());
	}
}

@Override
public void update()
{
	tickCount++;
	if(tickCount>=120)
	{
		if(!networked)
		{
			if(getNetworkWithDevices() != null)
			{
				ArrayList<DataConnectedDevice> devices2 = getNetworkWithDevices().devices;
				if(devices2 != null)
				{
					devices = devices2;
					if(devices.size() > 0)
						networked = true;
				}
			}
		}
	}
}
}

 

 

package keegan.labstuff.tileentity;

import java.util.*;

import keegan.labstuff.recipes.*;
import net.minecraft.nbt.NBTTagCompound;

public class TileEntityAcceleratorControlPanel extends DataConnectedDevice
{
private boolean hasMatter;
private boolean isPowered;
private boolean isRunning;
private boolean launched;
private ArrayList<AcceleratorDiscovery> discovered = new ArrayList<AcceleratorDiscovery>();
private int tickCount;

public TileEntityAcceleratorControlPanel()
{
	hasMatter = false;
	isPowered = false;
	isRunning = false;
	launched = false;
	tickCount = 0;
}

@Override
public NBTTagCompound writeToNBT(NBTTagCompound tag)
{
	for (int i = 0; i < discovered.size(); i++)
	{
		tag.setInteger("discovered_" + i, discovered.get(i).getIndex());
	}

	return tag;
}

@Override
public void readFromNBT(NBTTagCompound tag)
{
	for (int i = 0; i < Recipes.accelDiscoveries.size(); i++)
	{
		if (tag.hasKey("discovered_" + i)) discovered.add(Recipes.accelDiscoveries.get(tag.getInteger("discovered_" + i)));
	}
}

@Override
public void performAction(String command)
{
	if (command.equals("particlesLoaded"))
	{
		hasMatter = true;
		System.out.println("loaded");
	}
	if (command.equals("particlesNotLoaded"))
	{
		hasMatter = false;
	}
	if (command.equals("powered"))
	{
		isPowered = true;
		System.out.println("powered");
	}
	if (command.equals("notPowered"))
	{
		isPowered = false;
	}
}

public void collision()
{
	System.out.println(launched + " launched");
	if (getNetwork() != null)
	{
		isRunning = launched && isPowered;
		for (int i = 0; i < getNetwork().getDeviceCount(); i++)
		{
			if (getNetwork().getDeviceByIndex(i) instanceof TileEntityAcceleratorInterface)
			{
				if (isRunning)
				{
					launched = false;
					Random r = new Random();
					int R = r.nextInt(3);
					if (R == 2)
					{
						System.out.println("Cheese~!");
						for(int j = 0; j < Recipes.accelDiscoveries.size(); j++)
						{
							System.out.println("Cheese~~!");
							AcceleratorDiscovery discov = Recipes.accelDiscoveries.get(j);
							if(!discovered.contains(discov))
							{
								System.out.println("Cheese~~~!");
								if(discov.getDependency() == null)
									getNetwork().sendMessage(new DataPackage(getNetwork().getDeviceByIndex(i), "discovery_" + j));
								else
								{
									if(discovered.contains(discov.getDependency()))
										getNetwork().sendMessage(new DataPackage(getNetwork().getDeviceByIndex(i), "discovery_" + j));
								}
							}
						}
					}
				}
			}
		}
	}
}

@Override
public void update()
{
	super.update();
}

public void launch()
{
	if (getNetwork() != null)
	{
		for (int i = 0; i < getNetwork().getDeviceCount(); i++)
		{
			if (getNetwork().getDeviceByIndex(i) instanceof TileEntityAcceleratorInterface && hasMatter && isPowered && !launched)
			{
				getNetwork().sendMessage(new DataPackage(getNetwork().getDeviceByIndex(i), "launch"));
				worldObj.scheduleUpdate(pos, getBlockType(), 100);
				launched = true;
			}
		}
	}
}
}

 

[shadow=gray,left][glow=red,2,300]KEEGAN[/glow][/shadow]

Link to comment
Share on other sites

> It crashes

> No crash log posted

 

Yeah, I can totally solve this without knowing what the error was and where...

 

You also didn't post the DataConnectedDevice class.

 

Also, why are you still using IInventory?  You should be using capabilities.

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

Bugs that arise outside Eclipse are often Side-Only violations, but I've seen reobfuscation problems too. However, without a clearer explanation of exactly what you did, what you expected to have happen, and what actually happened, we don't know what problem you're trying to solve.

 

// TODO Auto-generated method stub

 

You need to finish all of your TODO work. After all of those methods have been fleshed out, then come back with a new crash report and revised source code.

 

I don't see any Block class. What's a DataConnectedDevice? If that's something from somebody's library, then get them to fix it before asking here.

 

Also post a new log (not console output) even if you don't see meaning in it.

The debugger is a powerful and necessary tool in any IDE, so learn how to use it. You'll be able to tell us more and get better help here if you investigate your runtime problems in the debugger before posting.

Link to comment
Share on other sites

Okay, first of all, those aren't my TODOs, they're leftovers from eclipse generating the class from the super, they're finished.

What's supposed to happen, is you connect either the control panel or interface to data cables and they register with the network and you can save without hanging or crashing the server. There are no errors in the crash log but if you want to look have a look

Latest.log from first starting from when I first loaded the world to try to recreate the bug

 

[23:06:40] [server thread/INFO]: Starting integrated minecraft server version 1.10.2
[23:06:40] [server thread/INFO]: Generating keypair
[23:06:48] [server thread/INFO]: Preparing start region for level 0
[23:06:49] [server thread/INFO]: Preparing spawn area: 12%
[23:06:50] [server thread/INFO]: Preparing spawn area: 58%
[23:07:12] [server thread/INFO]: FTBLib: Server reloaded in 67ms
[23:07:13] [server thread/INFO]: Changing view distance to 12, from 10
[23:07:13] [Thread-23/ERROR]: Error in class 'SourceLWJGL OpenAL'
[23:07:13] [Thread-23/ERROR]: Channel null in method 'stop'
[23:07:13] [Thread-23/ERROR]: Error in class 'LibraryLWJGLOpenAL'
[23:07:13] [Thread-23/ERROR]: Source 'ab7cc5a5-42cf-4482-bd97-3ec4fb522707' not found in method 'play'
[23:07:14] [server thread/INFO]: DrDeathman[local:E:e405d9d8] logged in with entity id 56928 at (-1013.2569023215335, 56.0, 1338.155872152945)
[23:07:14] [server thread/INFO]: DrDeathman joined the game
[23:07:26] [Client thread/INFO]: [CHAT] ERROR: Cannot find group blockUranium
[23:07:28] [Client thread/INFO]: [CHAT] §aOpenComputers§f: There were §cerrors§f running the class transformer. Please report this, together with your (full!) FML §alatest.log§f/§afml-server-latest.log§f logfile, thank you!
[23:07:30] [server thread/WARN]: Can't keep up! Did the system time change, or is the server overloaded? Running 16121ms behind, skipping 322 tick(s)
[23:09:17] [Client thread/INFO]: Warning: Clientside chunk ticking took 122 ms
[23:16:15] [server thread/INFO]: Saving and pausing game...
[23:16:15] [server thread/INFO]: Saving chunks for level 'New World'/Overworld
[23:16:15] [server thread/INFO]: Saving chunks for level 'New World'/Nether
[23:16:15] [server thread/INFO]: Saving chunks for level 'New World'/The End
[23:16:15] [server thread/INFO]: Saving chunks for level 'New World'/Deep Dark
[23:16:15] [server thread/INFO]: Saving chunks for level 'New World'/Overworld
[23:16:15] [server thread/INFO]: Saving chunks for level 'New World'/ExtraUtils2_Quarry_Dim
[23:16:16] [server thread/INFO]: Stopping server
[23:16:16] [server thread/INFO]: Saving players
[23:16:16] [server thread/INFO]: Saving worlds
[23:16:16] [server thread/INFO]: Saving chunks for level 'New World'/Overworld
[23:16:16] [server thread/INFO]: Saving chunks for level 'New World'/Nether
[23:16:16] [server thread/INFO]: Saving chunks for level 'New World'/The End
[23:16:16] [server thread/INFO]: Saving chunks for level 'New World'/Deep Dark
[23:16:16] [server thread/INFO]: Saving chunks for level 'New World'/Overworld
[23:16:16] [server thread/INFO]: Saving chunks for level 'New World'/ExtraUtils2_Quarry_Dim
[23:17:40] [server thread/INFO]: Starting integrated minecraft server version 1.10.2
[23:17:40] [server thread/INFO]: Generating keypair
[23:17:45] [server thread/INFO]: Preparing start region for level 0
[23:17:46] [server thread/ERROR]: Failed to load data for block entity TileEntityAcceleratorInterface
java.lang.NullPointerException
at keegan.labstuff.tileentity.DataConnectedDevice.register(DataConnectedDevice.java:53) ~[DataConnectedDevice.class:?]
at keegan.labstuff.tileentity.TileEntityAcceleratorInterface.func_145839_a(TileEntityAcceleratorInterface.java:247) ~[TileEntityAcceleratorInterface.class:?]
at net.minecraft.tileentity.TileEntity.func_190200_a(TileEntity.java:123) [aqk.class:?]
at net.minecraft.world.chunk.storage.AnvilChunkLoader.loadEntities(AnvilChunkLoader.java:486) [atj.class:?]
at net.minecraftforge.common.chunkio.ChunkIOProvider.syncCallback(ChunkIOProvider.java:96) [ChunkIOProvider.class:?]
at net.minecraftforge.common.chunkio.ChunkIOExecutor.syncChunkLoad(ChunkIOExecutor.java:94) [ChunkIOExecutor.class:?]
at net.minecraft.world.gen.ChunkProviderServer.loadChunk(ChunkProviderServer.java:115) [lr.class:?]
at net.minecraft.world.gen.ChunkProviderServer.func_186028_c(ChunkProviderServer.java:86) [lr.class:?]
at net.minecraft.world.gen.ChunkProviderServer.func_186025_d(ChunkProviderServer.java:132) [lr.class:?]
at net.minecraft.server.MinecraftServer.func_71222_d(MinecraftServer.java:298) [MinecraftServer.class:?]
at net.minecraft.server.integrated.IntegratedServer.func_71247_a(IntegratedServer.java:106) [bzl.class:?]
at net.minecraft.server.integrated.IntegratedServer.func_71197_b(IntegratedServer.java:120) [bzl.class:?]
at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:431) [MinecraftServer.class:?]
at java.lang.Thread.run(Thread.java:745) [?:1.8.0_25]
[23:18:05] [server thread/INFO]: FTBLib: Server reloaded in 14ms
[23:18:06] [server thread/INFO]: Changing view distance to 12, from 10
[23:18:06] [server thread/INFO]: DrDeathman[local:E:4e30d267] logged in with entity id 593436 at (-1018.6172071892016, 56.0, 1343.7640937292115)
[23:18:06] [server thread/INFO]: DrDeathman joined the game
[23:18:14] [server thread/INFO]: Saving and pausing game...
[23:18:14] [Client thread/INFO]: [CHAT] ERROR: Cannot find group blockUranium
[23:18:14] [Thread-23/ERROR]: Error in class 'SourceLWJGL OpenAL'
[23:18:14] [Thread-23/ERROR]: Channel null in method 'stop'
[23:18:14] [Thread-23/ERROR]: Error in class 'LibraryLWJGLOpenAL'
[23:18:14] [Thread-23/ERROR]: Source 'ccbdf910-35c1-4738-bde0-782a8b8d0dc3' not found in method 'play'
[23:18:14] [Client thread/INFO]: [CHAT] §aOpenComputers§f: There were §cerrors§f running the class transformer. Please report this, together with your (full!) FML §alatest.log§f/§afml-server-latest.log§f logfile, thank you!
[23:18:14] [server thread/INFO]: Saving chunks for level 'New World'/Overworld
[23:18:15] [server thread/INFO]: Saving chunks for level 'New World'/Nether
[23:18:15] [server thread/INFO]: Saving chunks for level 'New World'/The End
[23:18:15] [server thread/INFO]: Saving chunks for level 'New World'/Deep Dark
[23:18:15] [server thread/INFO]: Saving chunks for level 'New World'/Overworld
[23:18:15] [server thread/INFO]: Saving chunks for level 'New World'/ExtraUtils2_Quarry_Dim
[23:18:15] [server thread/WARN]: Can't keep up! Did the system time change, or is the server overloaded? Running 9270ms behind, skipping 185 tick(s)

 

fml-client-latest from the same relative place i think

 

[23:18:05] [server thread/TRACE] [MineTweaker3/MineTweaker3]: Sent event FMLServerStartingEvent to mod MineTweaker3
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarting - MineTweaker 3 took 18.819s
[23:18:05] [server thread/TRACE] [ctgui/ctgui]: Sending event FMLServerStartingEvent to mod ctgui
[23:18:05] [server thread/TRACE] [ctgui/ctgui]: Sent event FMLServerStartingEvent to mod ctgui
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarting - CT-GUI took 0.000s
[23:18:05] [server thread/TRACE] [CustomMainMenu/CustomMainMenu]: Sending event FMLServerStartingEvent to mod CustomMainMenu
[23:18:05] [server thread/TRACE] [CustomMainMenu/CustomMainMenu]: Sent event FMLServerStartingEvent to mod CustomMainMenu
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarting - Custom Main Menu took 0.000s
[23:18:05] [server thread/TRACE] [cyclicmagic/cyclicmagic]: Sending event FMLServerStartingEvent to mod cyclicmagic
[23:18:05] [server thread/TRACE] [cyclicmagic/cyclicmagic]: Sent event FMLServerStartingEvent to mod cyclicmagic
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarting - Cyclic took 0.000s
[23:18:05] [server thread/TRACE] [forestry/forestry]: Sending event FMLServerStartingEvent to mod forestry
[23:18:05] [server thread/TRACE] [forestry/forestry]: Sent event FMLServerStartingEvent to mod forestry
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarting - Forestry took 0.000s
[23:18:05] [server thread/TRACE] [ElecCore/ElecCore]: Sending event FMLServerStartingEvent to mod ElecCore
[23:18:05] [server thread/TRACE] [ElecCore/ElecCore]: Sent event FMLServerStartingEvent to mod ElecCore
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarting - ElecCore took 0.000s
[23:18:05] [server thread/TRACE] [OpenComputers/OpenComputers]: Sending event FMLServerStartingEvent to mod OpenComputers
[23:18:05] [server thread/TRACE] [OpenComputers/OpenComputers]: Sent event FMLServerStartingEvent to mod OpenComputers
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarting - OpenComputers took 0.000s
[23:18:05] [server thread/TRACE] [deepresonance/deepresonance]: Sending event FMLServerStartingEvent to mod deepresonance
[23:18:05] [server thread/TRACE] [deepresonance/deepresonance]: Sent event FMLServerStartingEvent to mod deepresonance
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarting - DeepResonance took 0.000s
[23:18:05] [server thread/TRACE] [defaultoptions/defaultoptions]: Sending event FMLServerStartingEvent to mod defaultoptions
[23:18:05] [server thread/TRACE] [defaultoptions/defaultoptions]: Sent event FMLServerStartingEvent to mod defaultoptions
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarting - Default Options took 0.000s
[23:18:05] [server thread/TRACE] [dragontweaks/dragontweaks]: Sending event FMLServerStartingEvent to mod dragontweaks
[23:18:05] [server thread/TRACE] [dragontweaks/dragontweaks]: Sent event FMLServerStartingEvent to mod dragontweaks
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarting - Dragon Tweaks took 0.000s
[23:18:05] [server thread/TRACE] [storageDrawers/StorageDrawers]: Sending event FMLServerStartingEvent to mod StorageDrawers
[23:18:05] [server thread/TRACE] [storageDrawers/StorageDrawers]: Sent event FMLServerStartingEvent to mod StorageDrawers
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarting - Storage Drawers took 0.000s
[23:18:05] [server thread/TRACE] [bitdrawers/bitdrawers]: Sending event FMLServerStartingEvent to mod bitdrawers
[23:18:05] [server thread/TRACE] [bitdrawers/bitdrawers]: Sent event FMLServerStartingEvent to mod bitdrawers
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarting - Drawers & Bits took 0.000s
[23:18:05] [server thread/TRACE] [endercore/endercore]: Sending event FMLServerStartingEvent to mod endercore
[23:18:05] [server thread/TRACE] [endercore/endercore]: Sent event FMLServerStartingEvent to mod endercore
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarting - EnderCore took 0.001s
[23:18:05] [server thread/TRACE] [EnderIO/EnderIO]: Sending event FMLServerStartingEvent to mod EnderIO
[23:18:05] [server thread/TRACE] [EnderIO/EnderIO]: Sent event FMLServerStartingEvent to mod EnderIO
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarting - Ender IO took 0.000s
[23:18:05] [server thread/TRACE] [shetiphiancore/shetiphiancore]: Sending event FMLServerStartingEvent to mod shetiphiancore
[23:18:05] [server thread/TRACE] [shetiphiancore/shetiphiancore]: Sent event FMLServerStartingEvent to mod shetiphiancore
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarting - ShetiPhian-Core took 0.000s
[23:18:05] [server thread/TRACE] [endertanks/endertanks]: Sending event FMLServerStartingEvent to mod endertanks
[23:18:05] [server thread/TRACE] [endertanks/endertanks]: Sent event FMLServerStartingEvent to mod endertanks
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarting - EnderTanks took 0.000s
[23:18:05] [server thread/TRACE] [EnderZoo/EnderZoo]: Sending event FMLServerStartingEvent to mod EnderZoo
[23:18:05] [server thread/TRACE] [EnderZoo/EnderZoo]: Sent event FMLServerStartingEvent to mod EnderZoo
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarting - Ender Zoo took 0.000s
[23:18:05] [server thread/TRACE] [valkyrielib/valkyrielib]: Sending event FMLServerStartingEvent to mod valkyrielib
[23:18:05] [server thread/TRACE] [valkyrielib/valkyrielib]: Sent event FMLServerStartingEvent to mod valkyrielib
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarting - Valkyrie Lib took 0.000s
[23:18:05] [server thread/TRACE] [environmentaltech/environmentaltech]: Sending event FMLServerStartingEvent to mod environmentaltech
[23:18:05] [server thread/TRACE] [environmentaltech/environmentaltech]: Sent event FMLServerStartingEvent to mod environmentaltech
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarting - Environmental Tech took 0.000s
[23:18:05] [server thread/TRACE] [ExtraUtils2/ExtraUtils2]: Sending event FMLServerStartingEvent to mod ExtraUtils2
[23:18:05] [server thread/DEBUG] [ExtraUtils2/ExtraUtils2]: OTL: Begin Loading Saves
[23:18:05] [server thread/DEBUG] [ExtraUtils2/ExtraUtils2]: OTL: Loaded Power Settings
[23:18:05] [server thread/TRACE] [ExtraUtils2/ExtraUtils2]: Sent event FMLServerStartingEvent to mod ExtraUtils2
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarting - ExtraUtils2 took 0.002s
[23:18:05] [server thread/TRACE] [zerocore/zerocore]: Sending event FMLServerStartingEvent to mod zerocore
[23:18:05] [server thread/TRACE] [zerocore/zerocore]: Sent event FMLServerStartingEvent to mod zerocore
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarting - Zero CORE took 0.000s
[23:18:05] [server thread/TRACE] [bigreactors/bigreactors]: Sending event FMLServerStartingEvent to mod bigreactors
[23:18:05] [server thread/TRACE] [bigreactors/bigreactors]: Sent event FMLServerStartingEvent to mod bigreactors
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarting - Extreme Reactors took 0.000s
[23:18:05] [server thread/TRACE] [fastleafdecay/fastleafdecay]: Sending event FMLServerStartingEvent to mod fastleafdecay
[23:18:05] [server thread/TRACE] [fastleafdecay/fastleafdecay]: Sent event FMLServerStartingEvent to mod fastleafdecay
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarting - Fast Leaf Decay took 0.000s
[23:18:05] [server thread/TRACE] [flatcoloredblocks/flatcoloredblocks]: Sending event FMLServerStartingEvent to mod flatcoloredblocks
[23:18:05] [server thread/TRACE] [flatcoloredblocks/flatcoloredblocks]: Sent event FMLServerStartingEvent to mod flatcoloredblocks
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarting - Flat Colored Blocks took 0.000s
[23:18:05] [server thread/TRACE] [flighttweaks/flighttweaks]: Sending event FMLServerStartingEvent to mod flighttweaks
[23:18:05] [server thread/TRACE] [flighttweaks/flighttweaks]: Sent event FMLServerStartingEvent to mod flighttweaks
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarting - Flight Tweaks took 0.000s
[23:18:05] [server thread/TRACE] [ftbl/ftbl]: Sending event FMLServerStartingEvent to mod ftbl
[23:18:05] [server thread/TRACE] [ftbl/ftbl]: Sent event FMLServerStartingEvent to mod ftbl
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarting - FTBLib took 0.106s
[23:18:05] [server thread/TRACE] [ftbu/ftbu]: Sending event FMLServerStartingEvent to mod ftbu
[23:18:05] [server thread/TRACE] [ftbu/ftbu]: Sent event FMLServerStartingEvent to mod ftbu
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarting - FTBUtilities took 0.000s
[23:18:05] [server thread/TRACE] [gendustry/gendustry]: Sending event FMLServerStartingEvent to mod gendustry
[23:18:05] [server thread/TRACE] [gendustry/gendustry]: Sent event FMLServerStartingEvent to mod gendustry
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarting - GenDustry took 0.000s
[23:18:05] [server thread/TRACE] [gravestone/gravestone]: Sending event FMLServerStartingEvent to mod gravestone
[23:18:05] [server thread/TRACE] [gravestone/gravestone]: Sent event FMLServerStartingEvent to mod gravestone
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarting - Gravestone took 0.000s
[23:18:05] [server thread/TRACE] [hermitquest/hermitquest]: Sending event FMLServerStartingEvent to mod hermitquest
[23:18:05] [server thread/TRACE] [hermitquest/hermitquest]: Sent event FMLServerStartingEvent to mod hermitquest
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarting - HermitQuest took 0.000s
[23:18:05] [server thread/TRACE] [hopperducts/hopperducts]: Sending event FMLServerStartingEvent to mod hopperducts
[23:18:05] [server thread/TRACE] [hopperducts/hopperducts]: Sent event FMLServerStartingEvent to mod hopperducts
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarting - Hopper Ducts took 0.000s
[23:18:05] [server thread/TRACE] [inventorytweaks/inventorytweaks]: Sending event FMLServerStartingEvent to mod inventorytweaks
[23:18:05] [server thread/TRACE] [inventorytweaks/inventorytweaks]: Sent event FMLServerStartingEvent to mod inventorytweaks
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarting - Inventory Tweaks took 0.000s
[23:18:05] [server thread/TRACE] [ironchest/ironchest]: Sending event FMLServerStartingEvent to mod ironchest
[23:18:05] [server thread/TRACE] [ironchest/ironchest]: Sent event FMLServerStartingEvent to mod ironchest
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarting - Iron Chest took 0.000s
[23:18:05] [server thread/TRACE] [jeibees/jeibees]: Sending event FMLServerStartingEvent to mod jeibees
[23:18:05] [server thread/TRACE] [jeibees/jeibees]: Sent event FMLServerStartingEvent to mod jeibees
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarting - JEI Bees took 0.000s
[23:18:05] [server thread/TRACE] [journeymap/journeymap]: Sending event FMLServerStartingEvent to mod journeymap
[23:18:05] [server thread/TRACE] [journeymap/journeymap]: Sent event FMLServerStartingEvent to mod journeymap
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarting - JourneyMap took 0.000s
[23:18:05] [server thread/TRACE] [jeresources/jeresources]: Sending event FMLServerStartingEvent to mod jeresources
[23:18:05] [server thread/TRACE] [jeresources/jeresources]: Sent event FMLServerStartingEvent to mod jeresources
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarting - Just Enough Resources took 0.000s
[23:18:05] [server thread/TRACE] [labstuff/labstuff]: Sending event FMLServerStartingEvent to mod labstuff
[23:18:05] [server thread/TRACE] [labstuff/labstuff]: Sent event FMLServerStartingEvent to mod labstuff
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarting - LabStuff took 0.000s
[23:18:05] [server thread/TRACE] [Mekanism/Mekanism]: Sending event FMLServerStartingEvent to mod Mekanism
[23:18:05] [server thread/TRACE] [Mekanism/Mekanism]: Sent event FMLServerStartingEvent to mod Mekanism
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarting - Mekanism took 0.001s
[23:18:05] [server thread/TRACE] [MekanismGenerators/MekanismGenerators]: Sending event FMLServerStartingEvent to mod MekanismGenerators
[23:18:05] [server thread/TRACE] [MekanismGenerators/MekanismGenerators]: Sent event FMLServerStartingEvent to mod MekanismGenerators
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarting - MekanismGenerators took 0.000s
[23:18:05] [server thread/TRACE] [MekanismTools/MekanismTools]: Sending event FMLServerStartingEvent to mod MekanismTools
[23:18:05] [server thread/TRACE] [MekanismTools/MekanismTools]: Sent event FMLServerStartingEvent to mod MekanismTools
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarting - MekanismTools took 0.000s
[23:18:05] [server thread/TRACE] [mercurius/mercurius]: Sending event FMLServerStartingEvent to mod mercurius
[23:18:05] [server thread/TRACE] [mercurius/mercurius]: Sent event FMLServerStartingEvent to mod mercurius
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarting - Mercurius took 0.002s
[23:18:05] [server thread/TRACE] [ModNameTooltip/ModNameTooltip]: Sending event FMLServerStartingEvent to mod ModNameTooltip
[23:18:05] [server thread/TRACE] [ModNameTooltip/ModNameTooltip]: Sent event FMLServerStartingEvent to mod ModNameTooltip
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarting - Mod Name Tooltip took 0.000s
[23:18:05] [server thread/TRACE] [mtlib/mtlib]: Sending event FMLServerStartingEvent to mod mtlib
[23:18:05] [server thread/TRACE] [mtlib/mtlib]: Sent event FMLServerStartingEvent to mod mtlib
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarting - MTLib took 0.000s
[23:18:05] [server thread/TRACE] [modtweaker/modtweaker]: Sending event FMLServerStartingEvent to mod modtweaker
[23:18:05] [server thread/INFO] [modtweaker/modtweaker]: Starting ServerStart for modtweaker
[23:18:05] [server thread/TRACE] [modtweaker/modtweaker]: Sent event FMLServerStartingEvent to mod modtweaker
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarting - Mod Tweaker took 0.000s
[23:18:05] [server thread/TRACE] [morebees/morebees]: Sending event FMLServerStartingEvent to mod morebees
[23:18:05] [server thread/TRACE] [morebees/morebees]: Sent event FMLServerStartingEvent to mod morebees
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarting - More Bees took 0.000s
[23:18:05] [server thread/TRACE] [Morpheus/Morpheus]: Sending event FMLServerStartingEvent to mod Morpheus
[23:18:05] [server thread/TRACE] [Morpheus/Morpheus]: Sent event FMLServerStartingEvent to mod Morpheus
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarting - Morpheus took 0.000s
[23:18:05] [server thread/TRACE] [mousetweaks/mousetweaks]: Sending event FMLServerStartingEvent to mod mousetweaks
[23:18:05] [server thread/TRACE] [mousetweaks/mousetweaks]: Sent event FMLServerStartingEvent to mod mousetweaks
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarting - Mouse Tweaks took 0.000s
[23:18:05] [server thread/TRACE] [multistorage/multistorage]: Sending event FMLServerStartingEvent to mod multistorage
[23:18:05] [server thread/TRACE] [multistorage/multistorage]: Sent event FMLServerStartingEvent to mod multistorage
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarting - Multi-Storage took 0.000s
[23:18:05] [server thread/TRACE] [notenoughwands/notenoughwands]: Sending event FMLServerStartingEvent to mod notenoughwands
[23:18:05] [server thread/TRACE] [notenoughwands/notenoughwands]: Sent event FMLServerStartingEvent to mod notenoughwands
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarting - Not Enough Wands took 0.000s
[23:18:05] [server thread/TRACE] [harvestcraft/harvestcraft]: Sending event FMLServerStartingEvent to mod harvestcraft
[23:18:05] [server thread/TRACE] [harvestcraft/harvestcraft]: Sent event FMLServerStartingEvent to mod harvestcraft
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarting - Pam's HarvestCraft took 0.001s
[23:18:05] [server thread/TRACE] [platforms/platforms]: Sending event FMLServerStartingEvent to mod platforms
[23:18:05] [server thread/TRACE] [platforms/platforms]: Sent event FMLServerStartingEvent to mod platforms
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarting - Platforms took 0.000s
[23:18:05] [server thread/TRACE] [quantumflux/quantumflux]: Sending event FMLServerStartingEvent to mod quantumflux
[23:18:05] [server thread/TRACE] [quantumflux/quantumflux]: Sent event FMLServerStartingEvent to mod quantumflux
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarting - QuantumFlux took 0.000s
[23:18:05] [server thread/TRACE] [reborncore/reborncore]: Sending event FMLServerStartingEvent to mod reborncore
[23:18:05] [server thread/TRACE] [reborncore/reborncore]: Sent event FMLServerStartingEvent to mod reborncore
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarting - RebornCore took 0.000s
[23:18:05] [server thread/TRACE] [quantumstorage/quantumstorage]: Sending event FMLServerStartingEvent to mod quantumstorage
[23:18:05] [server thread/TRACE] [quantumstorage/quantumstorage]: Sent event FMLServerStartingEvent to mod quantumstorage
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarting - QuantumStorage took 0.000s
[23:18:05] [server thread/TRACE] [randomthings/randomthings]: Sending event FMLServerStartingEvent to mod randomthings
[23:18:05] [server thread/TRACE] [randomthings/randomthings]: Sent event FMLServerStartingEvent to mod randomthings
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarting - Random Things took 0.001s
[23:18:05] [server thread/TRACE] [rangedpumps/rangedpumps]: Sending event FMLServerStartingEvent to mod rangedpumps
[23:18:05] [server thread/TRACE] [rangedpumps/rangedpumps]: Sent event FMLServerStartingEvent to mod rangedpumps
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarting - Ranged Pumps took 0.000s
[23:18:05] [server thread/TRACE] [reborncore-mcmultipart/reborncore-mcmultipart]: Sending event FMLServerStartingEvent to mod reborncore-mcmultipart
[23:18:05] [server thread/TRACE] [reborncore-mcmultipart/reborncore-mcmultipart]: Sent event FMLServerStartingEvent to mod reborncore-mcmultipart
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarting - reborncore-MCMultiPart took 0.000s
[23:18:05] [server thread/TRACE] [redstonepaste/redstonepaste]: Sending event FMLServerStartingEvent to mod redstonepaste
[23:18:05] [server thread/TRACE] [redstonepaste/redstonepaste]: Sent event FMLServerStartingEvent to mod redstonepaste
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarting - Redstone Paste took 0.000s
[23:18:05] [server thread/TRACE] [refinedstorage/refinedstorage]: Sending event FMLServerStartingEvent to mod refinedstorage
[23:18:05] [server thread/TRACE] [refinedstorage/refinedstorage]: Sent event FMLServerStartingEvent to mod refinedstorage
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarting - Refined Storage took 0.000s
[23:18:05] [server thread/TRACE] [xreliquary/xreliquary]: Sending event FMLServerStartingEvent to mod xreliquary
[23:18:05] [server thread/TRACE] [xreliquary/xreliquary]: Sent event FMLServerStartingEvent to mod xreliquary
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarting - Reliquary took 0.000s
[23:18:05] [server thread/TRACE] [ResourceLoader/ResourceLoader]: Sending event FMLServerStartingEvent to mod ResourceLoader
[23:18:05] [server thread/TRACE] [ResourceLoader/ResourceLoader]: Sent event FMLServerStartingEvent to mod ResourceLoader
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarting - Resource Loader took 0.000s
[23:18:05] [server thread/TRACE] [rftools/rftools]: Sending event FMLServerStartingEvent to mod rftools
[23:18:05] [server thread/TRACE] [rftools/rftools]: Sent event FMLServerStartingEvent to mod rftools
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarting - RFTools took 0.000s
[23:18:05] [server thread/TRACE] [rftoolscontrol/rftoolscontrol]: Sending event FMLServerStartingEvent to mod rftoolscontrol
[23:18:05] [server thread/TRACE] [rftoolscontrol/rftoolscontrol]: Sent event FMLServerStartingEvent to mod rftoolscontrol
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarting - RFTools Control took 0.000s
[23:18:05] [server thread/TRACE] [rftoolsdim/rftoolsdim]: Sending event FMLServerStartingEvent to mod rftoolsdim
[23:18:05] [server thread/TRACE] [rftoolsdim/rftoolsdim]: Sent event FMLServerStartingEvent to mod rftoolsdim
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarting - RFTools Dimensions took 0.000s
[23:18:05] [server thread/TRACE] [roots/roots]: Sending event FMLServerStartingEvent to mod roots
[23:18:05] [server thread/TRACE] [roots/roots]: Sent event FMLServerStartingEvent to mod roots
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarting - Roots took 0.000s
[23:18:05] [server thread/TRACE] [shadowmc/shadowmc]: Sending event FMLServerStartingEvent to mod shadowmc
[23:18:05] [server thread/TRACE] [shadowmc/shadowmc]: Sent event FMLServerStartingEvent to mod shadowmc
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarting - ShadowMC took 0.000s
[23:18:05] [server thread/TRACE] [signals/Signals]: Sending event FMLServerStartingEvent to mod Signals
[23:18:05] [server thread/TRACE] [signals/Signals]: Sent event FMLServerStartingEvent to mod Signals
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarting - Signals took 0.000s
[23:18:05] [server thread/TRACE] [simplegenerators/simplegenerators]: Sending event FMLServerStartingEvent to mod simplegenerators
[23:18:05] [server thread/TRACE] [simplegenerators/simplegenerators]: Sent event FMLServerStartingEvent to mod simplegenerators
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarting - Simple Generators took 0.000s
[23:18:05] [server thread/TRACE] [simplyconveyors/simplyconveyors]: Sending event FMLServerStartingEvent to mod simplyconveyors
[23:18:05] [server thread/TRACE] [simplyconveyors/simplyconveyors]: Sent event FMLServerStartingEvent to mod simplyconveyors
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarting - Simply Conveyors took 0.000s
[23:18:05] [server thread/TRACE] [sleepingBag/SleepingBag]: Sending event FMLServerStartingEvent to mod SleepingBag
[23:18:05] [server thread/TRACE] [sleepingBag/SleepingBag]: Sent event FMLServerStartingEvent to mod SleepingBag
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarting - Sleeping Bag took 0.000s
[23:18:05] [server thread/TRACE] [soundfilters/soundfilters]: Sending event FMLServerStartingEvent to mod soundfilters
[23:18:05] [server thread/TRACE] [soundfilters/soundfilters]: Sent event FMLServerStartingEvent to mod soundfilters
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarting - Sound Filters took 0.000s
[23:18:05] [server thread/TRACE] [rscircuits/rscircuits]: Sending event FMLServerStartingEvent to mod rscircuits
[23:18:05] [server thread/TRACE] [rscircuits/rscircuits]: Sent event FMLServerStartingEvent to mod rscircuits
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarting - Super Circuit Maker took 0.000s
[23:18:05] [server thread/TRACE] [techreborn/techreborn]: Sending event FMLServerStartingEvent to mod techreborn
[23:18:05] [server thread/TRACE] [techreborn/techreborn]: Sent event FMLServerStartingEvent to mod techreborn
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarting - TechReborn took 0.000s
[23:18:05] [server thread/TRACE] [theoneprobe/theoneprobe]: Sending event FMLServerStartingEvent to mod theoneprobe
[23:18:05] [server thread/TRACE] [theoneprobe/theoneprobe]: Sent event FMLServerStartingEvent to mod theoneprobe
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarting - The One Probe took 0.000s
[23:18:05] [server thread/TRACE] [TinkersAddons/TinkersAddons]: Sending event FMLServerStartingEvent to mod TinkersAddons
[23:18:05] [server thread/TRACE] [TinkersAddons/TinkersAddons]: Sent event FMLServerStartingEvent to mod TinkersAddons
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarting - Tinkers' Addons took 0.000s
[23:18:05] [server thread/TRACE] [tinkertoolleveling/tinkertoolleveling]: Sending event FMLServerStartingEvent to mod tinkertoolleveling
[23:18:05] [server thread/TRACE] [tinkertoolleveling/tinkertoolleveling]: Sent event FMLServerStartingEvent to mod tinkertoolleveling
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarting - Tinkers Tool Leveling took 0.000s
[23:18:05] [server thread/TRACE] [Torcherino/Torcherino]: Sending event FMLServerStartingEvent to mod Torcherino
[23:18:05] [server thread/TRACE] [Torcherino/Torcherino]: Sent event FMLServerStartingEvent to mod Torcherino
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarting - Torcherino took 0.000s
[23:18:05] [server thread/TRACE] [usefulnullifiers/usefulnullifiers]: Sending event FMLServerStartingEvent to mod usefulnullifiers
[23:18:05] [server thread/TRACE] [usefulnullifiers/usefulnullifiers]: Sent event FMLServerStartingEvent to mod usefulnullifiers
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarting - Useful Nullifiers took 0.000s
[23:18:05] [server thread/TRACE] [weaponcaseloot/weaponcaseloot]: Sending event FMLServerStartingEvent to mod weaponcaseloot
[23:18:05] [server thread/TRACE] [weaponcaseloot/weaponcaseloot]: Sent event FMLServerStartingEvent to mod weaponcaseloot
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarting - WeaponCaseLoot took 0.000s
[23:18:05] [server thread/DEBUG] [FML/]: Bar Finished: ServerStarting took 18.951s
[23:18:05] [server thread/TRACE] [mcp/mcp]: Sending event FMLServerStartedEvent to mod mcp
[23:18:05] [server thread/TRACE] [mcp/mcp]: Sent event FMLServerStartedEvent to mod mcp
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarted - Minecraft Coder Pack took 0.000s
[23:18:05] [server thread/TRACE] [FML/FML]: Sending event FMLServerStartedEvent to mod FML
[23:18:05] [server thread/TRACE] [FML/FML]: Sent event FMLServerStartedEvent to mod FML
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarted - Forge Mod Loader took 0.000s
[23:18:05] [server thread/TRACE] [Forge/Forge]: Sending event FMLServerStartedEvent to mod Forge
[23:18:05] [server thread/TRACE] [Forge/Forge]: Sent event FMLServerStartedEvent to mod Forge
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarted - Minecraft Forge took 0.000s
[23:18:05] [server thread/TRACE] [OpenComputers|Core/OpenComputers|Core]: Sending event FMLServerStartedEvent to mod OpenComputers|Core
[23:18:05] [server thread/TRACE] [OpenComputers|Core/OpenComputers|Core]: Sent event FMLServerStartedEvent to mod OpenComputers|Core
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarted - OpenComputers (Core) took 0.000s
[23:18:05] [server thread/TRACE] [actuallyadditions/actuallyadditions]: Sending event FMLServerStartedEvent to mod actuallyadditions
[23:18:05] [server thread/TRACE] [actuallyadditions/actuallyadditions]: Sent event FMLServerStartedEvent to mod actuallyadditions
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarted - Actually Additions took 0.000s
[23:18:05] [server thread/TRACE] [iC2/IC2]: Sending event FMLServerStartedEvent to mod IC2
[23:18:05] [server thread/TRACE] [iC2/IC2]: Sent event FMLServerStartedEvent to mod IC2
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarted - IndustrialCraft 2 took 0.000s
[23:18:05] [server thread/TRACE] [advanced_solar_panels/advanced_solar_panels]: Sending event FMLServerStartedEvent to mod advanced_solar_panels
[23:18:05] [server thread/TRACE] [advanced_solar_panels/advanced_solar_panels]: Sent event FMLServerStartedEvent to mod advanced_solar_panels
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarted - Advanced Solar Panels took 0.000s
[23:18:05] [server thread/TRACE] [autopackager/autopackager]: Sending event FMLServerStartedEvent to mod autopackager
[23:18:05] [server thread/TRACE] [autopackager/autopackager]: Sent event FMLServerStartedEvent to mod autopackager
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarted - AutoPackager took 0.000s
[23:18:05] [server thread/TRACE] [Psi/Psi]: Sending event FMLServerStartedEvent to mod Psi
[23:18:05] [server thread/TRACE] [Psi/Psi]: Sent event FMLServerStartedEvent to mod Psi
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarted - Psi took 0.000s
[23:18:05] [server thread/TRACE] [Quark/Quark]: Sending event FMLServerStartedEvent to mod Quark
[23:18:05] [server thread/TRACE] [Quark/Quark]: Sent event FMLServerStartedEvent to mod Quark
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarted - Quark took 0.000s
[23:18:05] [server thread/TRACE] [AutoRegLib/AutoRegLib]: Sending event FMLServerStartedEvent to mod AutoRegLib
[23:18:05] [server thread/TRACE] [AutoRegLib/AutoRegLib]: Sent event FMLServerStartedEvent to mod AutoRegLib
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarted - AutoRegLib took 0.000s
[23:18:05] [server thread/TRACE] [baubles/Baubles]: Sending event FMLServerStartedEvent to mod Baubles
[23:18:05] [server thread/TRACE] [baubles/Baubles]: Sent event FMLServerStartedEvent to mod Baubles
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarted - Baubles took 0.000s
[23:18:05] [server thread/TRACE] [bdlib/bdlib]: Sending event FMLServerStartedEvent to mod bdlib
[23:18:05] [server thread/TRACE] [bdlib/bdlib]: Sent event FMLServerStartedEvent to mod bdlib
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarted - BD Lib took 0.000s
[23:18:05] [server thread/TRACE] [betterbuilderswands/betterbuilderswands]: Sending event FMLServerStartedEvent to mod betterbuilderswands
[23:18:05] [server thread/TRACE] [betterbuilderswands/betterbuilderswands]: Sent event FMLServerStartedEvent to mod betterbuilderswands
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarted - Better Builder's Wands took 0.000s
[23:18:05] [server thread/TRACE] [guideapi/guideapi]: Sending event FMLServerStartedEvent to mod guideapi
[23:18:05] [server thread/TRACE] [guideapi/guideapi]: Sent event FMLServerStartedEvent to mod guideapi
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarted - Guide-API took 0.000s
[23:18:05] [server thread/TRACE] [mantle/mantle]: Sending event FMLServerStartedEvent to mod mantle
[23:18:05] [server thread/TRACE] [mantle/mantle]: Sent event FMLServerStartedEvent to mod mantle
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarted - Mantle took 0.000s
[23:18:05] [server thread/TRACE] [tconstruct/tconstruct]: Sending event FMLServerStartedEvent to mod tconstruct
[23:18:05] [server thread/TRACE] [tconstruct/tconstruct]: Sent event FMLServerStartedEvent to mod tconstruct
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarted - Tinkers' Construct took 0.000s
[23:18:05] [server thread/TRACE] [immersiveengineering/immersiveengineering]: Sending event FMLServerStartedEvent to mod immersiveengineering
[23:18:05] [server thread/INFO] [immersiveengineering/immersiveengineering]: WorldData loading
[23:18:05] [server thread/INFO] [immersiveengineering/immersiveengineering]: WorldData retrieved
[23:18:05] [server thread/TRACE] [immersiveengineering/immersiveengineering]: Sent event FMLServerStartedEvent to mod immersiveengineering
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarted - Immersive Engineering took 0.001s
[23:18:05] [server thread/TRACE] [JEI/JEI]: Sending event FMLServerStartedEvent to mod JEI
[23:18:05] [server thread/TRACE] [JEI/JEI]: Sent event FMLServerStartedEvent to mod JEI
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarted - Just Enough Items took 0.000s
[23:18:05] [server thread/TRACE] [bloodMagic/BloodMagic]: Sending event FMLServerStartedEvent to mod BloodMagic
[23:18:05] [server thread/TRACE] [bloodMagic/BloodMagic]: Sent event FMLServerStartedEvent to mod BloodMagic
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarted - Blood Magic: Alchemical Wizardry took 0.000s
[23:18:05] [server thread/TRACE] [botania/Botania]: Sending event FMLServerStartedEvent to mod Botania
[23:18:05] [server thread/TRACE] [botania/Botania]: Sent event FMLServerStartedEvent to mod Botania
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarted - Botania took 0.000s
[23:18:05] [server thread/TRACE] [Chameleon/Chameleon]: Sending event FMLServerStartedEvent to mod Chameleon
[23:18:05] [server thread/TRACE] [Chameleon/Chameleon]: Sent event FMLServerStartedEvent to mod Chameleon
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarted - Chameleon took 0.000s
[23:18:05] [server thread/TRACE] [ChestTransporter/ChestTransporter]: Sending event FMLServerStartedEvent to mod ChestTransporter
[23:18:05] [server thread/TRACE] [ChestTransporter/ChestTransporter]: Sent event FMLServerStartedEvent to mod ChestTransporter
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarted - Chest Transporter took 0.000s
[23:18:05] [server thread/TRACE] [chisel/chisel]: Sending event FMLServerStartedEvent to mod chisel
[23:18:05] [server thread/TRACE] [chisel/chisel]: Sent event FMLServerStartedEvent to mod chisel
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarted - Chisel took 0.000s
[23:18:05] [server thread/TRACE] [mcmultipart/mcmultipart]: Sending event FMLServerStartedEvent to mod mcmultipart
[23:18:05] [server thread/TRACE] [mcmultipart/mcmultipart]: Sent event FMLServerStartedEvent to mod mcmultipart
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarted - MCMultiPart took 0.002s
[23:18:05] [server thread/TRACE] [chiselsandbits/chiselsandbits]: Sending event FMLServerStartedEvent to mod chiselsandbits
[23:18:05] [server thread/TRACE] [chiselsandbits/chiselsandbits]: Sent event FMLServerStartedEvent to mod chiselsandbits
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarted - Chisels & Bits took 0.001s
[23:18:05] [server thread/TRACE] [cookingforblockheads/cookingforblockheads]: Sending event FMLServerStartedEvent to mod cookingforblockheads
[23:18:05] [server thread/TRACE] [cookingforblockheads/cookingforblockheads]: Sent event FMLServerStartedEvent to mod cookingforblockheads
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarted - Cooking for Blockheads took 0.000s
[23:18:05] [server thread/TRACE] [MineTweaker3/MineTweaker3]: Sending event FMLServerStartedEvent to mod MineTweaker3
[23:18:05] [server thread/TRACE] [MineTweaker3/MineTweaker3]: Sent event FMLServerStartedEvent to mod MineTweaker3
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarted - MineTweaker 3 took 0.000s
[23:18:05] [server thread/TRACE] [ctgui/ctgui]: Sending event FMLServerStartedEvent to mod ctgui
[23:18:05] [server thread/TRACE] [ctgui/ctgui]: Sent event FMLServerStartedEvent to mod ctgui
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarted - CT-GUI took 0.000s
[23:18:05] [server thread/TRACE] [CustomMainMenu/CustomMainMenu]: Sending event FMLServerStartedEvent to mod CustomMainMenu
[23:18:05] [server thread/TRACE] [CustomMainMenu/CustomMainMenu]: Sent event FMLServerStartedEvent to mod CustomMainMenu
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarted - Custom Main Menu took 0.000s
[23:18:05] [server thread/TRACE] [cyclicmagic/cyclicmagic]: Sending event FMLServerStartedEvent to mod cyclicmagic
[23:18:05] [server thread/TRACE] [cyclicmagic/cyclicmagic]: Sent event FMLServerStartedEvent to mod cyclicmagic
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarted - Cyclic took 0.000s
[23:18:05] [server thread/TRACE] [forestry/forestry]: Sending event FMLServerStartedEvent to mod forestry
[23:18:05] [server thread/TRACE] [forestry/forestry]: Sent event FMLServerStartedEvent to mod forestry
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarted - Forestry took 0.000s
[23:18:05] [server thread/TRACE] [ElecCore/ElecCore]: Sending event FMLServerStartedEvent to mod ElecCore
[23:18:05] [server thread/TRACE] [ElecCore/ElecCore]: Sent event FMLServerStartedEvent to mod ElecCore
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarted - ElecCore took 0.001s
[23:18:05] [server thread/TRACE] [OpenComputers/OpenComputers]: Sending event FMLServerStartedEvent to mod OpenComputers
[23:18:05] [server thread/TRACE] [OpenComputers/OpenComputers]: Sent event FMLServerStartedEvent to mod OpenComputers
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarted - OpenComputers took 0.000s
[23:18:05] [server thread/TRACE] [deepresonance/deepresonance]: Sending event FMLServerStartedEvent to mod deepresonance
[23:18:05] [server thread/TRACE] [deepresonance/deepresonance]: Sent event FMLServerStartedEvent to mod deepresonance
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarted - DeepResonance took 0.000s
[23:18:05] [server thread/TRACE] [defaultoptions/defaultoptions]: Sending event FMLServerStartedEvent to mod defaultoptions
[23:18:05] [server thread/TRACE] [defaultoptions/defaultoptions]: Sent event FMLServerStartedEvent to mod defaultoptions
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarted - Default Options took 0.000s
[23:18:05] [server thread/TRACE] [dragontweaks/dragontweaks]: Sending event FMLServerStartedEvent to mod dragontweaks
[23:18:05] [server thread/TRACE] [dragontweaks/dragontweaks]: Sent event FMLServerStartedEvent to mod dragontweaks
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarted - Dragon Tweaks took 0.000s
[23:18:05] [server thread/TRACE] [storageDrawers/StorageDrawers]: Sending event FMLServerStartedEvent to mod StorageDrawers
[23:18:05] [server thread/TRACE] [storageDrawers/StorageDrawers]: Sent event FMLServerStartedEvent to mod StorageDrawers
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarted - Storage Drawers took 0.000s
[23:18:05] [server thread/TRACE] [bitdrawers/bitdrawers]: Sending event FMLServerStartedEvent to mod bitdrawers
[23:18:05] [server thread/TRACE] [bitdrawers/bitdrawers]: Sent event FMLServerStartedEvent to mod bitdrawers
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarted - Drawers & Bits took 0.000s
[23:18:05] [server thread/TRACE] [endercore/endercore]: Sending event FMLServerStartedEvent to mod endercore
[23:18:05] [server thread/TRACE] [endercore/endercore]: Sent event FMLServerStartedEvent to mod endercore
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarted - EnderCore took 0.000s
[23:18:05] [server thread/TRACE] [EnderIO/EnderIO]: Sending event FMLServerStartedEvent to mod EnderIO
[23:18:05] [server thread/TRACE] [EnderIO/EnderIO]: Sent event FMLServerStartedEvent to mod EnderIO
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarted - Ender IO took 0.001s
[23:18:05] [server thread/TRACE] [shetiphiancore/shetiphiancore]: Sending event FMLServerStartedEvent to mod shetiphiancore
[23:18:05] [server thread/TRACE] [shetiphiancore/shetiphiancore]: Sent event FMLServerStartedEvent to mod shetiphiancore
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarted - ShetiPhian-Core took 0.000s
[23:18:05] [server thread/TRACE] [endertanks/endertanks]: Sending event FMLServerStartedEvent to mod endertanks
[23:18:05] [server thread/TRACE] [endertanks/endertanks]: Sent event FMLServerStartedEvent to mod endertanks
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarted - EnderTanks took 0.000s
[23:18:05] [server thread/TRACE] [EnderZoo/EnderZoo]: Sending event FMLServerStartedEvent to mod EnderZoo
[23:18:05] [server thread/TRACE] [EnderZoo/EnderZoo]: Sent event FMLServerStartedEvent to mod EnderZoo
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarted - Ender Zoo took 0.000s
[23:18:05] [server thread/TRACE] [valkyrielib/valkyrielib]: Sending event FMLServerStartedEvent to mod valkyrielib
[23:18:05] [server thread/TRACE] [valkyrielib/valkyrielib]: Sent event FMLServerStartedEvent to mod valkyrielib
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarted - Valkyrie Lib took 0.000s
[23:18:05] [server thread/TRACE] [environmentaltech/environmentaltech]: Sending event FMLServerStartedEvent to mod environmentaltech
[23:18:05] [server thread/TRACE] [environmentaltech/environmentaltech]: Sent event FMLServerStartedEvent to mod environmentaltech
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarted - Environmental Tech took 0.000s
[23:18:05] [server thread/TRACE] [ExtraUtils2/ExtraUtils2]: Sending event FMLServerStartedEvent to mod ExtraUtils2
[23:18:05] [server thread/TRACE] [ExtraUtils2/ExtraUtils2]: Sent event FMLServerStartedEvent to mod ExtraUtils2
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarted - ExtraUtils2 took 0.000s
[23:18:05] [server thread/TRACE] [zerocore/zerocore]: Sending event FMLServerStartedEvent to mod zerocore
[23:18:05] [server thread/TRACE] [zerocore/zerocore]: Sent event FMLServerStartedEvent to mod zerocore
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarted - Zero CORE took 0.000s
[23:18:05] [server thread/TRACE] [bigreactors/bigreactors]: Sending event FMLServerStartedEvent to mod bigreactors
[23:18:05] [server thread/TRACE] [bigreactors/bigreactors]: Sent event FMLServerStartedEvent to mod bigreactors
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarted - Extreme Reactors took 0.000s
[23:18:05] [server thread/TRACE] [fastleafdecay/fastleafdecay]: Sending event FMLServerStartedEvent to mod fastleafdecay
[23:18:05] [server thread/TRACE] [fastleafdecay/fastleafdecay]: Sent event FMLServerStartedEvent to mod fastleafdecay
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarted - Fast Leaf Decay took 0.000s
[23:18:05] [server thread/TRACE] [flatcoloredblocks/flatcoloredblocks]: Sending event FMLServerStartedEvent to mod flatcoloredblocks
[23:18:05] [server thread/TRACE] [flatcoloredblocks/flatcoloredblocks]: Sent event FMLServerStartedEvent to mod flatcoloredblocks
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarted - Flat Colored Blocks took 0.000s
[23:18:05] [server thread/TRACE] [flighttweaks/flighttweaks]: Sending event FMLServerStartedEvent to mod flighttweaks
[23:18:05] [server thread/TRACE] [flighttweaks/flighttweaks]: Sent event FMLServerStartedEvent to mod flighttweaks
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarted - Flight Tweaks took 0.000s
[23:18:05] [server thread/TRACE] [ftbl/ftbl]: Sending event FMLServerStartedEvent to mod ftbl
[23:18:05] [server thread/TRACE] [ftbl/ftbl]: Sent event FMLServerStartedEvent to mod ftbl
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarted - FTBLib took 0.015s
[23:18:05] [server thread/TRACE] [ftbu/ftbu]: Sending event FMLServerStartedEvent to mod ftbu
[23:18:05] [server thread/INFO] [FTBU_Backups/ftbu]: Backups folder - C:\Users\keega\Documents\Curse\Minecraft\Instances\FTB Presents HermitPack\backups
[23:18:05] [server thread/TRACE] [ftbu/ftbu]: Sent event FMLServerStartedEvent to mod ftbu
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarted - FTBUtilities took 0.024s
[23:18:05] [server thread/TRACE] [gendustry/gendustry]: Sending event FMLServerStartedEvent to mod gendustry
[23:18:05] [server thread/TRACE] [gendustry/gendustry]: Sent event FMLServerStartedEvent to mod gendustry
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarted - GenDustry took 0.000s
[23:18:05] [server thread/TRACE] [gravestone/gravestone]: Sending event FMLServerStartedEvent to mod gravestone
[23:18:05] [server thread/TRACE] [gravestone/gravestone]: Sent event FMLServerStartedEvent to mod gravestone
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarted - Gravestone took 0.000s
[23:18:05] [server thread/TRACE] [hermitquest/hermitquest]: Sending event FMLServerStartedEvent to mod hermitquest
[23:18:05] [server thread/TRACE] [hermitquest/hermitquest]: Sent event FMLServerStartedEvent to mod hermitquest
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarted - HermitQuest took 0.000s
[23:18:05] [server thread/TRACE] [hopperducts/hopperducts]: Sending event FMLServerStartedEvent to mod hopperducts
[23:18:05] [server thread/TRACE] [hopperducts/hopperducts]: Sent event FMLServerStartedEvent to mod hopperducts
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarted - Hopper Ducts took 0.000s
[23:18:05] [server thread/TRACE] [inventorytweaks/inventorytweaks]: Sending event FMLServerStartedEvent to mod inventorytweaks
[23:18:05] [server thread/TRACE] [inventorytweaks/inventorytweaks]: Sent event FMLServerStartedEvent to mod inventorytweaks
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarted - Inventory Tweaks took 0.000s
[23:18:05] [server thread/TRACE] [ironchest/ironchest]: Sending event FMLServerStartedEvent to mod ironchest
[23:18:05] [server thread/TRACE] [ironchest/ironchest]: Sent event FMLServerStartedEvent to mod ironchest
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarted - Iron Chest took 0.000s
[23:18:05] [server thread/TRACE] [jeibees/jeibees]: Sending event FMLServerStartedEvent to mod jeibees
[23:18:05] [server thread/TRACE] [jeibees/jeibees]: Sent event FMLServerStartedEvent to mod jeibees
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarted - JEI Bees took 0.000s
[23:18:05] [server thread/TRACE] [journeymap/journeymap]: Sending event FMLServerStartedEvent to mod journeymap
[23:18:05] [server thread/TRACE] [journeymap/journeymap]: Sent event FMLServerStartedEvent to mod journeymap
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarted - JourneyMap took 0.000s
[23:18:05] [server thread/TRACE] [jeresources/jeresources]: Sending event FMLServerStartedEvent to mod jeresources
[23:18:05] [server thread/TRACE] [jeresources/jeresources]: Sent event FMLServerStartedEvent to mod jeresources
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarted - Just Enough Resources took 0.000s
[23:18:05] [server thread/TRACE] [labstuff/labstuff]: Sending event FMLServerStartedEvent to mod labstuff
[23:18:05] [server thread/TRACE] [labstuff/labstuff]: Sent event FMLServerStartedEvent to mod labstuff
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarted - LabStuff took 0.000s
[23:18:05] [server thread/TRACE] [Mekanism/Mekanism]: Sending event FMLServerStartedEvent to mod Mekanism
[23:18:05] [server thread/TRACE] [Mekanism/Mekanism]: Sent event FMLServerStartedEvent to mod Mekanism
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarted - Mekanism took 0.001s
[23:18:05] [server thread/TRACE] [MekanismGenerators/MekanismGenerators]: Sending event FMLServerStartedEvent to mod MekanismGenerators
[23:18:05] [server thread/TRACE] [MekanismGenerators/MekanismGenerators]: Sent event FMLServerStartedEvent to mod MekanismGenerators
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarted - MekanismGenerators took 0.000s
[23:18:05] [server thread/TRACE] [MekanismTools/MekanismTools]: Sending event FMLServerStartedEvent to mod MekanismTools
[23:18:05] [server thread/TRACE] [MekanismTools/MekanismTools]: Sent event FMLServerStartedEvent to mod MekanismTools
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarted - MekanismTools took 0.000s
[23:18:05] [server thread/TRACE] [mercurius/mercurius]: Sending event FMLServerStartedEvent to mod mercurius
[23:18:05] [server thread/TRACE] [mercurius/mercurius]: Sent event FMLServerStartedEvent to mod mercurius
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarted - Mercurius took 0.000s
[23:18:05] [server thread/TRACE] [ModNameTooltip/ModNameTooltip]: Sending event FMLServerStartedEvent to mod ModNameTooltip
[23:18:05] [server thread/TRACE] [ModNameTooltip/ModNameTooltip]: Sent event FMLServerStartedEvent to mod ModNameTooltip
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarted - Mod Name Tooltip took 0.000s
[23:18:05] [server thread/TRACE] [mtlib/mtlib]: Sending event FMLServerStartedEvent to mod mtlib
[23:18:05] [server thread/TRACE] [mtlib/mtlib]: Sent event FMLServerStartedEvent to mod mtlib
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarted - MTLib took 0.000s
[23:18:05] [server thread/TRACE] [modtweaker/modtweaker]: Sending event FMLServerStartedEvent to mod modtweaker
[23:18:05] [server thread/TRACE] [modtweaker/modtweaker]: Sent event FMLServerStartedEvent to mod modtweaker
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarted - Mod Tweaker took 0.000s
[23:18:05] [server thread/TRACE] [morebees/morebees]: Sending event FMLServerStartedEvent to mod morebees
[23:18:05] [server thread/TRACE] [morebees/morebees]: Sent event FMLServerStartedEvent to mod morebees
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarted - More Bees took 0.000s
[23:18:05] [server thread/TRACE] [Morpheus/Morpheus]: Sending event FMLServerStartedEvent to mod Morpheus
[23:18:05] [server thread/TRACE] [Morpheus/Morpheus]: Sent event FMLServerStartedEvent to mod Morpheus
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarted - Morpheus took 0.000s
[23:18:05] [server thread/TRACE] [mousetweaks/mousetweaks]: Sending event FMLServerStartedEvent to mod mousetweaks
[23:18:05] [server thread/TRACE] [mousetweaks/mousetweaks]: Sent event FMLServerStartedEvent to mod mousetweaks
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarted - Mouse Tweaks took 0.000s
[23:18:05] [server thread/TRACE] [multistorage/multistorage]: Sending event FMLServerStartedEvent to mod multistorage
[23:18:05] [server thread/TRACE] [multistorage/multistorage]: Sent event FMLServerStartedEvent to mod multistorage
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarted - Multi-Storage took 0.000s
[23:18:05] [server thread/TRACE] [notenoughwands/notenoughwands]: Sending event FMLServerStartedEvent to mod notenoughwands
[23:18:05] [server thread/TRACE] [notenoughwands/notenoughwands]: Sent event FMLServerStartedEvent to mod notenoughwands
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarted - Not Enough Wands took 0.000s
[23:18:05] [server thread/TRACE] [harvestcraft/harvestcraft]: Sending event FMLServerStartedEvent to mod harvestcraft
[23:18:05] [server thread/TRACE] [harvestcraft/harvestcraft]: Sent event FMLServerStartedEvent to mod harvestcraft
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarted - Pam's HarvestCraft took 0.000s
[23:18:05] [server thread/TRACE] [platforms/platforms]: Sending event FMLServerStartedEvent to mod platforms
[23:18:05] [server thread/TRACE] [platforms/platforms]: Sent event FMLServerStartedEvent to mod platforms
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarted - Platforms took 0.000s
[23:18:05] [server thread/TRACE] [quantumflux/quantumflux]: Sending event FMLServerStartedEvent to mod quantumflux
[23:18:05] [server thread/TRACE] [quantumflux/quantumflux]: Sent event FMLServerStartedEvent to mod quantumflux
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarted - QuantumFlux took 0.000s
[23:18:05] [server thread/TRACE] [reborncore/reborncore]: Sending event FMLServerStartedEvent to mod reborncore
[23:18:05] [server thread/TRACE] [reborncore/reborncore]: Sent event FMLServerStartedEvent to mod reborncore
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarted - RebornCore took 0.000s
[23:18:05] [server thread/TRACE] [quantumstorage/quantumstorage]: Sending event FMLServerStartedEvent to mod quantumstorage
[23:18:05] [server thread/TRACE] [quantumstorage/quantumstorage]: Sent event FMLServerStartedEvent to mod quantumstorage
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarted - QuantumStorage took 0.000s
[23:18:05] [server thread/TRACE] [randomthings/randomthings]: Sending event FMLServerStartedEvent to mod randomthings
[23:18:05] [server thread/TRACE] [randomthings/randomthings]: Sent event FMLServerStartedEvent to mod randomthings
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarted - Random Things took 0.000s
[23:18:05] [server thread/TRACE] [rangedpumps/rangedpumps]: Sending event FMLServerStartedEvent to mod rangedpumps
[23:18:05] [server thread/TRACE] [rangedpumps/rangedpumps]: Sent event FMLServerStartedEvent to mod rangedpumps
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarted - Ranged Pumps took 0.001s
[23:18:05] [server thread/TRACE] [reborncore-mcmultipart/reborncore-mcmultipart]: Sending event FMLServerStartedEvent to mod reborncore-mcmultipart
[23:18:05] [server thread/TRACE] [reborncore-mcmultipart/reborncore-mcmultipart]: Sent event FMLServerStartedEvent to mod reborncore-mcmultipart
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarted - reborncore-MCMultiPart took 0.000s
[23:18:05] [server thread/TRACE] [redstonepaste/redstonepaste]: Sending event FMLServerStartedEvent to mod redstonepaste
[23:18:05] [server thread/TRACE] [redstonepaste/redstonepaste]: Sent event FMLServerStartedEvent to mod redstonepaste
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarted - Redstone Paste took 0.000s
[23:18:05] [server thread/TRACE] [refinedstorage/refinedstorage]: Sending event FMLServerStartedEvent to mod refinedstorage
[23:18:05] [server thread/TRACE] [refinedstorage/refinedstorage]: Sent event FMLServerStartedEvent to mod refinedstorage
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarted - Refined Storage took 0.001s
[23:18:05] [server thread/TRACE] [xreliquary/xreliquary]: Sending event FMLServerStartedEvent to mod xreliquary
[23:18:05] [server thread/TRACE] [xreliquary/xreliquary]: Sent event FMLServerStartedEvent to mod xreliquary
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarted - Reliquary took 0.000s
[23:18:05] [server thread/TRACE] [ResourceLoader/ResourceLoader]: Sending event FMLServerStartedEvent to mod ResourceLoader
[23:18:05] [server thread/TRACE] [ResourceLoader/ResourceLoader]: Sent event FMLServerStartedEvent to mod ResourceLoader
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarted - Resource Loader took 0.000s
[23:18:05] [server thread/TRACE] [rftools/rftools]: Sending event FMLServerStartedEvent to mod rftools
[23:18:05] [server thread/TRACE] [rftools/rftools]: Sent event FMLServerStartedEvent to mod rftools
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarted - RFTools took 0.000s
[23:18:05] [server thread/TRACE] [rftoolscontrol/rftoolscontrol]: Sending event FMLServerStartedEvent to mod rftoolscontrol
[23:18:05] [server thread/TRACE] [rftoolscontrol/rftoolscontrol]: Sent event FMLServerStartedEvent to mod rftoolscontrol
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarted - RFTools Control took 0.000s
[23:18:05] [server thread/TRACE] [rftoolsdim/rftoolsdim]: Sending event FMLServerStartedEvent to mod rftoolsdim
[23:18:05] [server thread/INFO] [mcjty.lib.varia.Logging/rftoolsdim]: RFTools: server is starting
[23:18:05] [server thread/INFO] [sTDOUT/rftoolsdim]: [mcjty.rftoolsdim.dimensions.RfToolsDimensionManager:getDimensionManager:306]: instance = null
[23:18:05] [server thread/INFO] [mcjty.lib.varia.Logging/rftoolsdim]: Registering RFTools dimensions: 
[23:18:05] [server thread/TRACE] [rftoolsdim/rftoolsdim]: Sent event FMLServerStartedEvent to mod rftoolsdim
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarted - RFTools Dimensions took 0.003s
[23:18:05] [server thread/TRACE] [roots/roots]: Sending event FMLServerStartedEvent to mod roots
[23:18:05] [server thread/TRACE] [roots/roots]: Sent event FMLServerStartedEvent to mod roots
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarted - Roots took 0.000s
[23:18:05] [server thread/TRACE] [shadowmc/shadowmc]: Sending event FMLServerStartedEvent to mod shadowmc
[23:18:05] [server thread/TRACE] [shadowmc/shadowmc]: Sent event FMLServerStartedEvent to mod shadowmc
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarted - ShadowMC took 0.001s
[23:18:05] [server thread/TRACE] [signals/Signals]: Sending event FMLServerStartedEvent to mod Signals
[23:18:05] [server thread/TRACE] [signals/Signals]: Sent event FMLServerStartedEvent to mod Signals
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarted - Signals took 0.000s
[23:18:05] [server thread/TRACE] [simplegenerators/simplegenerators]: Sending event FMLServerStartedEvent to mod simplegenerators
[23:18:05] [server thread/TRACE] [simplegenerators/simplegenerators]: Sent event FMLServerStartedEvent to mod simplegenerators
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarted - Simple Generators took 0.000s
[23:18:05] [server thread/TRACE] [simplyconveyors/simplyconveyors]: Sending event FMLServerStartedEvent to mod simplyconveyors
[23:18:05] [server thread/TRACE] [simplyconveyors/simplyconveyors]: Sent event FMLServerStartedEvent to mod simplyconveyors
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarted - Simply Conveyors took 0.000s
[23:18:05] [server thread/TRACE] [sleepingBag/SleepingBag]: Sending event FMLServerStartedEvent to mod SleepingBag
[23:18:05] [server thread/TRACE] [sleepingBag/SleepingBag]: Sent event FMLServerStartedEvent to mod SleepingBag
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarted - Sleeping Bag took 0.000s
[23:18:05] [server thread/TRACE] [soundfilters/soundfilters]: Sending event FMLServerStartedEvent to mod soundfilters
[23:18:05] [server thread/TRACE] [soundfilters/soundfilters]: Sent event FMLServerStartedEvent to mod soundfilters
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarted - Sound Filters took 0.000s
[23:18:05] [server thread/TRACE] [rscircuits/rscircuits]: Sending event FMLServerStartedEvent to mod rscircuits
[23:18:05] [server thread/TRACE] [rscircuits/rscircuits]: Sent event FMLServerStartedEvent to mod rscircuits
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarted - Super Circuit Maker took 0.000s
[23:18:05] [server thread/TRACE] [techreborn/techreborn]: Sending event FMLServerStartedEvent to mod techreborn
[23:18:05] [server thread/TRACE] [techreborn/techreborn]: Sent event FMLServerStartedEvent to mod techreborn
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarted - TechReborn took 0.000s
[23:18:05] [server thread/TRACE] [theoneprobe/theoneprobe]: Sending event FMLServerStartedEvent to mod theoneprobe
[23:18:05] [server thread/TRACE] [theoneprobe/theoneprobe]: Sent event FMLServerStartedEvent to mod theoneprobe
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarted - The One Probe took 0.000s
[23:18:05] [server thread/TRACE] [TinkersAddons/TinkersAddons]: Sending event FMLServerStartedEvent to mod TinkersAddons
[23:18:05] [server thread/TRACE] [TinkersAddons/TinkersAddons]: Sent event FMLServerStartedEvent to mod TinkersAddons
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarted - Tinkers' Addons took 0.000s
[23:18:05] [server thread/TRACE] [tinkertoolleveling/tinkertoolleveling]: Sending event FMLServerStartedEvent to mod tinkertoolleveling
[23:18:05] [server thread/TRACE] [tinkertoolleveling/tinkertoolleveling]: Sent event FMLServerStartedEvent to mod tinkertoolleveling
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarted - Tinkers Tool Leveling took 0.000s
[23:18:05] [server thread/TRACE] [Torcherino/Torcherino]: Sending event FMLServerStartedEvent to mod Torcherino
[23:18:05] [server thread/TRACE] [Torcherino/Torcherino]: Sent event FMLServerStartedEvent to mod Torcherino
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarted - Torcherino took 0.000s
[23:18:05] [server thread/TRACE] [usefulnullifiers/usefulnullifiers]: Sending event FMLServerStartedEvent to mod usefulnullifiers
[23:18:05] [server thread/TRACE] [usefulnullifiers/usefulnullifiers]: Sent event FMLServerStartedEvent to mod usefulnullifiers
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarted - Useful Nullifiers took 0.000s
[23:18:05] [server thread/TRACE] [weaponcaseloot/weaponcaseloot]: Sending event FMLServerStartedEvent to mod weaponcaseloot
[23:18:05] [server thread/TRACE] [weaponcaseloot/weaponcaseloot]: Sent event FMLServerStartedEvent to mod weaponcaseloot
[23:18:05] [server thread/DEBUG] [FML/]: Bar Step: ServerStarted - WeaponCaseLoot took 0.000s
[23:18:05] [server thread/DEBUG] [FML/]: Bar Finished: ServerStarted took 0.065s
[23:18:06] [Netty Local Client IO #1/TRACE] [FML/]: Handshake channel activating
[23:18:06] [Netty Local Client IO #1/DEBUG] [FML/]: FMLHandshakeClientState: null->FMLHandshakeClientState$1:START
[23:18:06] [Netty Local Client IO #1/DEBUG] [FML/]:   Next: HELLO
[23:18:06] [Netty Server IO #3/TRACE] [FML/]: Handshake channel activating
[23:18:06] [Netty Server IO #3/DEBUG] [FML/]: FMLHandshakeServerState: null->FMLHandshakeServerState$1:START
[23:18:06] [Netty Server IO #3/DEBUG] [FML/]:   Next: HELLO
[23:18:06] [Netty Local Client IO #1/DEBUG] [FML/]: Server FML protocol version 2, 4 byte dimension received 0
[23:18:06] [Netty Local Client IO #1/DEBUG] [FML/]: FMLHandshakeClientState: $ServerHello->FMLHandshakeClientState$2:HELLO
[23:18:06] [Netty Local Client IO #1/INFO] [FML/]: Server protocol version 2
[23:18:06] [Netty Local Client IO #1/DEBUG] [FML/]: Received override dimension 0
[23:18:06] [Netty Server IO #3/DEBUG] [FML/]: FMLHandshakeServerState: $ClientHello->FMLHandshakeServerState$2:HELLO
[23:18:06] [Netty Server IO #3/INFO] [FML/]: Client protocol version 2
[23:18:06] [Netty Server IO #3/DEBUG] [FML/]:   Next: HELLO
[23:18:06] [Netty Server IO #3/DEBUG] [FML/]: FMLHandshakeServerState: $ModList:106 mods->FMLHandshakeServerState$2:HELLO
[23:18:06] [Netty Server IO #3/INFO] [FML/]: Client attempting to join with 106 mods : [email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],guideapi@@VERSION@,[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],mtlib@@VERSION@,[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],OpenComputers|[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],fastleafdecay@v11,[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected]_beta,[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected]_for_1.9,[email protected],[email protected],[email protected]
[23:18:06] [Netty Server IO #3/DEBUG] [FML/]:   Next: WAITINGCACK
[23:18:06] [Netty Local Client IO #1/DEBUG] [FML/]:   Next: WAITINGSERVERDATA
[23:18:06] [Netty Local Client IO #1/DEBUG] [FML/]: FMLHandshakeClientState: $ModList:106 mods->FMLHandshakeClientState$3:WAITINGSERVERDATA
[23:18:06] [Netty Server IO #3/DEBUG] [FML/]: FMLHandshakeServerState: $HandshakeAck:{2}->FMLHandshakeServerState$3:WAITINGCACK
[23:18:06] [Netty Local Client IO #1/DEBUG] [FML/]:   Next: PENDINGCOMPLETE
[23:18:06] [Netty Local Client IO #1/DEBUG] [FML/]: FMLHandshakeClientState: $HandshakeAck:{2}->FMLHandshakeClientState$5:PENDINGCOMPLETE
[23:18:06] [Netty Local Client IO #1/DEBUG] [FML/]:   Next: COMPLETE
[23:18:06] [Netty Server IO #3/DEBUG] [FML/]:   Next: COMPLETE
[23:18:06] [Netty Server IO #3/DEBUG] [FML/]: FMLHandshakeServerState: $HandshakeAck:{4}->FMLHandshakeServerState$4:COMPLETE
[23:18:06] [Netty Server IO #3/DEBUG] [FML/]:   Next: DONE
[23:18:06] [Netty Local Client IO #1/DEBUG] [FML/]: The fluid tconstruct:alubrass has been selected as the default fluid for alubrass
[23:18:06] [Netty Local Client IO #1/DEBUG] [FML/]: The fluid gendustry:mutagen has been selected as the default fluid for mutagen
[23:18:06] [Netty Local Client IO #1/DEBUG] [FML/]: The fluid Mekanism:brine has been selected as the default fluid for brine
[23:18:06] [Netty Local Client IO #1/DEBUG] [FML/]: The fluid EnderIO:xpjuice has been selected as the default fluid for xpjuice
[23:18:06] [Netty Local Client IO #1/DEBUG] [FML/]: The fluid immersiveengineering:biodiesel has been selected as the default fluid for biodiesel
[23:18:06] [Netty Local Client IO #1/DEBUG] [FML/]: The fluid Mekanism:tritium has been selected as the default fluid for tritium
[23:18:06] [Netty Local Client IO #1/DEBUG] [FML/]: The fluid EnderIO:rocket_fuel has been selected as the default fluid for rocket_fuel
[23:18:06] [Netty Local Client IO #1/DEBUG] [FML/]: The fluid forestry:seed.oil has been selected as the default fluid for seed.oil
[23:18:06] [Netty Local Client IO #1/DEBUG] [FML/]: The fluid IC2:ic2uu_matter has been selected as the default fluid for ic2uu_matter
[23:18:06] [Netty Local Client IO #1/DEBUG] [FML/]: The fluid techreborn:fluidnitrofuel has been selected as the default fluid for fluidnitrofuel
[23:18:06] [Netty Local Client IO #1/DEBUG] [FML/]: The fluid tconstruct:brass has been selected as the default fluid for brass
[23:18:06] [Netty Local Client IO #1/DEBUG] [FML/]: The fluid gendustry:protein has been selected as the default fluid for protein
[23:18:06] [Netty Local Client IO #1/DEBUG] [FML/]: The fluid immersiveengineering:uranium has been selected as the default fluid for uranium
[23:18:06] [Netty Local Client IO #1/DEBUG] [FML/]: The fluid techreborn:fluidhelium3 has been selected as the default fluid for fluidhelium3
[23:18:06] [Netty Local Client IO #1/DEBUG] [FML/]: The fluid immersiveengineering:constantan has been selected as the default fluid for constantan
[23:18:06] [Netty Local Client IO #1/DEBUG] [FML/]: The fluid bigreactors:fuelcolumn has been selected as the default fluid for fuelcolumn
[23:18:06] [Netty Local Client IO #1/DEBUG] [FML/]: The fluid actuallyadditions:crystaloil has been selected as the default fluid for crystaloil
[23:18:06] [Netty Local Client IO #1/DEBUG] [FML/]: The fluid EnderIO:fire_water has been selected as the default fluid for fire_water
[23:18:06] [Netty Local Client IO #1/DEBUG] [FML/]: The fluid forestry:bio.ethanol has been selected as the default fluid for bio.ethanol
[23:18:06] [Netty Local Client IO #1/DEBUG] [FML/]: The fluid Mekanism:sulfurdioxidegas has been selected as the default fluid for sulfurdioxidegas
[23:18:06] [Netty Local Client IO #1/DEBUG] [FML/]: The fluid techreborn:fluidsodiumsulfide has been selected as the default fluid for fluidsodiumsulfide
[23:18:06] [Netty Local Client IO #1/DEBUG] [FML/]: The fluid techreborn:fluidsodium has been selected as the default fluid for fluidsodium
[23:18:06] [Netty Local Client IO #1/DEBUG] [FML/]: The fluid techreborn:fluidcarbonfiber has been selected as the default fluid for fluidcarbonfiber
[23:18:06] [Netty Local Client IO #1/DEBUG] [FML/]: The fluid forestry:short.mead has been selected as the default fluid for short.mead
[23:18:06] [Netty Local Client IO #1/DEBUG] [FML/]: The fluid techreborn:fluidwolframium has been selected as the default fluid for fluidwolframium
[23:18:06] [Netty Local Client IO #1/DEBUG] [FML/]: The fluid forestry:juice has been selected as the default fluid for juice
[23:18:06] [Netty Local Client IO #1/DEBUG] [FML/]: The fluid tconstruct:nickel has been selected as the default fluid for nickel
[23:18:06] [Netty Local Client IO #1/DEBUG] [FML/]: The fluid Mekanism:ethene has been selected as the default fluid for ethene
[23:18:06] [Netty Local Client IO #1/DEBUG] [FML/]: The fluid tconstruct:glass has been selected as the default fluid for glass
[23:18:06] [Netty Local Client IO #1/DEBUG] [FML/]: The fluid deepresonance:liquid_crystal has been selected as the default fluid for liquid_crystal
[23:18:06] [Netty Local Client IO #1/DEBUG] [FML/]: The fluid Mekanism:heavywater has been selected as the default fluid for heavywater
[23:18:06] [Netty Local Client IO #1/DEBUG] [FML/]: The fluid tconstruct:manyullyn has been selected as the default fluid for manyullyn
[23:18:06] [Netty Local Client IO #1/DEBUG] [FML/]: The fluid IC2:ic2biomass has been selected as the default fluid for ic2biomass
[23:18:06] [Netty Local Client IO #1/DEBUG] [FML/]: The fluid gendustry:liquiddna has been selected as the default fluid for liquiddna
[23:18:06] [Netty Local Client IO #1/DEBUG] [FML/]: The fluid Mekanism:chlorine has been selected as the default fluid for chlorine
[23:18:06] [Netty Local Client IO #1/DEBUG] [FML/]: The fluid IC2:ic2steam has been selected as the default fluid for ic2steam
[23:18:06] [Netty Local Client IO #1/DEBUG] [FML/]: The fluid techreborn:fluidoil has been selected as the default fluid for fluidoil
[23:18:06] [Netty Local Client IO #1/DEBUG] [FML/]: The fluid techreborn:fluidmercury has been selected as the default fluid for fluidmercury
[23:18:06] [Netty Local Client IO #1/DEBUG] [FML/]: The fluid techreborn:fluidsulfur has been selected as the default fluid for fluidsulfur
[23:18:06] [Netty Local Client IO #1/DEBUG] [FML/]: The fluid IC2:ic2superheated_steam has been selected as the default fluid for ic2superheated_steam
[23:18:06] [Netty Local Client IO #1/DEBUG] [FML/]: The fluid EnderIO:cloud_seed_concentrated has been selected as the default fluid for cloud_seed_concentrated
[23:18:06] [Netty Local Client IO #1/DEBUG] [FML/]: The fluid tconstruct:milk has been selected as the default fluid for milk
[23:18:06] [Netty Local Client IO #1/DEBUG] [FML/]: The fluid techreborn:platinum has been selected as the default fluid for platinum
[23:18:06] [Netty Local Client IO #1/DEBUG] [FML/]: The fluid IC2:ic2coolant has been selected as the default fluid for ic2coolant
[23:18:06] [Netty Local Client IO #1/DEBUG] [FML/]: The fluid Mekanism:hydrogenchloride has been selected as the default fluid for hydrogenchloride
[23:18:06] [Netty Local Client IO #1/DEBUG] [FML/]: The fluid techreborn:fluidnitrogen has been selected as the default fluid for fluidnitrogen
[23:18:06] [Netty Local Client IO #1/DEBUG] [FML/]: The fluid IC2:ic2pahoehoe_lava has been selected as the default fluid for ic2pahoehoe_lava
[23:18:06] [Netty Local Client IO #1/DEBUG] [FML/]: The fluid tconstruct:knightslime has been selected as the default fluid for knightslime
[23:18:06] [Netty Local Client IO #1/DEBUG] [FML/]: The fluid forestry:ice has been selected as the default fluid for ice
[23:18:06] [Netty Local Client IO #1/DEBUG] [FML/]: The fluid techreborn:fluidberylium has been selected as the default fluid for fluidberylium
[23:18:06] [Netty Local Client IO #1/DEBUG] [FML/]: The fluid techreborn:fluidcarbon has been selected as the default fluid for fluidcarbon
[23:18:06] [Netty Local Client IO #1/DEBUG] [FML/]: The fluid techreborn:titanium has been selected as the default fluid for titanium
[23:18:06] [Netty Local Client IO #1/DEBUG] [FML/]: The fluid tconstruct:blood has been selected as the default fluid for blood
[23:18:06] [Netty Local Client IO #1/DEBUG] [FML/]: The fluid IC2:ic2hot_water has been selected as the default fluid for ic2hot_water
[23:18:06] [Netty Local Client IO #1/DEBUG] [FML/]: The fluid IC2:ic2construction_foam has been selected as the default fluid for ic2construction_foam
[23:18:06] [Netty Local Client IO #1/DEBUG] [FML/]: The fluid Mekanism:oxygen has been selected as the default fluid for oxygen
[23:18:06] [Netty Local Client IO #1/DEBUG] [FML/]: The fluid EnderIO:nutrient_distillation has been selected as the default fluid for nutrient_distillation
[23:18:06] [Netty Local Client IO #1/DEBUG] [FML/]: The fluid techreborn:chrome has been selected as the default fluid for chrome
[23:18:06] [Netty Local Client IO #1/DEBUG] [FML/]: The fluid techreborn:fluidtritium has been selected as the default fluid for fluidtritium
[23:18:06] [Netty Local Client IO #1/DEBUG] [FML/]: The fluid Mekanism:sulfuricacid has been selected as the default fluid for sulfuricacid
[23:18:06] [Netty Local Client IO #1/DEBUG] [FML/]: The fluid forestry:biomass has been selected as the default fluid for biomass
[23:18:06] [Netty Local Client IO #1/DEBUG] [FML/]: The fluid minecraft:lava has been selected as the default fluid for lava
[23:18:06] [Netty Local Client IO #1/DEBUG] [FML/]: The fluid IC2:ic2heavy_water has been selected as the default fluid for ic2heavy_water
[23:18:06] [Netty Local Client IO #1/DEBUG] [FML/]: The fluid IC2:ic2distilled_water has been selected as the default fluid for ic2distilled_water
[23:18:06] [Netty Local Client IO #1/DEBUG] [FML/]: The fluid tconstruct:emerald has been selected as the default fluid for emerald
[23:18:06] [Netty Local Client IO #1/DEBUG] [FML/]: The fluid Mekanism:sodium has been selected as the default fluid for sodium
[23:18:06] [Netty Local Client IO #1/DEBUG] [FML/]: The fluid tconstruct:zinc has been selected as the default fluid for zinc
[23:18:06] [Netty Local Client IO #1/DEBUG] [FML/]: The fluid techreborn:fluidnitrodiesel has been selected as the default fluid for fluidnitrodiesel
[23:18:06] [Netty Local Client IO #1/DEBUG] [FML/]: The fluid tconstruct:blueslime has been selected as the default fluid for blueslime
[23:18:06] [Netty Local Client IO #1/DEBUG] [FML/]: The fluid bigreactors:yellorium has been selected as the default fluid for yellorium
[23:18:06] [Netty Local Client IO #1/DEBUG] [FML/]: The fluid tconstruct:lead has been selected as the default fluid for lead
[23:18:06] [Netty Local Client IO #1/DEBUG] [FML/]: The fluid techreborn:invar has been selected as the default fluid for invar
[23:18:06] [Netty Local Client IO #1/DEBUG] [FML/]: The fluid actuallyadditions:empoweredoil has been selected as the default fluid for empoweredoil
[23:18:06] [Netty Local Client IO #1/DEBUG] [FML/]: The fluid techreborn:fluidlithium has been selected as the default fluid for fluidlithium
[23:18:06] [Netty Local Client IO #1/DEBUG] [FML/]: The fluid techreborn:iridium has been selected as the default fluid for iridium
[23:18:06] [Netty Local Client IO #1/DEBUG] [FML/]: The fluid tconstruct:gold has been selected as the default fluid for gold
[23:18:06] [Netty Local Client IO #1/DEBUG] [FML/]: The fluid tconstruct:clay has been selected as the default fluid for clay
[23:18:06] [Netty Local Client IO #1/DEBUG] [FML/]: The fluid techreborn:fluidnitrogendioxide has been selected as the default fluid for fluidnitrogendioxide
[23:18:06] [Netty Local Client IO #1/DEBUG] [FML/]: The fluid minecraft:water has been selected as the default fluid for water
[23:18:06] [Netty Local Client IO #1/DEBUG] [FML/]: The fluid tconstruct:electrum has been selected as the default fluid for electrum
[23:18:06] [Netty Local Client IO #1/DEBUG] [FML/]: The fluid BloodMagic:lifeessence has been selected as the default fluid for lifeessence
[23:18:06] [Netty Local Client IO #1/DEBUG] [FML/]: The fluid tconstruct:purpleslime has been selected as the default fluid for purpleslime
[23:18:06] [Netty Local Client IO #1/DEBUG] [FML/]: The fluid EnderIO:vapor_of_levity has been selected as the default fluid for vapor_of_levity
[23:18:06] [Netty Local Client IO #1/DEBUG] [FML/]: The fluid techreborn:fluidcalciumcarbonate has been selected as the default fluid for fluidcalciumcarbonate
[23:18:06] [Netty Local Client IO #1/DEBUG] [FML/]: The fluid actuallyadditions:oil has been selected as the default fluid for oil
[23:18:06] [Netty Local Client IO #1/DEBUG] [FML/]: The fluid techreborn:fluidhydrogen has been selected as the default fluid for fluidhydrogen
[23:18:06] [Netty Local Client IO #1/DEBUG] [FML/]: The fluid tconstruct:pigiron has been selected as the default fluid for pigiron
[23:18:06] [Netty Local Client IO #1/DEBUG] [FML/]: The fluid tconstruct:cobalt has been selected as the default fluid for cobalt
[23:18:06] [Netty Local Client IO #1/DEBUG] [FML/]: The fluid techreborn:fluidsulfuricacid has been selected as the default fluid for fluidsulfuricacid
[23:18:06] [Netty Local Client IO #1/DEBUG] [FML/]: The fluid techreborn:fluiddeuterium has been selected as the default fluid for fluiddeuterium
[23:18:06] [Netty Local Client IO #1/DEBUG] [FML/]: The fluid immersiveengineering:ethanol has been selected as the default fluid for ethanol
[23:18:06] [Netty Local Client IO #1/DEBUG] [FML/]: The fluid tconstruct:aluminum has been selected as the default fluid for aluminum
[23:18:06] [Netty Local Client IO #1/DEBUG] [FML/]: The fluid tconstruct:dirt has been selected as the default fluid for dirt
[23:18:06] [Netty Local Client IO #1/DEBUG] [FML/]: The fluid Mekanism:lithium has been selected as the default fluid for lithium
[23:18:06] [Netty Local Client IO #1/DEBUG] [FML/]: The fluid tconstruct:obsidian has been selected as the default fluid for obsidian
[23:18:06] [Netty Local Client IO #1/DEBUG] [FML/]: The fluid tconstruct:stone has been selected as the default fluid for stone
[23:18:06] [Netty Local Client IO #1/DEBUG] [FML/]: The fluid techreborn:fluidsilicon has been selected as the default fluid for fluidsilicon
[23:18:06] [Netty Local Client IO #1/DEBUG] [FML/]: The fluid EnderIO:cloud_seed has been selected as the default fluid for cloud_seed
[23:18:06] [Netty Local Client IO #1/DEBUG] [FML/]: The fluid techreborn:fluidheliumplasma has been selected as the default fluid for fluidheliumplasma
[23:18:06] [Netty Local Client IO #1/DEBUG] [FML/]: The fluid techreborn:fluidcalcium has been selected as the default fluid for fluidcalcium
[23:18:06] [Netty Local Client IO #1/DEBUG] [FML/]: The fluid techreborn:fluidnitrocoalfuel has been selected as the default fluid for fluidnitrocoalfuel
[23:18:06] [Netty Local Client IO #1/DEBUG] [FML/]: The fluid actuallyadditions:canolaoil has been selected as the default fluid for canolaoil
[23:18:06] [Netty Local Client IO #1/DEBUG] [FML/]: The fluid techreborn:fluidsodiumpersulfate has been selected as the default fluid for fluidsodiumpersulfate
[23:18:06] [Netty Local Client IO #1/DEBUG] [FML/]: The fluid IC2:ic2hot_coolant has been selected as the default fluid for ic2hot_coolant
[23:18:06] [Netty Local Client IO #1/DEBUG] [FML/]: The fluid Mekanism:sulfurtrioxidegas has been selected as the default fluid for sulfurtrioxidegas
[23:18:06] [Netty Local Client IO #1/DEBUG] [FML/]: The fluid tconstruct:steel has been selected as the default fluid for steel
[23:18:06] [Netty Local Client IO #1/DEBUG] [FML/]: The fluid IC2:ic2oxygen has been selected as the default fluid for ic2oxygen
[23:18:06] [Netty Local Client IO #1/DEBUG] [FML/]: The fluid techreborn:fluidglyceryl has been selected as the default fluid for fluidglyceryl
[23:18:06] [Netty Local Client IO #1/DEBUG] [FML/]: The fluid techreborn:fluidchlorite has been selected as the default fluid for fluidchlorite
[23:18:06] [Netty Local Client IO #1/DEBUG] [FML/]: The fluid techreborn:fluidpotassium has been selected as the default fluid for fluidpotassium
[23:18:06] [Netty Local Client IO #1/DEBUG] [FML/]: The fluid Mekanism:steam has been selected as the default fluid for steam
[23:18:06] [Netty Local Client IO #1/DEBUG] [FML/]: The fluid techreborn:fluidhelium has been selected as the default fluid for fluidhelium
[23:18:06] [Netty Local Client IO #1/DEBUG] [FML/]: The fluid bigreactors:cyanite has been selected as the default fluid for cyanite
[23:18:06] [Netty Local Client IO #1/DEBUG] [FML/]: The fluid Mekanism:deuterium has been selected as the default fluid for deuterium
[23:18:06] [Netty Local Client IO #1/DEBUG] [FML/]: The fluid multistorage:multistorage:concrete has been selected as the default fluid for multistorage:concrete
[23:18:06] [Netty Local Client IO #1/DEBUG] [FML/]: The fluid IC2:ic2air has been selected as the default fluid for ic2air
[23:18:06] [Netty Local Client IO #1/DEBUG] [FML/]: The fluid immersiveengineering:creosote has been selected as the default fluid for creosote
[23:18:06] [Netty Local Client IO #1/DEBUG] [FML/]: The fluid tconstruct:bronze has been selected as the default fluid for bronze
[23:18:06] [Netty Local Client IO #1/DEBUG] [FML/]: The fluid EnderIO:hootch has been selected as the default fluid for hootch
[23:18:06] [Netty Local Client IO #1/DEBUG] [FML/]: The fluid tconstruct:iron has been selected as the default fluid for iron
[23:18:06] [Netty Local Client IO #1/DEBUG] [FML/]: The fluid tconstruct:ardite has been selected as the default fluid for ardite
[23:18:06] [Netty Local Client IO #1/DEBUG] [FML/]: The fluid tconstruct:tin has been selected as the default fluid for tin
[23:18:06] [Netty Local Client IO #1/DEBUG] [FML/]: The fluid IC2:ic2hydrogen has been selected as the default fluid for ic2hydrogen
[23:18:06] [Netty Local Client IO #1/DEBUG] [FML/]: The fluid EnderIO:ender_distillation has been selected as the default fluid for ender_distillation
[23:18:06] [Netty Local Client IO #1/DEBUG] [FML/]: The fluid Mekanism:hydrogen has been selected as the default fluid for hydrogen
[23:18:06] [Netty Local Client IO #1/DEBUG] [FML/]: The fluid tconstruct:copper has been selected as the default fluid for copper
[23:18:06] [Netty Local Client IO #1/DEBUG] [FML/]: The fluid techreborn:fluiddiesel has been selected as the default fluid for fluiddiesel
[23:18:06] [Netty Local Client IO #1/DEBUG] [FML/]: The fluid tconstruct:silver has been selected as the default fluid for silver
[23:18:06] [Netty Local Client IO #1/DEBUG] [FML/]: The fluid techreborn:fluidnitrocarbon has been selected as the default fluid for fluidnitrocarbon
[23:18:06] [Netty Local Client IO #1/DEBUG] [FML/]: The fluid IC2:ic2weed_ex has been selected as the default fluid for ic2weed_ex
[23:18:06] [Netty Local Client IO #1/DEBUG] [FML/]: The fluid Mekanism:fusionfueldt has been selected as the default fluid for fusionfueldt
[23:18:06] [Netty Local Client IO #1/DEBUG] [FML/]: The fluid techreborn:tungsten has been selected as the default fluid for tungsten
[23:18:06] [Netty Local Client IO #1/DEBUG] [FML/]: The fluid IC2:ic2biogas has been selected as the default fluid for ic2biogas
[23:18:06] [Netty Local Client IO #1/DEBUG] [FML/]: The fluid techreborn:fluidmethane has been selected as the default fluid for fluidmethane
[23:18:06] [Netty Local Client IO #1/DEBUG] [FML/]: The fluid immersiveengineering:plantoil has been selected as the default fluid for plantoil
[23:18:06] [Netty Local Client IO #1/DEBUG] [FML/]: The fluid EnderIO:liquid_sunshine has been selected as the default fluid for liquid_sunshine
[23:18:06] [Netty Local Client IO #1/DEBUG] [FML/]: The fluid forestry:for.honey has been selected as the default fluid for for.honey
[23:18:06] [Netty Local Client IO #1/DEBUG] [FML/]: FMLHandshakeClientState: $HandshakeAck:{3}->FMLHandshakeClientState$6:COMPLETE
[23:18:06] [Netty Local Client IO #1/DEBUG] [FML/]:   Next: DONE
[23:18:06] [Netty Server IO #3/DEBUG] [FML/]: FMLHandshakeServerState: $HandshakeAck:{5}->FMLHandshakeServerState$5:DONE
[23:18:06] [Netty Server IO #3/DEBUG] [FML/]:   Next: DONE
[23:18:06] [Netty Local Client IO #1/INFO] [FML/]: [Netty Local Client IO #1] Client side modded connection established
[23:18:06] [server thread/INFO] [FML/]: [server thread] Server side modded connection established
[23:18:06] [server thread/INFO] [mcjty.lib.varia.Logging/]: SMP: Sync dimensions to client
[23:18:06] [Netty Local Client IO #1/INFO] [mcjty.lib.varia.Logging/]: DimensionSyncPacket: Registering: 
[23:18:06] [server thread/INFO] [EnderCore/]: Sending server configs to client for com.enderio.core.common.config.ConfigHandler
[23:18:06] [Client thread/DEBUG] [FML/]: Overriding dimension: using 0
[23:18:06] [server thread/DEBUG] [ExtraUtils2/]: OTL: Check Packet SERVER

[23:18:06] [server thread/DEBUG] [ExtraUtils2/]: OTL: Encode Packet: com.rwtema.extrautils2.items.ItemLawSword$PacketLawSwordNotifier
[23:18:06] [server thread/INFO] [Actually Additions/]: Sending Player Data to player DrDeathman with UUID ee43e215-4bc0-42ef-b79a-9a9227dc602d.
[23:18:06] [server thread/INFO] [Mekanism/]: Sent config to 'TextComponent{text='', siblings=[TextComponent{text='DrDeathman', siblings=[], style=Style{hasParent=true, color=null, bold=null, italic=null, underlined=null, obfuscated=null, clickEvent=ClickEvent{action=SUGGEST_COMMAND, value='/msg DrDeathman '}, hoverEvent=HoverEvent{action=SHOW_ENTITY, value='TextComponent{text='{name:"DrDeathman",id:"ee43e215-4bc0-42ef-b79a-9a9227dc602d"}', siblings=[], style=Style{hasParent=false, color=null, bold=null, italic=null, underlined=null, obfuscated=null, clickEvent=null, hoverEvent=null, insertion=null}}'}, insertion=DrDeathman}}], style=Style{hasParent=false, color=null, bold=null, italic=null, underlined=null, obfuscated=null, clickEvent=ClickEvent{action=SUGGEST_COMMAND, value='/msg DrDeathman '}, hoverEvent=HoverEvent{action=SHOW_ENTITY, value='TextComponent{text='{name:"DrDeathman",id:"ee43e215-4bc0-42ef-b79a-9a9227dc602d"}', siblings=[], style=Style{hasParent=false, color=null, bold=null, italic=null, underlined=null, obfuscated=null, clickEvent=null, hoverEvent=null, insertion=null}}'}, insertion=DrDeathman}}.'
[23:18:06] [server thread/INFO] [mcjty.lib.varia.Logging/]: SMP: Player logged in: Sync diminfo to clients
[23:18:06] [server thread/INFO] [mcjty.lib.varia.Logging/]: Sync dimension info to clients!
[23:18:06] [server thread/INFO] [sTDOUT/]: [mcjty.rftoolsdim.dimensions.RfToolsDimensionManager:syncDimInfoToClients:261]: dimensions.size() = 0
[23:18:06] [server thread/INFO] [sTDOUT/]: [mcjty.rftoolsdim.dimensions.RfToolsDimensionManager:syncDimInfoToClients:262]: dimensionInformation.size() = 0
[23:18:06] [server thread/INFO] [mcjty.lib.varia.Logging/]: Send dimlet rules to the client
[23:18:06] [server thread/INFO] [mcjty.lib.varia.Logging/]: Rules packet size: 5598 of 8192
[23:18:06] [server thread/INFO] [sTDOUT/]: [mcjty.lib.preferences.PreferencesProperties:syncToClient:31]: syncToClient: style = STYLE_FLAT_GRADIENT
[23:18:06] [server thread/DEBUG] [ExtraUtils2/]: OTL: Encode Packet: com.rwtema.extrautils2.power.PowerManager$PacketPower
[23:18:14] [Client thread/DEBUG] [EnderCore/]: Skipping syncing field com.enderio.core.common.config.ConfigHandler.showRegistryNameTooltips as it was marked NoSync
[23:18:14] [Client thread/DEBUG] [EnderCore/]: Skipping syncing field com.enderio.core.common.config.ConfigHandler.showOredictTooltips as it was marked NoSync
[23:18:14] [Client thread/DEBUG] [EnderCore/]: Skipping syncing field com.enderio.core.common.config.ConfigHandler.showDurabilityTooltips as it was marked NoSync
[23:18:14] [Netty Local Client IO #1/DEBUG] [ExtraUtils2/]: OTL: Decode Packet: com.rwtema.extrautils2.items.ItemLawSword$PacketLawSwordNotifier
[23:18:14] [Netty Local Client IO #1/DEBUG] [ExtraUtils2/]: OTL: Handle Packet: com.rwtema.extrautils2.items.ItemLawSword$PacketLawSwordNotifier : CLIENT
[23:18:14] [Netty Local Client IO #1/INFO] [Mekanism/]: Received config from server.
[23:18:14] [Netty Local Client IO #1/INFO] [Mekanism/]: Received Cardboard Box blacklist entries from server (15 total)
[23:18:14] [Netty Local Client IO #1/DEBUG] [ExtraUtils2/]: OTL: Decode Packet: com.rwtema.extrautils2.power.PowerManager$PacketPower
[23:18:14] [Netty Local Client IO #1/DEBUG] [ExtraUtils2/]: OTL: Handle Packet: com.rwtema.extrautils2.power.PowerManager$PacketPower : CLIENT
[23:18:14] [Netty Server IO #3/DEBUG] [ExtraUtils2/]: OTL: Decode Packet: com.rwtema.extrautils2.network.packets.PacketUseItemAlt
[23:18:14] [Netty Server IO #3/DEBUG] [ExtraUtils2/]: OTL: Handle Packet: com.rwtema.extrautils2.network.packets.PacketUseItemAlt : SERVER
[23:18:14] [Client thread/INFO] [FTBLib/]: Current Mode: default
[23:18:14] [Client thread/INFO] [Actually Additions/]: Receiving Player Data for current player with UUID ee43e215-4bc0-42ef-b79a-9a9227dc602d.
[23:18:14] [Client thread/INFO] [mcjty.lib.varia.Logging/]: Received dimension information from server
[23:18:14] [Client thread/INFO] [sTDOUT/]: [mcjty.rftoolsdim.dimensions.RfToolsDimensionManager:syncFromServer:45]: RfToolsDimensionManager.syncFromServer
[23:18:14] [Client thread/INFO] [mcjty.lib.varia.Logging/]: Received dimlet rules from server
[23:18:14] [Client thread/INFO] [sTDOUT/]: [mcjty.lib.network.SendPreferencesToClientHelper:setPreferences:17]: setPreferences: prefs.getStyle() = STYLE_FLAT_GRADIENT
[23:18:14] [server thread/DEBUG] [FML/]: Gathering id map for writing to world save New World
[23:18:15] [Client thread/WARN] [journeymap/]: core (Initialized) Bad configField entry during updateFrom(): optionsManagerViewed=null
[23:18:15] [Client thread/INFO] [journeymap/]: Loading journeymap.topo.config
[23:18:15] [Client thread/INFO] [journeymap/]: Loaded 0 waypoints from C:\Users\keega\Documents\Curse\Minecraft\Instances\FTB Presents HermitPack\journeymap\data\sp\New World\waypoints
[23:18:15] [Client thread/INFO] [journeymap/]: Loading blocks and textures...
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockPillar1[axis=x,type=raw]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockPillar1[axis=x,type=corrosive]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockPillar1[axis=x,type=destructive]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockPillar1[axis=x,type=vengeful]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockPillar1[axis=x,type=steadfast]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockPillar1[axis=z,type=raw]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockPillar1[axis=z,type=corrosive]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockPillar1[axis=z,type=destructive]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockPillar1[axis=z,type=vengeful]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockPillar1[axis=z,type=steadfast]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockPillar2[axis=x,type=raw]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockPillar2[axis=x,type=corrosive]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockPillar2[axis=x,type=destructive]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockPillar2[axis=x,type=vengeful]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockPillar2[axis=x,type=steadfast]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockPillar2[axis=z,type=raw]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockPillar2[axis=z,type=corrosive]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockPillar2[axis=z,type=destructive]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockPillar2[axis=z,type=vengeful]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockPillar2[axis=z,type=steadfast]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockPillarCap1[facing=up,type=raw]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockPillarCap1[facing=up,type=corrosive]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockPillarCap1[facing=north,type=raw]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockPillarCap1[facing=north,type=corrosive]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockPillarCap1[facing=south,type=raw]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockPillarCap1[facing=south,type=corrosive]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockPillarCap1[facing=west,type=raw]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockPillarCap1[facing=west,type=corrosive]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockPillarCap1[facing=east,type=raw]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockPillarCap1[facing=east,type=corrosive]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockPillarCap2[facing=up,type=destructive]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockPillarCap2[facing=up,type=vengeful]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockPillarCap2[facing=north,type=destructive]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockPillarCap2[facing=north,type=vengeful]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockPillarCap2[facing=south,type=destructive]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockPillarCap2[facing=south,type=vengeful]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockPillarCap2[facing=west,type=destructive]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockPillarCap2[facing=west,type=vengeful]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockPillarCap2[facing=east,type=destructive]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockPillarCap2[facing=east,type=vengeful]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockPillarCap3[facing=up,type=steadfast]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockPillarCap3[facing=north,type=steadfast]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockPillarCap3[facing=south,type=steadfast]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockPillarCap3[facing=west,type=steadfast]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockPillarCap3[facing=east,type=steadfast]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs1[facing=west,half=bottom,shape=straight,type=raw]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs1[facing=west,half=bottom,shape=inner_left,type=raw]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs1[facing=west,half=bottom,shape=inner_right,type=raw]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs1[facing=west,half=bottom,shape=outer_left,type=raw]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs1[facing=west,half=bottom,shape=outer_right,type=raw]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs1[facing=west,half=bottom,shape=straight,type=corrosive]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs1[facing=west,half=bottom,shape=inner_left,type=corrosive]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs1[facing=west,half=bottom,shape=inner_right,type=corrosive]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs1[facing=west,half=bottom,shape=outer_left,type=corrosive]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs1[facing=west,half=bottom,shape=outer_right,type=corrosive]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs1[facing=south,half=bottom,shape=straight,type=raw]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs1[facing=south,half=bottom,shape=inner_left,type=raw]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs1[facing=south,half=bottom,shape=inner_right,type=raw]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs1[facing=south,half=bottom,shape=outer_left,type=raw]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs1[facing=south,half=bottom,shape=outer_right,type=raw]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs1[facing=south,half=bottom,shape=straight,type=corrosive]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs1[facing=south,half=bottom,shape=inner_left,type=corrosive]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs1[facing=south,half=bottom,shape=inner_right,type=corrosive]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs1[facing=south,half=bottom,shape=outer_left,type=corrosive]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs1[facing=south,half=bottom,shape=outer_right,type=corrosive]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs1[facing=north,half=bottom,shape=straight,type=raw]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs1[facing=north,half=bottom,shape=inner_left,type=raw]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs1[facing=north,half=bottom,shape=inner_right,type=raw]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs1[facing=north,half=bottom,shape=outer_left,type=raw]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs1[facing=north,half=bottom,shape=outer_right,type=raw]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs1[facing=north,half=bottom,shape=straight,type=corrosive]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs1[facing=north,half=bottom,shape=inner_left,type=corrosive]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs1[facing=north,half=bottom,shape=inner_right,type=corrosive]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs1[facing=north,half=bottom,shape=outer_left,type=corrosive]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs1[facing=north,half=bottom,shape=outer_right,type=corrosive]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs1[facing=east,half=top,shape=straight,type=raw]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs1[facing=east,half=top,shape=inner_left,type=raw]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs1[facing=east,half=top,shape=inner_right,type=raw]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs1[facing=east,half=top,shape=outer_left,type=raw]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs1[facing=east,half=top,shape=outer_right,type=raw]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs1[facing=east,half=top,shape=straight,type=corrosive]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs1[facing=east,half=top,shape=inner_left,type=corrosive]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs1[facing=east,half=top,shape=inner_right,type=corrosive]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs1[facing=east,half=top,shape=outer_left,type=corrosive]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs1[facing=east,half=top,shape=outer_right,type=corrosive]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs1[facing=west,half=top,shape=straight,type=raw]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs1[facing=west,half=top,shape=inner_left,type=raw]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs1[facing=west,half=top,shape=inner_right,type=raw]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs1[facing=west,half=top,shape=outer_left,type=raw]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs1[facing=west,half=top,shape=outer_right,type=raw]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs1[facing=west,half=top,shape=straight,type=corrosive]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs1[facing=west,half=top,shape=inner_left,type=corrosive]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs1[facing=west,half=top,shape=inner_right,type=corrosive]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs1[facing=west,half=top,shape=outer_left,type=corrosive]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs1[facing=west,half=top,shape=outer_right,type=corrosive]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs1[facing=south,half=top,shape=straight,type=raw]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs1[facing=south,half=top,shape=inner_left,type=raw]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs1[facing=south,half=top,shape=inner_right,type=raw]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs1[facing=south,half=top,shape=outer_left,type=raw]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs1[facing=south,half=top,shape=outer_right,type=raw]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs1[facing=south,half=top,shape=straight,type=corrosive]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs1[facing=south,half=top,shape=inner_left,type=corrosive]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs1[facing=south,half=top,shape=inner_right,type=corrosive]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs1[facing=south,half=top,shape=outer_left,type=corrosive]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs1[facing=south,half=top,shape=outer_right,type=corrosive]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs1[facing=north,half=top,shape=straight,type=raw]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs1[facing=north,half=top,shape=inner_left,type=raw]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs1[facing=north,half=top,shape=inner_right,type=raw]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs1[facing=north,half=top,shape=outer_left,type=raw]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs1[facing=north,half=top,shape=outer_right,type=raw]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs1[facing=north,half=top,shape=straight,type=corrosive]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs1[facing=north,half=top,shape=inner_left,type=corrosive]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs1[facing=north,half=top,shape=inner_right,type=corrosive]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs1[facing=north,half=top,shape=outer_left,type=corrosive]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs1[facing=north,half=top,shape=outer_right,type=corrosive]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs2[facing=west,half=bottom,shape=straight,type=destructive]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs2[facing=west,half=bottom,shape=inner_left,type=destructive]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs2[facing=west,half=bottom,shape=inner_right,type=destructive]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs2[facing=west,half=bottom,shape=outer_left,type=destructive]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs2[facing=west,half=bottom,shape=outer_right,type=destructive]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs2[facing=west,half=bottom,shape=straight,type=vengeful]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs2[facing=west,half=bottom,shape=inner_left,type=vengeful]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs2[facing=west,half=bottom,shape=inner_right,type=vengeful]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs2[facing=west,half=bottom,shape=outer_left,type=vengeful]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs2[facing=west,half=bottom,shape=outer_right,type=vengeful]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs2[facing=south,half=bottom,shape=straight,type=destructive]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs2[facing=south,half=bottom,shape=inner_left,type=destructive]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs2[facing=south,half=bottom,shape=inner_right,type=destructive]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs2[facing=south,half=bottom,shape=outer_left,type=destructive]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs2[facing=south,half=bottom,shape=outer_right,type=destructive]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs2[facing=south,half=bottom,shape=straight,type=vengeful]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs2[facing=south,half=bottom,shape=inner_left,type=vengeful]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs2[facing=south,half=bottom,shape=inner_right,type=vengeful]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs2[facing=south,half=bottom,shape=outer_left,type=vengeful]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs2[facing=south,half=bottom,shape=outer_right,type=vengeful]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs2[facing=north,half=bottom,shape=straight,type=destructive]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs2[facing=north,half=bottom,shape=inner_left,type=destructive]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs2[facing=north,half=bottom,shape=inner_right,type=destructive]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs2[facing=north,half=bottom,shape=outer_left,type=destructive]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs2[facing=north,half=bottom,shape=outer_right,type=destructive]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs2[facing=north,half=bottom,shape=straight,type=vengeful]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs2[facing=north,half=bottom,shape=inner_left,type=vengeful]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs2[facing=north,half=bottom,shape=inner_right,type=vengeful]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs2[facing=north,half=bottom,shape=outer_left,type=vengeful]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs2[facing=north,half=bottom,shape=outer_right,type=vengeful]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs2[facing=east,half=top,shape=straight,type=destructive]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs2[facing=east,half=top,shape=inner_left,type=destructive]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs2[facing=east,half=top,shape=inner_right,type=destructive]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs2[facing=east,half=top,shape=outer_left,type=destructive]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs2[facing=east,half=top,shape=outer_right,type=destructive]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs2[facing=east,half=top,shape=straight,type=vengeful]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs2[facing=east,half=top,shape=inner_left,type=vengeful]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs2[facing=east,half=top,shape=inner_right,type=vengeful]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs2[facing=east,half=top,shape=outer_left,type=vengeful]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs2[facing=east,half=top,shape=outer_right,type=vengeful]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs2[facing=west,half=top,shape=straight,type=destructive]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs2[facing=west,half=top,shape=inner_left,type=destructive]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs2[facing=west,half=top,shape=inner_right,type=destructive]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs2[facing=west,half=top,shape=outer_left,type=destructive]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs2[facing=west,half=top,shape=outer_right,type=destructive]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs2[facing=west,half=top,shape=straight,type=vengeful]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs2[facing=west,half=top,shape=inner_left,type=vengeful]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs2[facing=west,half=top,shape=inner_right,type=vengeful]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs2[facing=west,half=top,shape=outer_left,type=vengeful]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs2[facing=west,half=top,shape=outer_right,type=vengeful]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs2[facing=south,half=top,shape=straight,type=destructive]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs2[facing=south,half=top,shape=inner_left,type=destructive]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs2[facing=south,half=top,shape=inner_right,type=destructive]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs2[facing=south,half=top,shape=outer_left,type=destructive]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs2[facing=south,half=top,shape=outer_right,type=destructive]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs2[facing=south,half=top,shape=straight,type=vengeful]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs2[facing=south,half=top,shape=inner_left,type=vengeful]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs2[facing=south,half=top,shape=inner_right,type=vengeful]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs2[facing=south,half=top,shape=outer_left,type=vengeful]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs2[facing=south,half=top,shape=outer_right,type=vengeful]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs2[facing=north,half=top,shape=straight,type=destructive]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs2[facing=north,half=top,shape=inner_left,type=destructive]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs2[facing=north,half=top,shape=inner_right,type=destructive]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs2[facing=north,half=top,shape=outer_left,type=destructive]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs2[facing=north,half=top,shape=outer_right,type=destructive]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs2[facing=north,half=top,shape=straight,type=vengeful]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs2[facing=north,half=top,shape=inner_left,type=vengeful]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs2[facing=north,half=top,shape=inner_right,type=vengeful]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs2[facing=north,half=top,shape=outer_left,type=vengeful]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs2[facing=north,half=top,shape=outer_right,type=vengeful]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs3[facing=west,half=bottom,shape=straight,type=steadfast]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs3[facing=west,half=bottom,shape=inner_left,type=steadfast]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs3[facing=west,half=bottom,shape=inner_right,type=steadfast]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs3[facing=west,half=bottom,shape=outer_left,type=steadfast]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs3[facing=west,half=bottom,shape=outer_right,type=steadfast]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs3[facing=south,half=bottom,shape=straight,type=steadfast]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs3[facing=south,half=bottom,shape=inner_left,type=steadfast]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs3[facing=south,half=bottom,shape=inner_right,type=steadfast]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs3[facing=south,half=bottom,shape=outer_left,type=steadfast]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs3[facing=south,half=bottom,shape=outer_right,type=steadfast]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs3[facing=north,half=bottom,shape=straight,type=steadfast]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs3[facing=north,half=bottom,shape=inner_left,type=steadfast]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs3[facing=north,half=bottom,shape=inner_right,type=steadfast]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs3[facing=north,half=bottom,shape=outer_left,type=steadfast]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs3[facing=north,half=bottom,shape=outer_right,type=steadfast]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs3[facing=east,half=top,shape=straight,type=steadfast]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs3[facing=east,half=top,shape=inner_left,type=steadfast]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs3[facing=east,half=top,shape=inner_right,type=steadfast]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs3[facing=east,half=top,shape=outer_left,type=steadfast]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs3[facing=east,half=top,shape=outer_right,type=steadfast]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs3[facing=west,half=top,shape=straight,type=steadfast]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs3[facing=west,half=top,shape=inner_left,type=steadfast]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs3[facing=west,half=top,shape=inner_right,type=steadfast]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs3[facing=west,half=top,shape=outer_left,type=steadfast]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs3[facing=west,half=top,shape=outer_right,type=steadfast]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs3[facing=south,half=top,shape=straight,type=steadfast]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs3[facing=south,half=top,shape=inner_left,type=steadfast]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs3[facing=south,half=top,shape=inner_right,type=steadfast]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs3[facing=south,half=top,shape=outer_left,type=steadfast]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs3[facing=south,half=top,shape=outer_right,type=steadfast]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs3[facing=north,half=top,shape=straight,type=steadfast]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs3[facing=north,half=top,shape=inner_left,type=steadfast]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs3[facing=north,half=top,shape=inner_right,type=steadfast]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs3[facing=north,half=top,shape=outer_left,type=steadfast]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/WARN] [journeymap/]: Couldn't get display name for bloodmagic:BlockStairs3[facing=north,half=top,shape=outer_right,type=steadfast]: java.lang.ArrayIndexOutOfBoundsException 
[23:18:16] [Client thread/INFO] [journeymap/]: Existing color palette's resource packs and mod names match current loadout.
[23:18:16] [Client thread/INFO] [journeymap/]: Loaded 4995 block colors from color palette file in 14ms: C:\Users\keega\Documents\Curse\Minecraft\Instances\FTB Presents HermitPack\journeymap\colorpalette.json
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [bigreactors:turbineRotorBlade:bigreactors:turbineRotorBlade[state=hidden,tier=legacy]] ()
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [bigreactors:turbineRotorBlade:bigreactors:turbineRotorBlade[state=hidden,tier=legacy]] ()
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [bigreactors:turbineRotorBlade:bigreactors:turbineRotorBlade[state=hidden,tier=legacy]] ()
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [bigreactors:turbineRotorBlade:bigreactors:turbineRotorBlade[state=hidden,tier=legacy]] ()
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [bigreactors:turbineRotorBlade:bigreactors:turbineRotorBlade[state=hidden,tier=legacy]] ()
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [bigreactors:turbineRotorBlade:bigreactors:turbineRotorBlade[state=hidden,tier=basic]] ()
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [bigreactors:turbineRotorBlade:bigreactors:turbineRotorBlade[state=hidden,tier=basic]] ()
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [bigreactors:turbineRotorBlade:bigreactors:turbineRotorBlade[state=hidden,tier=basic]] ()
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [bigreactors:turbineRotorBlade:bigreactors:turbineRotorBlade[state=hidden,tier=basic]] ()
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [bigreactors:turbineRotorBlade:bigreactors:turbineRotorBlade[state=hidden,tier=basic]] ()
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [bigreactors:turbineRotorShaft:bigreactors:turbineRotorShaft[state=hidden,tier=legacy]] ()
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [bigreactors:turbineRotorShaft:bigreactors:turbineRotorShaft[state=hidden,tier=legacy]] ()
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [bigreactors:turbineRotorShaft:bigreactors:turbineRotorShaft[state=hidden,tier=legacy]] ()
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [bigreactors:turbineRotorShaft:bigreactors:turbineRotorShaft[state=hidden,tier=legacy]] ()
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [bigreactors:turbineRotorShaft:bigreactors:turbineRotorShaft[state=hidden,tier=legacy]] ()
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [bigreactors:turbineRotorShaft:bigreactors:turbineRotorShaft[state=hidden,tier=basic]] ()
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [bigreactors:turbineRotorShaft:bigreactors:turbineRotorShaft[state=hidden,tier=basic]] ()
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [bigreactors:turbineRotorShaft:bigreactors:turbineRotorShaft[state=hidden,tier=basic]] ()
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [bigreactors:turbineRotorShaft:bigreactors:turbineRotorShaft[state=hidden,tier=basic]] ()
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [bigreactors:turbineRotorShaft:bigreactors:turbineRotorShaft[state=hidden,tier=basic]] ()
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [bloodmagic:BlockAlchemyTable:bloodmagic:BlockAlchemyTable[direction=up,invisible=true]] ()
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [bloodmagic:BlockAlchemyTable:bloodmagic:BlockAlchemyTable[direction=up,invisible=true]] ()
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [bloodmagic:BlockAlchemyTable:bloodmagic:BlockAlchemyTable[direction=up,invisible=true]] ()
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [bloodmagic:BlockAlchemyTable:bloodmagic:BlockAlchemyTable[direction=up,invisible=true]] ()
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [bloodmagic:BlockAlchemyTable:bloodmagic:BlockAlchemyTable[direction=up,invisible=true]] ()
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [bloodmagic:BlockAlchemyTable:bloodmagic:BlockAlchemyTable[direction=north,invisible=true]] ()
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [bloodmagic:BlockAlchemyTable:bloodmagic:BlockAlchemyTable[direction=north,invisible=true]] ()
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [bloodmagic:BlockAlchemyTable:bloodmagic:BlockAlchemyTable[direction=north,invisible=true]] ()
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [bloodmagic:BlockAlchemyTable:bloodmagic:BlockAlchemyTable[direction=north,invisible=true]] ()
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [bloodmagic:BlockAlchemyTable:bloodmagic:BlockAlchemyTable[direction=north,invisible=true]] ()
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [bloodmagic:BlockAlchemyTable:bloodmagic:BlockAlchemyTable[direction=south,invisible=true]] ()
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [bloodmagic:BlockAlchemyTable:bloodmagic:BlockAlchemyTable[direction=south,invisible=true]] ()
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [bloodmagic:BlockAlchemyTable:bloodmagic:BlockAlchemyTable[direction=south,invisible=true]] ()
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [bloodmagic:BlockAlchemyTable:bloodmagic:BlockAlchemyTable[direction=south,invisible=true]] ()
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [bloodmagic:BlockAlchemyTable:bloodmagic:BlockAlchemyTable[direction=south,invisible=true]] ()
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [bloodmagic:BlockAlchemyTable:bloodmagic:BlockAlchemyTable[direction=west,invisible=true]] ()
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [bloodmagic:BlockAlchemyTable:bloodmagic:BlockAlchemyTable[direction=west,invisible=true]] ()
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [bloodmagic:BlockAlchemyTable:bloodmagic:BlockAlchemyTable[direction=west,invisible=true]] ()
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [bloodmagic:BlockAlchemyTable:bloodmagic:BlockAlchemyTable[direction=west,invisible=true]] ()
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [bloodmagic:BlockAlchemyTable:bloodmagic:BlockAlchemyTable[direction=west,invisible=true]] ()
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [bloodmagic:BlockAlchemyTable:bloodmagic:BlockAlchemyTable[direction=east,invisible=true]] ()
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [bloodmagic:BlockAlchemyTable:bloodmagic:BlockAlchemyTable[direction=east,invisible=true]] ()
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [bloodmagic:BlockAlchemyTable:bloodmagic:BlockAlchemyTable[direction=east,invisible=true]] ()
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [bloodmagic:BlockAlchemyTable:bloodmagic:BlockAlchemyTable[direction=east,invisible=true]] ()
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [bloodmagic:BlockAlchemyTable:bloodmagic:BlockAlchemyTable[direction=east,invisible=true]] ()
[23:18:17] [Client thread/ERROR] [journeymap/]: ColorHelper.getColorForIcon(): Unable to use frame data for chisel:blocks/futura/controllerpurple: Index: 0, Size: 0
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Null/empty texture for BlockMD [chisel:futura:chisel:futura[variation=4]] ()
[23:18:17] [Client thread/ERROR] [journeymap/]: Resource not usable as image: chisel:textures/blocks/futura/controllerpurple.png
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Null/empty texture for BlockMD [chisel:futura:chisel:futura[variation=4]] ()
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [chisel:futura:chisel:futura[variation=4]] ()
[23:18:17] [Client thread/ERROR] [journeymap/]: ColorHelper.getColorForIcon(): Unable to use frame data for chisel:blocks/glass/chinese: Index: 0, Size: 0
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Null/empty texture for BlockMD [chisel:ironpane:chisel:ironpane[variation=0]] ()
[23:18:17] [Client thread/ERROR] [journeymap/]: Resource not usable as image: chisel:textures/blocks/glass/chinese.png
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Null/empty texture for BlockMD [chisel:ironpane:chisel:ironpane[variation=0]] ()
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [chisel:ironpane:chisel:ironpane[variation=0]] ()
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [environmentaltech:glass_clear:environmentaltech:glass_clear[connected_down=true,connected_east=true,connected_north=true,connected_south=true,connected_up=true,connected_west=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [environmentaltech:glass_clear:environmentaltech:glass_clear[connected_down=true,connected_east=true,connected_north=true,connected_south=true,connected_up=true,connected_west=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [environmentaltech:glass_clear:environmentaltech:glass_clear[connected_down=true,connected_east=true,connected_north=true,connected_south=true,connected_up=true,connected_west=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [environmentaltech:glass_clear:environmentaltech:glass_clear[connected_down=true,connected_east=true,connected_north=true,connected_south=true,connected_up=true,connected_west=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [environmentaltech:glass_clear:environmentaltech:glass_clear[connected_down=true,connected_east=true,connected_north=true,connected_south=true,connected_up=true,connected_west=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [environmentaltech:glass_clear:environmentaltech:glass_clear[connected_down=true,connected_east=true,connected_north=true,connected_south=true,connected_up=true,connected_west=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [environmentaltech:glass_clear:environmentaltech:glass_clear[connected_down=true,connected_east=true,connected_north=true,connected_south=true,connected_up=true,connected_west=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [environmentaltech:glass_clear:environmentaltech:glass_clear[connected_down=true,connected_east=true,connected_north=true,connected_south=true,connected_up=true,connected_west=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [environmentaltech:glass_clear:environmentaltech:glass_clear[connected_down=true,connected_east=true,connected_north=true,connected_south=true,connected_up=true,connected_west=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [environmentaltech:glass_clear:environmentaltech:glass_clear[connected_down=true,connected_east=true,connected_north=true,connected_south=true,connected_up=true,connected_west=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [environmentaltech:glass_clear:environmentaltech:glass_clear[connected_down=true,connected_east=true,connected_north=true,connected_south=true,connected_up=false,connected_west=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [environmentaltech:glass_clear:environmentaltech:glass_clear[connected_down=true,connected_east=true,connected_north=true,connected_south=true,connected_up=false,connected_west=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [environmentaltech:glass_clear:environmentaltech:glass_clear[connected_down=true,connected_east=true,connected_north=true,connected_south=true,connected_up=false,connected_west=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [environmentaltech:glass_clear:environmentaltech:glass_clear[connected_down=true,connected_east=true,connected_north=true,connected_south=true,connected_up=false,connected_west=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [environmentaltech:glass_clear:environmentaltech:glass_clear[connected_down=true,connected_east=true,connected_north=true,connected_south=true,connected_up=false,connected_west=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [environmentaltech:glass_clear:environmentaltech:glass_clear[connected_down=true,connected_east=true,connected_north=true,connected_south=false,connected_up=true,connected_west=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [environmentaltech:glass_clear:environmentaltech:glass_clear[connected_down=true,connected_east=true,connected_north=true,connected_south=false,connected_up=true,connected_west=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [environmentaltech:glass_clear:environmentaltech:glass_clear[connected_down=true,connected_east=true,connected_north=true,connected_south=false,connected_up=true,connected_west=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [environmentaltech:glass_clear:environmentaltech:glass_clear[connected_down=true,connected_east=true,connected_north=true,connected_south=false,connected_up=true,connected_west=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [environmentaltech:glass_clear:environmentaltech:glass_clear[connected_down=true,connected_east=true,connected_north=true,connected_south=false,connected_up=true,connected_west=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [environmentaltech:glass_clear:environmentaltech:glass_clear[connected_down=true,connected_east=true,connected_north=false,connected_south=true,connected_up=true,connected_west=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [environmentaltech:glass_clear:environmentaltech:glass_clear[connected_down=true,connected_east=true,connected_north=false,connected_south=true,connected_up=true,connected_west=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [environmentaltech:glass_clear:environmentaltech:glass_clear[connected_down=true,connected_east=true,connected_north=false,connected_south=true,connected_up=true,connected_west=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [environmentaltech:glass_clear:environmentaltech:glass_clear[connected_down=true,connected_east=true,connected_north=false,connected_south=true,connected_up=true,connected_west=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [environmentaltech:glass_clear:environmentaltech:glass_clear[connected_down=true,connected_east=true,connected_north=false,connected_south=true,connected_up=true,connected_west=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [environmentaltech:glass_clear:environmentaltech:glass_clear[connected_down=true,connected_east=false,connected_north=true,connected_south=true,connected_up=true,connected_west=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [environmentaltech:glass_clear:environmentaltech:glass_clear[connected_down=true,connected_east=false,connected_north=true,connected_south=true,connected_up=true,connected_west=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [environmentaltech:glass_clear:environmentaltech:glass_clear[connected_down=true,connected_east=false,connected_north=true,connected_south=true,connected_up=true,connected_west=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [environmentaltech:glass_clear:environmentaltech:glass_clear[connected_down=true,connected_east=false,connected_north=true,connected_south=true,connected_up=true,connected_west=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [environmentaltech:glass_clear:environmentaltech:glass_clear[connected_down=true,connected_east=false,connected_north=true,connected_south=true,connected_up=true,connected_west=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [environmentaltech:glass_clear:environmentaltech:glass_clear[connected_down=false,connected_east=true,connected_north=true,connected_south=true,connected_up=true,connected_west=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [environmentaltech:glass_clear:environmentaltech:glass_clear[connected_down=false,connected_east=true,connected_north=true,connected_south=true,connected_up=true,connected_west=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [environmentaltech:glass_clear:environmentaltech:glass_clear[connected_down=false,connected_east=true,connected_north=true,connected_south=true,connected_up=true,connected_west=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [environmentaltech:glass_clear:environmentaltech:glass_clear[connected_down=false,connected_east=true,connected_north=true,connected_south=true,connected_up=true,connected_west=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [environmentaltech:glass_clear:environmentaltech:glass_clear[connected_down=false,connected_east=true,connected_north=true,connected_south=true,connected_up=true,connected_west=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [labstuff:blockturbineglass:labstuff:blockturbineglass[connected_down=true,connected_east=true,connected_north=true,connected_south=true,connected_up=true,connected_west=false,turbines=0]] ()
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [labstuff:blockturbineglass:labstuff:blockturbineglass[connected_down=true,connected_east=true,connected_north=true,connected_south=true,connected_up=true,connected_west=false,turbines=0]] ()
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [labstuff:blockturbineglass:labstuff:blockturbineglass[connected_down=true,connected_east=true,connected_north=true,connected_south=true,connected_up=true,connected_west=false,turbines=0]] ()
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [labstuff:blockturbineglass:labstuff:blockturbineglass[connected_down=true,connected_east=true,connected_north=true,connected_south=true,connected_up=true,connected_west=false,turbines=0]] ()
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [labstuff:blockturbineglass:labstuff:blockturbineglass[connected_down=true,connected_east=true,connected_north=true,connected_south=true,connected_up=true,connected_west=false,turbines=0]] ()
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [labstuff:blockturbineglass:labstuff:blockturbineglass[connected_down=true,connected_east=true,connected_north=true,connected_south=true,connected_up=false,connected_west=true,turbines=0]] ()
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [labstuff:blockturbineglass:labstuff:blockturbineglass[connected_down=true,connected_east=true,connected_north=true,connected_south=true,connected_up=false,connected_west=true,turbines=0]] ()
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [labstuff:blockturbineglass:labstuff:blockturbineglass[connected_down=true,connected_east=true,connected_north=true,connected_south=true,connected_up=false,connected_west=true,turbines=0]] ()
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [labstuff:blockturbineglass:labstuff:blockturbineglass[connected_down=true,connected_east=true,connected_north=true,connected_south=true,connected_up=false,connected_west=true,turbines=0]] ()
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [labstuff:blockturbineglass:labstuff:blockturbineglass[connected_down=true,connected_east=true,connected_north=true,connected_south=true,connected_up=false,connected_west=true,turbines=0]] ()
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [labstuff:blockturbineglass:labstuff:blockturbineglass[connected_down=true,connected_east=true,connected_north=true,connected_south=false,connected_up=true,connected_west=true,turbines=0]] ()
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [labstuff:blockturbineglass:labstuff:blockturbineglass[connected_down=true,connected_east=true,connected_north=true,connected_south=false,connected_up=true,connected_west=true,turbines=0]] ()
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [labstuff:blockturbineglass:labstuff:blockturbineglass[connected_down=true,connected_east=true,connected_north=true,connected_south=false,connected_up=true,connected_west=true,turbines=0]] ()
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [labstuff:blockturbineglass:labstuff:blockturbineglass[connected_down=true,connected_east=true,connected_north=true,connected_south=false,connected_up=true,connected_west=true,turbines=0]] ()
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [labstuff:blockturbineglass:labstuff:blockturbineglass[connected_down=true,connected_east=true,connected_north=true,connected_south=false,connected_up=true,connected_west=true,turbines=0]] ()
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [labstuff:blockturbineglass:labstuff:blockturbineglass[connected_down=true,connected_east=true,connected_north=false,connected_south=true,connected_up=true,connected_west=true,turbines=0]] ()
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [labstuff:blockturbineglass:labstuff:blockturbineglass[connected_down=true,connected_east=true,connected_north=false,connected_south=true,connected_up=true,connected_west=true,turbines=0]] ()
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [labstuff:blockturbineglass:labstuff:blockturbineglass[connected_down=true,connected_east=true,connected_north=false,connected_south=true,connected_up=true,connected_west=true,turbines=0]] ()
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [labstuff:blockturbineglass:labstuff:blockturbineglass[connected_down=true,connected_east=true,connected_north=false,connected_south=true,connected_up=true,connected_west=true,turbines=0]] ()
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [labstuff:blockturbineglass:labstuff:blockturbineglass[connected_down=true,connected_east=true,connected_north=false,connected_south=true,connected_up=true,connected_west=true,turbines=0]] ()
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [labstuff:blockturbineglass:labstuff:blockturbineglass[connected_down=true,connected_east=false,connected_north=true,connected_south=true,connected_up=true,connected_west=true,turbines=0]] ()
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [labstuff:blockturbineglass:labstuff:blockturbineglass[connected_down=true,connected_east=false,connected_north=true,connected_south=true,connected_up=true,connected_west=true,turbines=0]] ()
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [labstuff:blockturbineglass:labstuff:blockturbineglass[connected_down=true,connected_east=false,connected_north=true,connected_south=true,connected_up=true,connected_west=true,turbines=0]] ()
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [labstuff:blockturbineglass:labstuff:blockturbineglass[connected_down=true,connected_east=false,connected_north=true,connected_south=true,connected_up=true,connected_west=true,turbines=0]] ()
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [labstuff:blockturbineglass:labstuff:blockturbineglass[connected_down=true,connected_east=false,connected_north=true,connected_south=true,connected_up=true,connected_west=true,turbines=0]] ()
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [labstuff:blockturbineglass:labstuff:blockturbineglass[connected_down=false,connected_east=true,connected_north=true,connected_south=true,connected_up=true,connected_west=true,turbines=0]] ()
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [labstuff:blockturbineglass:labstuff:blockturbineglass[connected_down=false,connected_east=true,connected_north=true,connected_south=true,connected_up=true,connected_west=true,turbines=0]] ()
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [labstuff:blockturbineglass:labstuff:blockturbineglass[connected_down=false,connected_east=true,connected_north=true,connected_south=true,connected_up=true,connected_west=true,turbines=0]] ()
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [labstuff:blockturbineglass:labstuff:blockturbineglass[connected_down=false,connected_east=true,connected_north=true,connected_south=true,connected_up=true,connected_west=true,turbines=0]] ()
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [labstuff:blockturbineglass:labstuff:blockturbineglass[connected_down=false,connected_east=true,connected_north=true,connected_south=true,connected_up=true,connected_west=true,turbines=0]] ()
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [notenoughwands:lightBlock:notenoughwands:lightBlock] ()
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [notenoughwands:lightBlock:notenoughwands:lightBlock] ()
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [notenoughwands:lightBlock:notenoughwands:lightBlock] ()
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [notenoughwands:lightBlock:notenoughwands:lightBlock] ()
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [notenoughwands:lightBlock:notenoughwands:lightBlock] ()
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=true,block_south=true,block_up=true,block_west=true,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=true,block_south=true,block_up=true,block_west=true,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=true,block_south=true,block_up=true,block_west=true,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=true,block_south=true,block_up=true,block_west=true,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=true,block_south=true,block_up=true,block_west=true,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=true,block_south=true,block_up=true,block_west=false,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=true,block_south=true,block_up=true,block_west=false,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=true,block_south=true,block_up=true,block_west=false,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=true,block_south=true,block_up=true,block_west=false,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=true,block_south=true,block_up=true,block_west=false,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=true,block_south=true,block_up=false,block_west=true,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=true,block_south=true,block_up=false,block_west=true,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=true,block_south=true,block_up=false,block_west=true,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=true,block_south=true,block_up=false,block_west=true,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=true,block_south=true,block_up=false,block_west=true,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=true,block_south=true,block_up=false,block_west=false,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=true,block_south=true,block_up=false,block_west=false,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=true,block_south=true,block_up=false,block_west=false,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=true,block_south=true,block_up=false,block_west=false,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=true,block_south=true,block_up=false,block_west=false,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=true,block_south=false,block_up=true,block_west=true,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=true,block_south=false,block_up=true,block_west=true,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=true,block_south=false,block_up=true,block_west=true,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=true,block_south=false,block_up=true,block_west=true,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=true,block_south=false,block_up=true,block_west=true,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=true,block_south=false,block_up=true,block_west=false,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=true,block_south=false,block_up=true,block_west=false,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=true,block_south=false,block_up=true,block_west=false,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=true,block_south=false,block_up=true,block_west=false,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=true,block_south=false,block_up=true,block_west=false,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=true,block_south=false,block_up=false,block_west=true,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=true,block_south=false,block_up=false,block_west=true,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=true,block_south=false,block_up=false,block_west=true,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=true,block_south=false,block_up=false,block_west=true,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=true,block_south=false,block_up=false,block_west=true,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=true,block_south=false,block_up=false,block_west=false,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=true,block_south=false,block_up=false,block_west=false,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=true,block_south=false,block_up=false,block_west=false,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=true,block_south=false,block_up=false,block_west=false,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=true,block_south=false,block_up=false,block_west=false,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=false,block_south=true,block_up=true,block_west=true,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=false,block_south=true,block_up=true,block_west=true,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=false,block_south=true,block_up=true,block_west=true,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=false,block_south=true,block_up=true,block_west=true,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=false,block_south=true,block_up=true,block_west=true,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=false,block_south=true,block_up=true,block_west=false,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=false,block_south=true,block_up=true,block_west=false,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=false,block_south=true,block_up=true,block_west=false,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=false,block_south=true,block_up=true,block_west=false,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=false,block_south=true,block_up=true,block_west=false,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=false,block_south=true,block_up=false,block_west=true,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=false,block_south=true,block_up=false,block_west=true,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=false,block_south=true,block_up=false,block_west=true,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=false,block_south=true,block_up=false,block_west=true,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=false,block_south=true,block_up=false,block_west=true,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=false,block_south=true,block_up=false,block_west=false,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=false,block_south=true,block_up=false,block_west=false,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=false,block_south=true,block_up=false,block_west=false,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=false,block_south=true,block_up=false,block_west=false,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=false,block_south=true,block_up=false,block_west=false,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=false,block_south=false,block_up=true,block_west=true,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=false,block_south=false,block_up=true,block_west=true,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=false,block_south=false,block_up=true,block_west=true,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=false,block_south=false,block_up=true,block_west=true,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=false,block_south=false,block_up=true,block_west=true,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=false,block_south=false,block_up=true,block_west=false,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=false,block_south=false,block_up=true,block_west=false,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=false,block_south=false,block_up=true,block_west=false,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=false,block_south=false,block_up=true,block_west=false,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=false,block_south=false,block_up=true,block_west=false,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=false,block_south=false,block_up=false,block_west=true,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=false,block_south=false,block_up=false,block_west=true,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=false,block_south=false,block_up=false,block_west=true,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=false,block_south=false,block_up=false,block_west=true,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=false,block_south=false,block_up=false,block_west=true,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=false,block_south=false,block_up=false,block_west=false,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=false,block_south=false,block_up=false,block_west=false,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=false,block_south=false,block_up=false,block_west=false,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=false,block_south=false,block_up=false,block_west=false,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=false,block_south=false,block_up=false,block_west=false,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=true,block_south=true,block_up=true,block_west=true,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=true,block_south=true,block_up=true,block_west=true,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=true,block_south=true,block_up=true,block_west=true,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=true,block_south=true,block_up=true,block_west=true,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=true,block_south=true,block_up=true,block_west=true,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=true,block_south=true,block_up=true,block_west=false,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=true,block_south=true,block_up=true,block_west=false,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=true,block_south=true,block_up=true,block_west=false,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=true,block_south=true,block_up=true,block_west=false,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=true,block_south=true,block_up=true,block_west=false,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=true,block_south=true,block_up=false,block_west=true,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=true,block_south=true,block_up=false,block_west=true,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=true,block_south=true,block_up=false,block_west=true,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=true,block_south=true,block_up=false,block_west=true,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=true,block_south=true,block_up=false,block_west=true,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=true,block_south=true,block_up=false,block_west=false,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=true,block_south=true,block_up=false,block_west=false,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=true,block_south=true,block_up=false,block_west=false,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=true,block_south=true,block_up=false,block_west=false,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=true,block_south=true,block_up=false,block_west=false,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=true,block_south=false,block_up=true,block_west=true,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=true,block_south=false,block_up=true,block_west=true,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=true,block_south=false,block_up=true,block_west=true,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=true,block_south=false,block_up=true,block_west=true,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=true,block_south=false,block_up=true,block_west=true,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=true,block_south=false,block_up=true,block_west=false,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=true,block_south=false,block_up=true,block_west=false,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=true,block_south=false,block_up=true,block_west=false,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=true,block_south=false,block_up=true,block_west=false,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=true,block_south=false,block_up=true,block_west=false,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=true,block_south=false,block_up=false,block_west=true,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=true,block_south=false,block_up=false,block_west=true,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=true,block_south=false,block_up=false,block_west=true,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=true,block_south=false,block_up=false,block_west=true,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=true,block_south=false,block_up=false,block_west=true,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=true,block_south=false,block_up=false,block_west=false,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=true,block_south=false,block_up=false,block_west=false,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=true,block_south=false,block_up=false,block_west=false,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=true,block_south=false,block_up=false,block_west=false,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=true,block_south=false,block_up=false,block_west=false,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=false,block_south=true,block_up=true,block_west=true,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=false,block_south=true,block_up=true,block_west=true,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=false,block_south=true,block_up=true,block_west=true,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=false,block_south=true,block_up=true,block_west=true,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=false,block_south=true,block_up=true,block_west=true,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=false,block_south=true,block_up=true,block_west=false,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=false,block_south=true,block_up=true,block_west=false,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=false,block_south=true,block_up=true,block_west=false,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=false,block_south=true,block_up=true,block_west=false,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=false,block_south=true,block_up=true,block_west=false,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=false,block_south=true,block_up=false,block_west=true,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=false,block_south=true,block_up=false,block_west=true,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=false,block_south=true,block_up=false,block_west=true,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=false,block_south=true,block_up=false,block_west=true,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=false,block_south=true,block_up=false,block_west=true,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=false,block_south=true,block_up=false,block_west=false,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=false,block_south=true,block_up=false,block_west=false,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=false,block_south=true,block_up=false,block_west=false,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=false,block_south=true,block_up=false,block_west=false,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=false,block_south=true,block_up=false,block_west=false,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=false,block_south=false,block_up=true,block_west=true,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=false,block_south=false,block_up=true,block_west=true,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=false,block_south=false,block_up=true,block_west=true,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=false,block_south=false,block_up=true,block_west=true,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=false,block_south=false,block_up=true,block_west=true,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=false,block_south=false,block_up=true,block_west=false,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=false,block_south=false,block_up=true,block_west=false,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=false,block_south=false,block_up=true,block_west=false,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=false,block_south=false,block_up=true,block_west=false,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=false,block_south=false,block_up=true,block_west=false,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=false,block_south=false,block_up=false,block_west=true,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=false,block_south=false,block_up=false,block_west=true,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=false,block_south=false,block_up=false,block_west=true,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=false,block_south=false,block_up=false,block_west=true,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=false,block_south=false,block_up=false,block_west=true,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=false,block_south=false,block_up=false,block_west=false,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=false,block_south=false,block_up=false,block_west=false,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=false,block_south=false,block_up=false,block_west=false,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=false,block_south=false,block_up=false,block_west=false,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=false,block_south=false,block_up=false,block_west=false,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=true,block_south=true,block_up=true,block_west=true,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=true,block_south=true,block_up=true,block_west=true,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=true,block_south=true,block_up=true,block_west=true,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=true,block_south=true,block_up=true,block_west=true,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=true,block_south=true,block_up=true,block_west=true,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=true,block_south=true,block_up=true,block_west=false,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=true,block_south=true,block_up=true,block_west=false,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=true,block_south=true,block_up=true,block_west=false,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=true,block_south=true,block_up=true,block_west=false,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=true,block_south=true,block_up=true,block_west=false,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=true,block_south=true,block_up=false,block_west=true,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=true,block_south=true,block_up=false,block_west=true,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=true,block_south=true,block_up=false,block_west=true,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=true,block_south=true,block_up=false,block_west=true,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=true,block_south=true,block_up=false,block_west=true,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=true,block_south=true,block_up=false,block_west=false,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=true,block_south=true,block_up=false,block_west=false,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=true,block_south=true,block_up=false,block_west=false,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=true,block_south=true,block_up=false,block_west=false,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=true,block_south=true,block_up=false,block_west=false,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=true,block_south=false,block_up=true,block_west=true,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=true,block_south=false,block_up=true,block_west=true,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=true,block_south=false,block_up=true,block_west=true,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=true,block_south=false,block_up=true,block_west=true,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=true,block_south=false,block_up=true,block_west=true,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=true,block_south=false,block_up=true,block_west=false,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=true,block_south=false,block_up=true,block_west=false,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=true,block_south=false,block_up=true,block_west=false,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=true,block_south=false,block_up=true,block_west=false,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=true,block_south=false,block_up=true,block_west=false,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=true,block_south=false,block_up=false,block_west=true,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=true,block_south=false,block_up=false,block_west=true,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=true,block_south=false,block_up=false,block_west=true,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=true,block_south=false,block_up=false,block_west=true,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=true,block_south=false,block_up=false,block_west=true,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=true,block_south=false,block_up=false,block_west=false,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=true,block_south=false,block_up=false,block_west=false,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=true,block_south=false,block_up=false,block_west=false,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=true,block_south=false,block_up=false,block_west=false,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=true,block_south=false,block_up=false,block_west=false,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=false,block_south=true,block_up=true,block_west=true,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=false,block_south=true,block_up=true,block_west=true,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=false,block_south=true,block_up=true,block_west=true,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=false,block_south=true,block_up=true,block_west=true,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=false,block_south=true,block_up=true,block_west=true,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=false,block_south=true,block_up=true,block_west=false,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=false,block_south=true,block_up=true,block_west=false,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=false,block_south=true,block_up=true,block_west=false,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=false,block_south=true,block_up=true,block_west=false,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=false,block_south=true,block_up=true,block_west=false,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=false,block_south=true,block_up=false,block_west=true,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=false,block_south=true,block_up=false,block_west=true,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=false,block_south=true,block_up=false,block_west=true,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=false,block_south=true,block_up=false,block_west=true,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=false,block_south=true,block_up=false,block_west=true,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=false,block_south=true,block_up=false,block_west=false,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=false,block_south=true,block_up=false,block_west=false,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=false,block_south=true,block_up=false,block_west=false,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=false,block_south=true,block_up=false,block_west=false,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=false,block_south=true,block_up=false,block_west=false,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=false,block_south=false,block_up=true,block_west=true,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=false,block_south=false,block_up=true,block_west=true,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=false,block_south=false,block_up=true,block_west=true,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=false,block_south=false,block_up=true,block_west=true,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=false,block_south=false,block_up=true,block_west=true,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=false,block_south=false,block_up=true,block_west=false,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=false,block_south=false,block_up=true,block_west=false,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=false,block_south=false,block_up=true,block_west=false,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=false,block_south=false,block_up=true,block_west=false,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=false,block_south=false,block_up=true,block_west=false,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=false,block_south=false,block_up=false,block_west=true,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=false,block_south=false,block_up=false,block_west=true,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=false,block_south=false,block_up=false,block_west=true,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=false,block_south=false,block_up=false,block_west=true,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=false,block_south=false,block_up=false,block_west=true,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=false,block_south=false,block_up=false,block_west=false,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=false,block_south=false,block_up=false,block_west=false,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=false,block_south=false,block_up=false,block_west=false,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=false,block_south=false,block_up=false,block_west=false,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=false,block_south=false,block_up=false,block_west=false,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=true,block_south=true,block_up=true,block_west=true,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=true,block_south=true,block_up=true,block_west=true,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=true,block_south=true,block_up=true,block_west=true,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=true,block_south=true,block_up=true,block_west=true,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=true,block_south=true,block_up=true,block_west=true,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=true,block_south=true,block_up=true,block_west=false,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=true,block_south=true,block_up=true,block_west=false,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=true,block_south=true,block_up=true,block_west=false,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=true,block_south=true,block_up=true,block_west=false,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=true,block_south=true,block_up=true,block_west=false,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=true,block_south=true,block_up=false,block_west=true,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=true,block_south=true,block_up=false,block_west=true,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=true,block_south=true,block_up=false,block_west=true,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=true,block_south=true,block_up=false,block_west=true,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=true,block_south=true,block_up=false,block_west=true,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=true,block_south=true,block_up=false,block_west=false,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=true,block_south=true,block_up=false,block_west=false,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=true,block_south=true,block_up=false,block_west=false,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=true,block_south=true,block_up=false,block_west=false,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=true,block_south=true,block_up=false,block_west=false,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=true,block_south=false,block_up=true,block_west=true,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=true,block_south=false,block_up=true,block_west=true,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=true,block_south=false,block_up=true,block_west=true,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=true,block_south=false,block_up=true,block_west=true,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=true,block_south=false,block_up=true,block_west=true,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=true,block_south=false,block_up=true,block_west=false,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=true,block_south=false,block_up=true,block_west=false,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=true,block_south=false,block_up=true,block_west=false,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=true,block_south=false,block_up=true,block_west=false,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=true,block_south=false,block_up=true,block_west=false,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=true,block_south=false,block_up=false,block_west=true,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=true,block_south=false,block_up=false,block_west=true,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=true,block_south=false,block_up=false,block_west=true,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=true,block_south=false,block_up=false,block_west=true,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=true,block_south=false,block_up=false,block_west=true,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=true,block_south=false,block_up=false,block_west=false,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=true,block_south=false,block_up=false,block_west=false,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=true,block_south=false,block_up=false,block_west=false,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=true,block_south=false,block_up=false,block_west=false,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=true,block_south=false,block_up=false,block_west=false,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=false,block_south=true,block_up=true,block_west=true,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=false,block_south=true,block_up=true,block_west=true,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=false,block_south=true,block_up=true,block_west=true,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=false,block_south=true,block_up=true,block_west=true,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=false,block_south=true,block_up=true,block_west=true,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=false,block_south=true,block_up=true,block_west=false,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=false,block_south=true,block_up=true,block_west=false,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=false,block_south=true,block_up=true,block_west=false,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=false,block_south=true,block_up=true,block_west=false,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=false,block_south=true,block_up=true,block_west=false,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=false,block_south=true,block_up=false,block_west=true,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=false,block_south=true,block_up=false,block_west=true,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=false,block_south=true,block_up=false,block_west=true,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=false,block_south=true,block_up=false,block_west=true,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=false,block_south=true,block_up=false,block_west=true,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=false,block_south=true,block_up=false,block_west=false,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=false,block_south=true,block_up=false,block_west=false,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=false,block_south=true,block_up=false,block_west=false,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=false,block_south=true,block_up=false,block_west=false,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=false,block_south=true,block_up=false,block_west=false,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=false,block_south=false,block_up=true,block_west=true,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=false,block_south=false,block_up=true,block_west=true,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=false,block_south=false,block_up=true,block_west=true,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=false,block_south=false,block_up=true,block_west=true,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=false,block_south=false,block_up=true,block_west=true,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=false,block_south=false,block_up=true,block_west=false,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=false,block_south=false,block_up=true,block_west=false,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=false,block_south=false,block_up=true,block_west=false,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=false,block_south=false,block_up=true,block_west=false,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=false,block_south=false,block_up=true,block_west=false,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=false,block_south=false,block_up=false,block_west=true,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=false,block_south=false,block_up=false,block_west=true,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=false,block_south=false,block_up=false,block_west=true,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=false,block_south=false,block_up=false,block_west=true,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=false,block_south=false,block_up=false,block_west=true,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=false,block_south=false,block_up=false,block_west=false,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=false,block_south=false,block_up=false,block_west=false,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=false,block_south=false,block_up=false,block_west=false,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=false,block_south=false,block_up=false,block_west=false,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=false,block_south=false,block_up=false,block_west=false,light=false,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=true,block_south=true,block_up=true,block_west=true,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=true,block_south=true,block_up=true,block_west=true,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=true,block_south=true,block_up=true,block_west=true,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=true,block_south=true,block_up=true,block_west=true,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=true,block_south=true,block_up=true,block_west=true,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=true,block_south=true,block_up=true,block_west=false,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=true,block_south=true,block_up=true,block_west=false,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=true,block_south=true,block_up=true,block_west=false,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=true,block_south=true,block_up=true,block_west=false,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=true,block_south=true,block_up=true,block_west=false,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=true,block_south=true,block_up=false,block_west=true,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=true,block_south=true,block_up=false,block_west=true,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=true,block_south=true,block_up=false,block_west=true,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=true,block_south=true,block_up=false,block_west=true,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=true,block_south=true,block_up=false,block_west=true,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=true,block_south=true,block_up=false,block_west=false,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=true,block_south=true,block_up=false,block_west=false,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=true,block_south=true,block_up=false,block_west=false,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=true,block_south=true,block_up=false,block_west=false,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=true,block_south=true,block_up=false,block_west=false,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=true,block_south=false,block_up=true,block_west=true,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=true,block_south=false,block_up=true,block_west=true,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=true,block_south=false,block_up=true,block_west=true,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=true,block_south=false,block_up=true,block_west=true,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=true,block_south=false,block_up=true,block_west=true,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=true,block_south=false,block_up=true,block_west=false,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=true,block_south=false,block_up=true,block_west=false,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=true,block_south=false,block_up=true,block_west=false,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=true,block_south=false,block_up=true,block_west=false,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=true,block_south=false,block_up=true,block_west=false,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=true,block_south=false,block_up=false,block_west=true,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=true,block_south=false,block_up=false,block_west=true,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=true,block_south=false,block_up=false,block_west=true,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=true,block_south=false,block_up=false,block_west=true,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=true,block_south=false,block_up=false,block_west=true,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=true,block_south=false,block_up=false,block_west=false,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=true,block_south=false,block_up=false,block_west=false,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=true,block_south=false,block_up=false,block_west=false,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=true,block_south=false,block_up=false,block_west=false,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=true,block_south=false,block_up=false,block_west=false,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=false,block_south=true,block_up=true,block_west=true,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=false,block_south=true,block_up=true,block_west=true,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=false,block_south=true,block_up=true,block_west=true,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=false,block_south=true,block_up=true,block_west=true,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=false,block_south=true,block_up=true,block_west=true,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=false,block_south=true,block_up=true,block_west=false,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=false,block_south=true,block_up=true,block_west=false,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=false,block_south=true,block_up=true,block_west=false,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=false,block_south=true,block_up=true,block_west=false,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=false,block_south=true,block_up=true,block_west=false,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=false,block_south=true,block_up=false,block_west=true,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=false,block_south=true,block_up=false,block_west=true,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=false,block_south=true,block_up=false,block_west=true,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=false,block_south=true,block_up=false,block_west=true,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=false,block_south=true,block_up=false,block_west=true,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=false,block_south=true,block_up=false,block_west=false,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=false,block_south=true,block_up=false,block_west=false,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=false,block_south=true,block_up=false,block_west=false,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=false,block_south=true,block_up=false,block_west=false,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=false,block_south=true,block_up=false,block_west=false,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=false,block_south=false,block_up=true,block_west=true,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=false,block_south=false,block_up=true,block_west=true,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=false,block_south=false,block_up=true,block_west=true,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=false,block_south=false,block_up=true,block_west=true,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=false,block_south=false,block_up=true,block_west=true,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=false,block_south=false,block_up=true,block_west=false,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=false,block_south=false,block_up=true,block_west=false,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=false,block_south=false,block_up=true,block_west=false,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=false,block_south=false,block_up=true,block_west=false,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=false,block_south=false,block_up=true,block_west=false,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=false,block_south=false,block_up=false,block_west=true,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=false,block_south=false,block_up=false,block_west=true,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=false,block_south=false,block_up=false,block_west=true,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=false,block_south=false,block_up=false,block_west=true,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=false,block_south=false,block_up=false,block_west=true,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=false,block_south=false,block_up=false,block_west=false,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=false,block_south=false,block_up=false,block_west=false,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=false,block_south=false,block_up=false,block_west=false,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=false,block_south=false,block_up=false,block_west=false,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=false,block_south=false,block_up=false,block_west=false,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=true,block_south=true,block_up=true,block_west=true,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=true,block_south=true,block_up=true,block_west=true,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=true,block_south=true,block_up=true,block_west=true,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=true,block_south=true,block_up=true,block_west=true,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=true,block_south=true,block_up=true,block_west=true,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=true,block_south=true,block_up=true,block_west=false,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=true,block_south=true,block_up=true,block_west=false,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=true,block_south=true,block_up=true,block_west=false,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=true,block_south=true,block_up=true,block_west=false,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=true,block_south=true,block_up=true,block_west=false,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=true,block_south=true,block_up=false,block_west=true,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=true,block_south=true,block_up=false,block_west=true,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=true,block_south=true,block_up=false,block_west=true,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=true,block_south=true,block_up=false,block_west=true,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=true,block_south=true,block_up=false,block_west=true,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=true,block_south=true,block_up=false,block_west=false,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=true,block_south=true,block_up=false,block_west=false,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=true,block_south=true,block_up=false,block_west=false,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=true,block_south=true,block_up=false,block_west=false,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=true,block_south=true,block_up=false,block_west=false,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=true,block_south=false,block_up=true,block_west=true,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=true,block_south=false,block_up=true,block_west=true,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=true,block_south=false,block_up=true,block_west=true,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=true,block_south=false,block_up=true,block_west=true,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=true,block_south=false,block_up=true,block_west=true,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=true,block_south=false,block_up=true,block_west=false,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=true,block_south=false,block_up=true,block_west=false,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=true,block_south=false,block_up=true,block_west=false,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=true,block_south=false,block_up=true,block_west=false,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=true,block_south=false,block_up=true,block_west=false,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=true,block_south=false,block_up=false,block_west=true,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=true,block_south=false,block_up=false,block_west=true,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=true,block_south=false,block_up=false,block_west=true,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=true,block_south=false,block_up=false,block_west=true,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=true,block_south=false,block_up=false,block_west=true,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=true,block_south=false,block_up=false,block_west=false,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=true,block_south=false,block_up=false,block_west=false,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=true,block_south=false,block_up=false,block_west=false,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=true,block_south=false,block_up=false,block_west=false,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=true,block_south=false,block_up=false,block_west=false,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=false,block_south=true,block_up=true,block_west=true,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=false,block_south=true,block_up=true,block_west=true,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=false,block_south=true,block_up=true,block_west=true,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=false,block_south=true,block_up=true,block_west=true,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=false,block_south=true,block_up=true,block_west=true,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=false,block_south=true,block_up=true,block_west=false,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=false,block_south=true,block_up=true,block_west=false,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=false,block_south=true,block_up=true,block_west=false,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=false,block_south=true,block_up=true,block_west=false,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=false,block_south=true,block_up=true,block_west=false,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=false,block_south=true,block_up=false,block_west=true,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=false,block_south=true,block_up=false,block_west=true,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=false,block_south=true,block_up=false,block_west=true,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=false,block_south=true,block_up=false,block_west=true,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=false,block_south=true,block_up=false,block_west=true,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=false,block_south=true,block_up=false,block_west=false,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=false,block_south=true,block_up=false,block_west=false,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=false,block_south=true,block_up=false,block_west=false,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=false,block_south=true,block_up=false,block_west=false,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=false,block_south=true,block_up=false,block_west=false,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=false,block_south=false,block_up=true,block_west=true,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=false,block_south=false,block_up=true,block_west=true,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=false,block_south=false,block_up=true,block_west=true,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=false,block_south=false,block_up=true,block_west=true,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=false,block_south=false,block_up=true,block_west=true,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=false,block_south=false,block_up=true,block_west=false,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=false,block_south=false,block_up=true,block_west=false,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=false,block_south=false,block_up=true,block_west=false,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=false,block_south=false,block_up=true,block_west=false,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=false,block_south=false,block_up=true,block_west=false,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=false,block_south=false,block_up=false,block_west=true,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=false,block_south=false,block_up=false,block_west=true,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=false,block_south=false,block_up=false,block_west=true,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=false,block_south=false,block_up=false,block_west=true,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=false,block_south=false,block_up=false,block_west=true,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=false,block_south=false,block_up=false,block_west=false,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=false,block_south=false,block_up=false,block_west=false,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=false,block_south=false,block_up=false,block_west=false,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=false,block_south=false,block_up=false,block_west=false,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=false,block_south=false,block_up=false,block_west=false,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=true,block_south=true,block_up=true,block_west=true,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=true,block_south=true,block_up=true,block_west=true,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=true,block_south=true,block_up=true,block_west=true,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=true,block_south=true,block_up=true,block_west=true,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=true,block_south=true,block_up=true,block_west=true,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=true,block_south=true,block_up=true,block_west=false,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=true,block_south=true,block_up=true,block_west=false,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=true,block_south=true,block_up=true,block_west=false,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=true,block_south=true,block_up=true,block_west=false,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=true,block_south=true,block_up=true,block_west=false,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=true,block_south=true,block_up=false,block_west=true,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=true,block_south=true,block_up=false,block_west=true,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=true,block_south=true,block_up=false,block_west=true,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=true,block_south=true,block_up=false,block_west=true,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=true,block_south=true,block_up=false,block_west=true,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=true,block_south=true,block_up=false,block_west=false,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=true,block_south=true,block_up=false,block_west=false,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=true,block_south=true,block_up=false,block_west=false,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=true,block_south=true,block_up=false,block_west=false,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=true,block_south=true,block_up=false,block_west=false,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=true,block_south=false,block_up=true,block_west=true,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=true,block_south=false,block_up=true,block_west=true,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=true,block_south=false,block_up=true,block_west=true,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=true,block_south=false,block_up=true,block_west=true,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=true,block_south=false,block_up=true,block_west=true,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=true,block_south=false,block_up=true,block_west=false,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=true,block_south=false,block_up=true,block_west=false,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=true,block_south=false,block_up=true,block_west=false,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=true,block_south=false,block_up=true,block_west=false,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=true,block_south=false,block_up=true,block_west=false,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=true,block_south=false,block_up=false,block_west=true,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=true,block_south=false,block_up=false,block_west=true,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=true,block_south=false,block_up=false,block_west=true,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=true,block_south=false,block_up=false,block_west=true,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=true,block_south=false,block_up=false,block_west=true,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=true,block_south=false,block_up=false,block_west=false,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=true,block_south=false,block_up=false,block_west=false,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=true,block_south=false,block_up=false,block_west=false,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=true,block_south=false,block_up=false,block_west=false,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=true,block_south=false,block_up=false,block_west=false,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=false,block_south=true,block_up=true,block_west=true,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=false,block_south=true,block_up=true,block_west=true,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=false,block_south=true,block_up=true,block_west=true,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=false,block_south=true,block_up=true,block_west=true,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=false,block_south=true,block_up=true,block_west=true,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=false,block_south=true,block_up=true,block_west=false,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=false,block_south=true,block_up=true,block_west=false,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=false,block_south=true,block_up=true,block_west=false,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=false,block_south=true,block_up=true,block_west=false,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=false,block_south=true,block_up=true,block_west=false,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=false,block_south=true,block_up=false,block_west=true,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=false,block_south=true,block_up=false,block_west=true,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=false,block_south=true,block_up=false,block_west=true,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=false,block_south=true,block_up=false,block_west=true,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=false,block_south=true,block_up=false,block_west=true,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=false,block_south=true,block_up=false,block_west=false,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=false,block_south=true,block_up=false,block_west=false,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=false,block_south=true,block_up=false,block_west=false,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=false,block_south=true,block_up=false,block_west=false,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=false,block_south=true,block_up=false,block_west=false,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=false,block_south=false,block_up=true,block_west=true,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=false,block_south=false,block_up=true,block_west=true,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=false,block_south=false,block_up=true,block_west=true,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=false,block_south=false,block_up=true,block_west=true,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=false,block_south=false,block_up=true,block_west=true,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=false,block_south=false,block_up=true,block_west=false,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=false,block_south=false,block_up=true,block_west=false,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=false,block_south=false,block_up=true,block_west=false,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=false,block_south=false,block_up=true,block_west=false,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=false,block_south=false,block_up=true,block_west=false,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=false,block_south=false,block_up=false,block_west=true,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=false,block_south=false,block_up=false,block_west=true,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=false,block_south=false,block_up=false,block_west=true,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=false,block_south=false,block_up=false,block_west=true,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=false,block_south=false,block_up=false,block_west=true,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=false,block_south=false,block_up=false,block_west=false,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=false,block_south=false,block_up=false,block_west=false,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=false,block_south=false,block_up=false,block_west=false,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=false,block_south=false,block_up=false,block_west=false,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=false,block_south=false,block_up=false,block_west=false,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=true,block_south=true,block_up=true,block_west=true,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=true,block_south=true,block_up=true,block_west=true,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=true,block_south=true,block_up=true,block_west=true,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=true,block_south=true,block_up=true,block_west=true,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=true,block_south=true,block_up=true,block_west=true,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=true,block_south=true,block_up=true,block_west=false,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=true,block_south=true,block_up=true,block_west=false,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=true,block_south=true,block_up=true,block_west=false,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=true,block_south=true,block_up=true,block_west=false,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=true,block_south=true,block_up=true,block_west=false,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=true,block_south=true,block_up=false,block_west=true,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=true,block_south=true,block_up=false,block_west=true,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:17] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=true,block_south=true,block_up=false,block_west=true,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=true,block_south=true,block_up=false,block_west=true,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=true,block_south=true,block_up=false,block_west=true,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=true,block_south=true,block_up=false,block_west=false,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=true,block_south=true,block_up=false,block_west=false,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=true,block_south=true,block_up=false,block_west=false,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=true,block_south=true,block_up=false,block_west=false,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=true,block_south=true,block_up=false,block_west=false,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=true,block_south=false,block_up=true,block_west=true,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=true,block_south=false,block_up=true,block_west=true,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=true,block_south=false,block_up=true,block_west=true,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=true,block_south=false,block_up=true,block_west=true,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=true,block_south=false,block_up=true,block_west=true,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=true,block_south=false,block_up=true,block_west=false,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=true,block_south=false,block_up=true,block_west=false,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=true,block_south=false,block_up=true,block_west=false,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=true,block_south=false,block_up=true,block_west=false,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=true,block_south=false,block_up=true,block_west=false,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=true,block_south=false,block_up=false,block_west=true,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=true,block_south=false,block_up=false,block_west=true,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=true,block_south=false,block_up=false,block_west=true,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=true,block_south=false,block_up=false,block_west=true,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=true,block_south=false,block_up=false,block_west=true,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=true,block_south=false,block_up=false,block_west=false,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=true,block_south=false,block_up=false,block_west=false,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=true,block_south=false,block_up=false,block_west=false,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=true,block_south=false,block_up=false,block_west=false,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=true,block_south=false,block_up=false,block_west=false,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=false,block_south=true,block_up=true,block_west=true,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=false,block_south=true,block_up=true,block_west=true,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=false,block_south=true,block_up=true,block_west=true,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=false,block_south=true,block_up=true,block_west=true,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=false,block_south=true,block_up=true,block_west=true,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=false,block_south=true,block_up=true,block_west=false,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=false,block_south=true,block_up=true,block_west=false,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=false,block_south=true,block_up=true,block_west=false,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=false,block_south=true,block_up=true,block_west=false,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=false,block_south=true,block_up=true,block_west=false,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=false,block_south=true,block_up=false,block_west=true,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=false,block_south=true,block_up=false,block_west=true,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=false,block_south=true,block_up=false,block_west=true,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=false,block_south=true,block_up=false,block_west=true,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=false,block_south=true,block_up=false,block_west=true,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=false,block_south=true,block_up=false,block_west=false,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=false,block_south=true,block_up=false,block_west=false,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=false,block_south=true,block_up=false,block_west=false,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=false,block_south=true,block_up=false,block_west=false,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=false,block_south=true,block_up=false,block_west=false,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=false,block_south=false,block_up=true,block_west=true,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=false,block_south=false,block_up=true,block_west=true,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=false,block_south=false,block_up=true,block_west=true,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=false,block_south=false,block_up=true,block_west=true,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=false,block_south=false,block_up=true,block_west=true,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=false,block_south=false,block_up=true,block_west=false,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=false,block_south=false,block_up=true,block_west=false,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=false,block_south=false,block_up=true,block_west=false,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=false,block_south=false,block_up=true,block_west=false,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=false,block_south=false,block_up=true,block_west=false,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=false,block_south=false,block_up=false,block_west=true,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=false,block_south=false,block_up=false,block_west=true,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=false,block_south=false,block_up=false,block_west=true,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=false,block_south=false,block_up=false,block_west=true,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=false,block_south=false,block_up=false,block_west=true,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=false,block_south=false,block_up=false,block_west=false,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=false,block_south=false,block_up=false,block_west=false,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=false,block_south=false,block_up=false,block_west=false,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=false,block_south=false,block_up=false,block_west=false,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=false,block_south=false,block_up=false,block_west=false,light=false,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=true,block_south=true,block_up=true,block_west=true,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=true,block_south=true,block_up=true,block_west=true,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=true,block_south=true,block_up=true,block_west=true,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=true,block_south=true,block_up=true,block_west=true,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=true,block_south=true,block_up=true,block_west=true,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=true,block_south=true,block_up=true,block_west=false,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=true,block_south=true,block_up=true,block_west=false,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=true,block_south=true,block_up=true,block_west=false,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=true,block_south=true,block_up=true,block_west=false,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=true,block_south=true,block_up=true,block_west=false,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=true,block_south=true,block_up=false,block_west=true,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=true,block_south=true,block_up=false,block_west=true,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=true,block_south=true,block_up=false,block_west=true,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=true,block_south=true,block_up=false,block_west=true,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=true,block_south=true,block_up=false,block_west=true,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=true,block_south=true,block_up=false,block_west=false,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=true,block_south=true,block_up=false,block_west=false,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=true,block_south=true,block_up=false,block_west=false,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=true,block_south=true,block_up=false,block_west=false,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=true,block_south=true,block_up=false,block_west=false,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=true,block_south=false,block_up=true,block_west=true,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=true,block_south=false,block_up=true,block_west=true,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=true,block_south=false,block_up=true,block_west=true,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=true,block_south=false,block_up=true,block_west=true,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=true,block_south=false,block_up=true,block_west=true,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=true,block_south=false,block_up=true,block_west=false,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=true,block_south=false,block_up=true,block_west=false,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=true,block_south=false,block_up=true,block_west=false,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=true,block_south=false,block_up=true,block_west=false,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=true,block_south=false,block_up=true,block_west=false,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=true,block_south=false,block_up=false,block_west=true,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=true,block_south=false,block_up=false,block_west=true,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=true,block_south=false,block_up=false,block_west=true,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=true,block_south=false,block_up=false,block_west=true,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=true,block_south=false,block_up=false,block_west=true,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=true,block_south=false,block_up=false,block_west=false,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=true,block_south=false,block_up=false,block_west=false,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=true,block_south=false,block_up=false,block_west=false,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=true,block_south=false,block_up=false,block_west=false,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=true,block_south=false,block_up=false,block_west=false,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=false,block_south=true,block_up=true,block_west=true,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=false,block_south=true,block_up=true,block_west=true,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=false,block_south=true,block_up=true,block_west=true,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=false,block_south=true,block_up=true,block_west=true,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=false,block_south=true,block_up=true,block_west=true,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=false,block_south=true,block_up=true,block_west=false,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=false,block_south=true,block_up=true,block_west=false,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=false,block_south=true,block_up=true,block_west=false,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=false,block_south=true,block_up=true,block_west=false,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=false,block_south=true,block_up=true,block_west=false,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=false,block_south=true,block_up=false,block_west=true,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=false,block_south=true,block_up=false,block_west=true,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=false,block_south=true,block_up=false,block_west=true,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=false,block_south=true,block_up=false,block_west=true,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=false,block_south=true,block_up=false,block_west=true,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=false,block_south=true,block_up=false,block_west=false,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=false,block_south=true,block_up=false,block_west=false,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=false,block_south=true,block_up=false,block_west=false,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=false,block_south=true,block_up=false,block_west=false,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=false,block_south=true,block_up=false,block_west=false,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=false,block_south=false,block_up=true,block_west=true,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=false,block_south=false,block_up=true,block_west=true,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=false,block_south=false,block_up=true,block_west=true,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=false,block_south=false,block_up=true,block_west=true,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=false,block_south=false,block_up=true,block_west=true,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=false,block_south=false,block_up=true,block_west=false,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=false,block_south=false,block_up=true,block_west=false,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=false,block_south=false,block_up=true,block_west=false,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=false,block_south=false,block_up=true,block_west=false,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=false,block_south=false,block_up=true,block_west=false,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=false,block_south=false,block_up=false,block_west=true,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=false,block_south=false,block_up=false,block_west=true,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=false,block_south=false,block_up=false,block_west=true,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=false,block_south=false,block_up=false,block_west=true,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=false,block_south=false,block_up=false,block_west=true,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=false,block_south=false,block_up=false,block_west=false,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=false,block_south=false,block_up=false,block_west=false,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=false,block_south=false,block_up=false,block_west=false,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=false,block_south=false,block_up=false,block_west=false,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=false,block_south=false,block_up=false,block_west=false,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=true,block_south=true,block_up=true,block_west=true,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=true,block_south=true,block_up=true,block_west=true,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=true,block_south=true,block_up=true,block_west=true,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=true,block_south=true,block_up=true,block_west=true,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=true,block_south=true,block_up=true,block_west=true,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=true,block_south=true,block_up=true,block_west=false,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=true,block_south=true,block_up=true,block_west=false,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=true,block_south=true,block_up=true,block_west=false,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=true,block_south=true,block_up=true,block_west=false,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=true,block_south=true,block_up=true,block_west=false,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=true,block_south=true,block_up=false,block_west=true,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=true,block_south=true,block_up=false,block_west=true,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=true,block_south=true,block_up=false,block_west=true,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=true,block_south=true,block_up=false,block_west=true,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=true,block_south=true,block_up=false,block_west=true,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=true,block_south=true,block_up=false,block_west=false,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=true,block_south=true,block_up=false,block_west=false,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=true,block_south=true,block_up=false,block_west=false,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=true,block_south=true,block_up=false,block_west=false,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=true,block_south=true,block_up=false,block_west=false,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=true,block_south=false,block_up=true,block_west=true,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=true,block_south=false,block_up=true,block_west=true,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=true,block_south=false,block_up=true,block_west=true,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=true,block_south=false,block_up=true,block_west=true,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=true,block_south=false,block_up=true,block_west=true,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=true,block_south=false,block_up=true,block_west=false,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=true,block_south=false,block_up=true,block_west=false,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=true,block_south=false,block_up=true,block_west=false,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=true,block_south=false,block_up=true,block_west=false,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=true,block_south=false,block_up=true,block_west=false,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=true,block_south=false,block_up=false,block_west=true,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=true,block_south=false,block_up=false,block_west=true,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=true,block_south=false,block_up=false,block_west=true,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=true,block_south=false,block_up=false,block_west=true,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=true,block_south=false,block_up=false,block_west=true,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=true,block_south=false,block_up=false,block_west=false,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=true,block_south=false,block_up=false,block_west=false,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=true,block_south=false,block_up=false,block_west=false,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=true,block_south=false,block_up=false,block_west=false,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=true,block_south=false,block_up=false,block_west=false,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=false,block_south=true,block_up=true,block_west=true,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=false,block_south=true,block_up=true,block_west=true,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=false,block_south=true,block_up=true,block_west=true,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=false,block_south=true,block_up=true,block_west=true,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=false,block_south=true,block_up=true,block_west=true,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=false,block_south=true,block_up=true,block_west=false,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=false,block_south=true,block_up=true,block_west=false,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=false,block_south=true,block_up=true,block_west=false,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=false,block_south=true,block_up=true,block_west=false,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=false,block_south=true,block_up=true,block_west=false,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=false,block_south=true,block_up=false,block_west=true,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=false,block_south=true,block_up=false,block_west=true,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=false,block_south=true,block_up=false,block_west=true,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=false,block_south=true,block_up=false,block_west=true,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=false,block_south=true,block_up=false,block_west=true,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=false,block_south=true,block_up=false,block_west=false,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=false,block_south=true,block_up=false,block_west=false,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=false,block_south=true,block_up=false,block_west=false,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=false,block_south=true,block_up=false,block_west=false,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=false,block_south=true,block_up=false,block_west=false,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=false,block_south=false,block_up=true,block_west=true,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=false,block_south=false,block_up=true,block_west=true,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=false,block_south=false,block_up=true,block_west=true,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=false,block_south=false,block_up=true,block_west=true,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=false,block_south=false,block_up=true,block_west=true,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=false,block_south=false,block_up=true,block_west=false,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=false,block_south=false,block_up=true,block_west=false,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=false,block_south=false,block_up=true,block_west=false,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=false,block_south=false,block_up=true,block_west=false,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=false,block_south=false,block_up=true,block_west=false,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=false,block_south=false,block_up=false,block_west=true,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=false,block_south=false,block_up=false,block_west=true,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=false,block_south=false,block_up=false,block_west=true,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=false,block_south=false,block_up=false,block_west=true,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=false,block_south=false,block_up=false,block_west=true,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=false,block_south=false,block_up=false,block_west=false,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=false,block_south=false,block_up=false,block_west=false,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=false,block_south=false,block_up=false,block_west=false,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=false,block_south=false,block_up=false,block_west=false,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=false,block_south=false,block_up=false,block_west=false,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=true,block_south=true,block_up=true,block_west=true,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=true,block_south=true,block_up=true,block_west=true,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=true,block_south=true,block_up=true,block_west=true,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=true,block_south=true,block_up=true,block_west=true,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=true,block_south=true,block_up=true,block_west=true,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=true,block_south=true,block_up=true,block_west=false,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=true,block_south=true,block_up=true,block_west=false,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=true,block_south=true,block_up=true,block_west=false,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=true,block_south=true,block_up=true,block_west=false,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=true,block_south=true,block_up=true,block_west=false,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=true,block_south=true,block_up=false,block_west=true,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=true,block_south=true,block_up=false,block_west=true,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=true,block_south=true,block_up=false,block_west=true,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=true,block_south=true,block_up=false,block_west=true,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=true,block_south=true,block_up=false,block_west=true,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=true,block_south=true,block_up=false,block_west=false,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=true,block_south=true,block_up=false,block_west=false,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=true,block_south=true,block_up=false,block_west=false,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=true,block_south=true,block_up=false,block_west=false,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=true,block_south=true,block_up=false,block_west=false,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=true,block_south=false,block_up=true,block_west=true,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=true,block_south=false,block_up=true,block_west=true,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=true,block_south=false,block_up=true,block_west=true,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=true,block_south=false,block_up=true,block_west=true,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=true,block_south=false,block_up=true,block_west=true,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=true,block_south=false,block_up=true,block_west=false,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=true,block_south=false,block_up=true,block_west=false,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=true,block_south=false,block_up=true,block_west=false,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=true,block_south=false,block_up=true,block_west=false,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=true,block_south=false,block_up=true,block_west=false,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=true,block_south=false,block_up=false,block_west=true,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=true,block_south=false,block_up=false,block_west=true,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=true,block_south=false,block_up=false,block_west=true,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=true,block_south=false,block_up=false,block_west=true,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=true,block_south=false,block_up=false,block_west=true,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=true,block_south=false,block_up=false,block_west=false,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=true,block_south=false,block_up=false,block_west=false,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=true,block_south=false,block_up=false,block_west=false,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=true,block_south=false,block_up=false,block_west=false,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=true,block_south=false,block_up=false,block_west=false,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=false,block_south=true,block_up=true,block_west=true,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=false,block_south=true,block_up=true,block_west=true,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=false,block_south=true,block_up=true,block_west=true,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=false,block_south=true,block_up=true,block_west=true,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=false,block_south=true,block_up=true,block_west=true,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=false,block_south=true,block_up=true,block_west=false,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=false,block_south=true,block_up=true,block_west=false,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=false,block_south=true,block_up=true,block_west=false,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=false,block_south=true,block_up=true,block_west=false,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=false,block_south=true,block_up=true,block_west=false,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=false,block_south=true,block_up=false,block_west=true,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=false,block_south=true,block_up=false,block_west=true,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=false,block_south=true,block_up=false,block_west=true,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=false,block_south=true,block_up=false,block_west=true,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=false,block_south=true,block_up=false,block_west=true,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=false,block_south=true,block_up=false,block_west=false,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=false,block_south=true,block_up=false,block_west=false,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=false,block_south=true,block_up=false,block_west=false,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=false,block_south=true,block_up=false,block_west=false,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=false,block_south=true,block_up=false,block_west=false,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=false,block_south=false,block_up=true,block_west=true,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=false,block_south=false,block_up=true,block_west=true,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=false,block_south=false,block_up=true,block_west=true,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=false,block_south=false,block_up=true,block_west=true,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=false,block_south=false,block_up=true,block_west=true,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=false,block_south=false,block_up=true,block_west=false,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=false,block_south=false,block_up=true,block_west=false,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=false,block_south=false,block_up=true,block_west=false,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=false,block_south=false,block_up=true,block_west=false,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=false,block_south=false,block_up=true,block_west=false,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=false,block_south=false,block_up=false,block_west=true,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=false,block_south=false,block_up=false,block_west=true,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=false,block_south=false,block_up=false,block_west=true,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=false,block_south=false,block_up=false,block_west=true,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=false,block_south=false,block_up=false,block_west=true,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=false,block_south=false,block_up=false,block_west=false,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=false,block_south=false,block_up=false,block_west=false,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=false,block_south=false,block_up=false,block_west=false,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=false,block_south=false,block_up=false,block_west=false,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=false,block_south=false,block_up=false,block_west=false,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=true,block_south=true,block_up=true,block_west=true,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=true,block_south=true,block_up=true,block_west=true,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=true,block_south=true,block_up=true,block_west=true,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=true,block_south=true,block_up=true,block_west=true,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=true,block_south=true,block_up=true,block_west=true,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=true,block_south=true,block_up=true,block_west=false,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=true,block_south=true,block_up=true,block_west=false,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=true,block_south=true,block_up=true,block_west=false,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=true,block_south=true,block_up=true,block_west=false,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=true,block_south=true,block_up=true,block_west=false,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=true,block_south=true,block_up=false,block_west=true,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=true,block_south=true,block_up=false,block_west=true,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=true,block_south=true,block_up=false,block_west=true,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=true,block_south=true,block_up=false,block_west=true,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=true,block_south=true,block_up=false,block_west=true,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=true,block_south=true,block_up=false,block_west=false,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=true,block_south=true,block_up=false,block_west=false,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=true,block_south=true,block_up=false,block_west=false,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=true,block_south=true,block_up=false,block_west=false,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=true,block_south=true,block_up=false,block_west=false,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=true,block_south=false,block_up=true,block_west=true,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=true,block_south=false,block_up=true,block_west=true,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=true,block_south=false,block_up=true,block_west=true,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=true,block_south=false,block_up=true,block_west=true,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=true,block_south=false,block_up=true,block_west=true,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=true,block_south=false,block_up=true,block_west=false,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=true,block_south=false,block_up=true,block_west=false,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=true,block_south=false,block_up=true,block_west=false,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=true,block_south=false,block_up=true,block_west=false,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=true,block_south=false,block_up=true,block_west=false,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=true,block_south=false,block_up=false,block_west=true,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=true,block_south=false,block_up=false,block_west=true,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=true,block_south=false,block_up=false,block_west=true,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=true,block_south=false,block_up=false,block_west=true,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=true,block_south=false,block_up=false,block_west=true,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=true,block_south=false,block_up=false,block_west=false,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=true,block_south=false,block_up=false,block_west=false,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=true,block_south=false,block_up=false,block_west=false,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=true,block_south=false,block_up=false,block_west=false,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=true,block_south=false,block_up=false,block_west=false,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=false,block_south=true,block_up=true,block_west=true,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=false,block_south=true,block_up=true,block_west=true,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=false,block_south=true,block_up=true,block_west=true,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=false,block_south=true,block_up=true,block_west=true,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=false,block_south=true,block_up=true,block_west=true,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=false,block_south=true,block_up=true,block_west=false,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=false,block_south=true,block_up=true,block_west=false,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=false,block_south=true,block_up=true,block_west=false,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=false,block_south=true,block_up=true,block_west=false,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=false,block_south=true,block_up=true,block_west=false,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=false,block_south=true,block_up=false,block_west=true,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=false,block_south=true,block_up=false,block_west=true,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=false,block_south=true,block_up=false,block_west=true,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=false,block_south=true,block_up=false,block_west=true,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=false,block_south=true,block_up=false,block_west=true,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=false,block_south=true,block_up=false,block_west=false,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=false,block_south=true,block_up=false,block_west=false,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=false,block_south=true,block_up=false,block_west=false,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=false,block_south=true,block_up=false,block_west=false,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=false,block_south=true,block_up=false,block_west=false,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=false,block_south=false,block_up=true,block_west=true,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=false,block_south=false,block_up=true,block_west=true,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=false,block_south=false,block_up=true,block_west=true,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=false,block_south=false,block_up=true,block_west=true,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=false,block_south=false,block_up=true,block_west=true,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=false,block_south=false,block_up=true,block_west=false,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=false,block_south=false,block_up=true,block_west=false,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=false,block_south=false,block_up=true,block_west=false,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=false,block_south=false,block_up=true,block_west=false,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=false,block_south=false,block_up=true,block_west=false,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=false,block_south=false,block_up=false,block_west=true,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=false,block_south=false,block_up=false,block_west=true,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=false,block_south=false,block_up=false,block_west=true,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=false,block_south=false,block_up=false,block_west=true,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=false,block_south=false,block_up=false,block_west=true,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=false,block_south=false,block_up=false,block_west=false,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=false,block_south=false,block_up=false,block_west=false,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=false,block_south=false,block_up=false,block_west=false,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=false,block_south=false,block_up=false,block_west=false,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=false,block_south=false,block_up=false,block_west=false,light=true,solid=false]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=true,block_south=true,block_up=true,block_west=true,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=true,block_south=true,block_up=true,block_west=true,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=true,block_south=true,block_up=true,block_west=true,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=true,block_south=true,block_up=true,block_west=true,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=true,block_south=true,block_up=true,block_west=true,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=true,block_south=true,block_up=true,block_west=false,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=true,block_south=true,block_up=true,block_west=false,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=true,block_south=true,block_up=true,block_west=false,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=true,block_south=true,block_up=true,block_west=false,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=true,block_south=true,block_up=true,block_west=false,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=true,block_south=true,block_up=false,block_west=true,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=true,block_south=true,block_up=false,block_west=true,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=true,block_south=true,block_up=false,block_west=true,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=true,block_south=true,block_up=false,block_west=true,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=true,block_south=true,block_up=false,block_west=true,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=true,block_south=true,block_up=false,block_west=false,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=true,block_south=true,block_up=false,block_west=false,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=true,block_south=true,block_up=false,block_west=false,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=true,block_south=true,block_up=false,block_west=false,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=true,block_south=true,block_up=false,block_west=false,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=true,block_south=false,block_up=true,block_west=true,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=true,block_south=false,block_up=true,block_west=true,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=true,block_south=false,block_up=true,block_west=true,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=true,block_south=false,block_up=true,block_west=true,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=true,block_south=false,block_up=true,block_west=true,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=true,block_south=false,block_up=true,block_west=false,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=true,block_south=false,block_up=true,block_west=false,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=true,block_south=false,block_up=true,block_west=false,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=true,block_south=false,block_up=true,block_west=false,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=true,block_south=false,block_up=true,block_west=false,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=true,block_south=false,block_up=false,block_west=true,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=true,block_south=false,block_up=false,block_west=true,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=true,block_south=false,block_up=false,block_west=true,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=true,block_south=false,block_up=false,block_west=true,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=true,block_south=false,block_up=false,block_west=true,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=true,block_south=false,block_up=false,block_west=false,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=true,block_south=false,block_up=false,block_west=false,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=true,block_south=false,block_up=false,block_west=false,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=true,block_south=false,block_up=false,block_west=false,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=true,block_south=false,block_up=false,block_west=false,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=false,block_south=true,block_up=true,block_west=true,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=false,block_south=true,block_up=true,block_west=true,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=false,block_south=true,block_up=true,block_west=true,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=false,block_south=true,block_up=true,block_west=true,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=false,block_south=true,block_up=true,block_west=true,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=false,block_south=true,block_up=true,block_west=false,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=false,block_south=true,block_up=true,block_west=false,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=false,block_south=true,block_up=true,block_west=false,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=false,block_south=true,block_up=true,block_west=false,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=false,block_south=true,block_up=true,block_west=false,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=false,block_south=true,block_up=false,block_west=true,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=false,block_south=true,block_up=false,block_west=true,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=false,block_south=true,block_up=false,block_west=true,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=false,block_south=true,block_up=false,block_west=true,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=false,block_south=true,block_up=false,block_west=true,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=false,block_south=true,block_up=false,block_west=false,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=false,block_south=true,block_up=false,block_west=false,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=false,block_south=true,block_up=false,block_west=false,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=false,block_south=true,block_up=false,block_west=false,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=false,block_south=true,block_up=false,block_west=false,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=false,block_south=false,block_up=true,block_west=true,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=false,block_south=false,block_up=true,block_west=true,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=false,block_south=false,block_up=true,block_west=true,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=false,block_south=false,block_up=true,block_west=true,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=false,block_south=false,block_up=true,block_west=true,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=false,block_south=false,block_up=true,block_west=false,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=false,block_south=false,block_up=true,block_west=false,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=false,block_south=false,block_up=true,block_west=false,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=false,block_south=false,block_up=true,block_west=false,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=false,block_south=false,block_up=true,block_west=false,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=false,block_south=false,block_up=false,block_west=true,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=false,block_south=false,block_up=false,block_west=true,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=false,block_south=false,block_up=false,block_west=true,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=false,block_south=false,block_up=false,block_west=true,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=false,block_south=false,block_up=false,block_west=true,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=false,block_south=false,block_up=false,block_west=false,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=false,block_south=false,block_up=false,block_west=false,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=false,block_south=false,block_up=false,block_west=false,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=false,block_south=false,block_up=false,block_west=false,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=true,block_north=false,block_south=false,block_up=false,block_west=false,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=true,block_south=true,block_up=true,block_west=true,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=true,block_south=true,block_up=true,block_west=true,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=true,block_south=true,block_up=true,block_west=true,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=true,block_south=true,block_up=true,block_west=true,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=true,block_south=true,block_up=true,block_west=true,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=true,block_south=true,block_up=true,block_west=false,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=true,block_south=true,block_up=true,block_west=false,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=true,block_south=true,block_up=true,block_west=false,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=true,block_south=true,block_up=true,block_west=false,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=true,block_south=true,block_up=true,block_west=false,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=true,block_south=true,block_up=false,block_west=true,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=true,block_south=true,block_up=false,block_west=true,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=true,block_south=true,block_up=false,block_west=true,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=true,block_south=true,block_up=false,block_west=true,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=true,block_south=true,block_up=false,block_west=true,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=true,block_south=true,block_up=false,block_west=false,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=true,block_south=true,block_up=false,block_west=false,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=true,block_south=true,block_up=false,block_west=false,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=true,block_south=true,block_up=false,block_west=false,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=true,block_south=true,block_up=false,block_west=false,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=true,block_south=false,block_up=true,block_west=true,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=true,block_south=false,block_up=true,block_west=true,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=true,block_south=false,block_up=true,block_west=true,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=true,block_south=false,block_up=true,block_west=true,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=true,block_south=false,block_up=true,block_west=true,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=true,block_south=false,block_up=true,block_west=false,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=true,block_south=false,block_up=true,block_west=false,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=true,block_south=false,block_up=true,block_west=false,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=true,block_south=false,block_up=true,block_west=false,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=true,block_south=false,block_up=true,block_west=false,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=true,block_south=false,block_up=false,block_west=true,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=true,block_south=false,block_up=false,block_west=true,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=true,block_south=false,block_up=false,block_west=true,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=true,block_south=false,block_up=false,block_west=true,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=true,block_south=false,block_up=false,block_west=true,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=true,block_south=false,block_up=false,block_west=false,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=true,block_south=false,block_up=false,block_west=false,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=true,block_south=false,block_up=false,block_west=false,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=true,block_south=false,block_up=false,block_west=false,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=true,block_south=false,block_up=false,block_west=false,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=false,block_south=true,block_up=true,block_west=true,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=false,block_south=true,block_up=true,block_west=true,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=false,block_south=true,block_up=true,block_west=true,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=false,block_south=true,block_up=true,block_west=true,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=false,block_south=true,block_up=true,block_west=true,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=false,block_south=true,block_up=true,block_west=false,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=false,block_south=true,block_up=true,block_west=false,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=false,block_south=true,block_up=true,block_west=false,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=false,block_south=true,block_up=true,block_west=false,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=false,block_south=true,block_up=true,block_west=false,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=false,block_south=true,block_up=false,block_west=true,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=false,block_south=true,block_up=false,block_west=true,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=false,block_south=true,block_up=false,block_west=true,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=false,block_south=true,block_up=false,block_west=true,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=false,block_south=true,block_up=false,block_west=true,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=false,block_south=true,block_up=false,block_west=false,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=false,block_south=true,block_up=false,block_west=false,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=false,block_south=true,block_up=false,block_west=false,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=false,block_south=true,block_up=false,block_west=false,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=false,block_south=true,block_up=false,block_west=false,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=false,block_south=false,block_up=true,block_west=true,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=false,block_south=false,block_up=true,block_west=true,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=false,block_south=false,block_up=true,block_west=true,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=false,block_south=false,block_up=true,block_west=true,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=false,block_south=false,block_up=true,block_west=true,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=false,block_south=false,block_up=true,block_west=false,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=false,block_south=false,block_up=true,block_west=false,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=false,block_south=false,block_up=true,block_west=false,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=false,block_south=false,block_up=true,block_west=false,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=false,block_south=false,block_up=true,block_west=false,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=false,block_south=false,block_up=false,block_west=true,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=false,block_south=false,block_up=false,block_west=true,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=false,block_south=false,block_up=false,block_west=true,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=false,block_south=false,block_up=false,block_west=true,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=false,block_south=false,block_up=false,block_west=true,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=false,block_south=false,block_up=false,block_west=false,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=false,block_south=false,block_up=false,block_west=false,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=false,block_south=false,block_up=false,block_west=false,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=false,block_south=false,block_up=false,block_west=false,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=true,block_east=false,block_north=false,block_south=false,block_up=false,block_west=false,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=true,block_south=true,block_up=true,block_west=true,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=true,block_south=true,block_up=true,block_west=true,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=true,block_south=true,block_up=true,block_west=true,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=true,block_south=true,block_up=true,block_west=true,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=true,block_south=true,block_up=true,block_west=true,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=true,block_south=true,block_up=true,block_west=false,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=true,block_south=true,block_up=true,block_west=false,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=true,block_south=true,block_up=true,block_west=false,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=true,block_south=true,block_up=true,block_west=false,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=true,block_south=true,block_up=true,block_west=false,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=true,block_south=true,block_up=false,block_west=true,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=true,block_south=true,block_up=false,block_west=true,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=true,block_south=true,block_up=false,block_west=true,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=true,block_south=true,block_up=false,block_west=true,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=true,block_south=true,block_up=false,block_west=true,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=true,block_south=true,block_up=false,block_west=false,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=true,block_south=true,block_up=false,block_west=false,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=true,block_south=true,block_up=false,block_west=false,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=true,block_south=true,block_up=false,block_west=false,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=true,block_south=true,block_up=false,block_west=false,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=true,block_south=false,block_up=true,block_west=true,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=true,block_south=false,block_up=true,block_west=true,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=true,block_south=false,block_up=true,block_west=true,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=true,block_south=false,block_up=true,block_west=true,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=true,block_south=false,block_up=true,block_west=true,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=true,block_south=false,block_up=true,block_west=false,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=true,block_south=false,block_up=true,block_west=false,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=true,block_south=false,block_up=true,block_west=false,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=true,block_south=false,block_up=true,block_west=false,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=true,block_south=false,block_up=true,block_west=false,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=true,block_south=false,block_up=false,block_west=true,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=true,block_south=false,block_up=false,block_west=true,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=true,block_south=false,block_up=false,block_west=true,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=true,block_south=false,block_up=false,block_west=true,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=true,block_south=false,block_up=false,block_west=true,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=true,block_south=false,block_up=false,block_west=false,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=true,block_south=false,block_up=false,block_west=false,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=true,block_south=false,block_up=false,block_west=false,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=true,block_south=false,block_up=false,block_west=false,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=true,block_south=false,block_up=false,block_west=false,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=false,block_south=true,block_up=true,block_west=true,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=false,block_south=true,block_up=true,block_west=true,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=false,block_south=true,block_up=true,block_west=true,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=false,block_south=true,block_up=true,block_west=true,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=false,block_south=true,block_up=true,block_west=true,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=false,block_south=true,block_up=true,block_west=false,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=false,block_south=true,block_up=true,block_west=false,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=false,block_south=true,block_up=true,block_west=false,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=false,block_south=true,block_up=true,block_west=false,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=false,block_south=true,block_up=true,block_west=false,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=false,block_south=true,block_up=false,block_west=true,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=false,block_south=true,block_up=false,block_west=true,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=false,block_south=true,block_up=false,block_west=true,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=false,block_south=true,block_up=false,block_west=true,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=false,block_south=true,block_up=false,block_west=true,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=false,block_south=true,block_up=false,block_west=false,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=false,block_south=true,block_up=false,block_west=false,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=false,block_south=true,block_up=false,block_west=false,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=false,block_south=true,block_up=false,block_west=false,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=false,block_south=true,block_up=false,block_west=false,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=false,block_south=false,block_up=true,block_west=true,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=false,block_south=false,block_up=true,block_west=true,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=false,block_south=false,block_up=true,block_west=true,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=false,block_south=false,block_up=true,block_west=true,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=false,block_south=false,block_up=true,block_west=true,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=false,block_south=false,block_up=true,block_west=false,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
(OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=false,block_south=false,block_up=true,block_west=false,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=false,block_south=false,block_up=true,block_west=false,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=false,block_south=false,block_up=true,block_west=false,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=false,block_south=false,block_up=true,block_west=false,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=false,block_south=false,block_up=false,block_west=true,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=false,block_south=false,block_up=false,block_west=true,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=false,block_south=false,block_up=false,block_west=true,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=false,block_south=false,block_up=false,block_west=true,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=false,block_south=false,block_up=false,block_west=true,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=false,block_south=false,block_up=false,block_west=false,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=false,block_south=false,block_up=false,block_west=false,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=false,block_south=false,block_up=false,block_west=false,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=false,block_south=false,block_up=false,block_west=false,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=true,block_north=false,block_south=false,block_up=false,block_west=false,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=true,block_south=true,block_up=true,block_west=true,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=true,block_south=true,block_up=true,block_west=true,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=true,block_south=true,block_up=true,block_west=true,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=true,block_south=true,block_up=true,block_west=true,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=true,block_south=true,block_up=true,block_west=true,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=true,block_south=true,block_up=true,block_west=false,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=true,block_south=true,block_up=true,block_west=false,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=true,block_south=true,block_up=true,block_west=false,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=true,block_south=true,block_up=true,block_west=false,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=true,block_south=true,block_up=true,block_west=false,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=true,block_south=true,block_up=false,block_west=true,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=true,block_south=true,block_up=false,block_west=true,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=true,block_south=true,block_up=false,block_west=true,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=true,block_south=true,block_up=false,block_west=true,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=true,block_south=true,block_up=false,block_west=true,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=true,block_south=true,block_up=false,block_west=false,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=true,block_south=true,block_up=false,block_west=false,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=true,block_south=true,block_up=false,block_west=false,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=true,block_south=true,block_up=false,block_west=false,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=true,block_south=true,block_up=false,block_west=false,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=true,block_south=false,block_up=true,block_west=true,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=true,block_south=false,block_up=true,block_west=true,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=true,block_south=false,block_up=true,block_west=true,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=true,block_south=false,block_up=true,block_west=true,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=true,block_south=false,block_up=true,block_west=true,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=true,block_south=false,block_up=true,block_west=false,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=true,block_south=false,block_up=true,block_west=false,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=true,block_south=false,block_up=true,block_west=false,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=true,block_south=false,block_up=true,block_west=false,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=true,block_south=false,block_up=true,block_west=false,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=true,block_south=false,block_up=false,block_west=true,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=true,block_south=false,block_up=false,block_west=true,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=true,block_south=false,block_up=false,block_west=true,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=true,block_south=false,block_up=false,block_west=true,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=true,block_south=false,block_up=false,block_west=true,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=true,block_south=false,block_up=false,block_west=false,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=true,block_south=false,block_up=false,block_west=false,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=true,block_south=false,block_up=false,block_west=false,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=true,block_south=false,block_up=false,block_west=false,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=true,block_south=false,block_up=false,block_west=false,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=false,block_south=true,block_up=true,block_west=true,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=false,block_south=true,block_up=true,block_west=true,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=false,block_south=true,block_up=true,block_west=true,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=false,block_south=true,block_up=true,block_west=true,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=false,block_south=true,block_up=true,block_west=true,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=false,block_south=true,block_up=true,block_west=false,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=false,block_south=true,block_up=true,block_west=false,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=false,block_south=true,block_up=true,block_west=false,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=false,block_south=true,block_up=true,block_west=false,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=false,block_south=true,block_up=true,block_west=false,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=false,block_south=true,block_up=false,block_west=true,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=false,block_south=true,block_up=false,block_west=true,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=false,block_south=true,block_up=false,block_west=true,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=false,block_south=true,block_up=false,block_west=true,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=false,block_south=true,block_up=false,block_west=true,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=false,block_south=true,block_up=false,block_west=false,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=false,block_south=true,block_up=false,block_west=false,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=false,block_south=true,block_up=false,block_west=false,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=false,block_south=true,block_up=false,block_west=false,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=false,block_south=true,block_up=false,block_west=false,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=false,block_south=false,block_up=true,block_west=true,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=false,block_south=false,block_up=true,block_west=true,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=false,block_south=false,block_up=true,block_west=true,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=false,block_south=false,block_up=true,block_west=true,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=false,block_south=false,block_up=true,block_west=true,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=false,block_south=false,block_up=true,block_west=false,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=false,block_south=false,block_up=true,block_west=false,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=false,block_south=false,block_up=true,block_west=false,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=false,block_south=false,block_up=true,block_west=false,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=false,block_south=false,block_up=true,block_west=false,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=false,block_south=false,block_up=false,block_west=true,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=false,block_south=false,block_up=false,block_west=true,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=false,block_south=false,block_up=false,block_west=true,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=false,block_south=false,block_up=false,block_west=true,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=false,block_south=false,block_up=false,block_west=true,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=false,block_south=false,block_up=false,block_west=false,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=frameTextureData): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=false,block_south=false,block_up=false,block_west=false,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: Texture was completely transparent for BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=false,block_south=false,block_up=false,block_west=false,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(pass=resourceLocation): Couldn't derive RGBA from BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=false,block_south=false,block_up=false,block_west=false,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/WARN] [journeymap/]: ColorHelper.setBlockColor(): Texture unusable. Using MaterialMapColor instead for: BlockMD [psi:conjured:psi:conjured[block_down=false,block_east=false,block_north=false,block_south=false,block_up=false,block_west=false,light=true,solid=true]] (OpenToSky,Transparency,TransparentRoof)
[23:18:18] [Client thread/INFO] [journeymap/]: Cached colors from TextureAtlasSprites: 1537
[23:18:18] [Client thread/INFO] [journeymap/]: Initialized 63958 block colors from mods and resource packs in 1438ms
[23:18:19] [Client thread/INFO] [journeymap/]: Color palette file generated with 4996 colors in 975ms for: C:\Users\keega\Documents\Curse\Minecraft\Instances\FTB Presents HermitPack\journeymap\colorpalette.json
[23:18:19] [Client thread/INFO] [journeymap/]: Updated color palette file: C:\Users\keega\Documents\Curse\Minecraft\Instances\FTB Presents HermitPack\journeymap\colorpalette.json
[23:18:19] [Client thread/INFO] [journeymap/]: Mapping started in C:\Users\keega\Documents\Curse\Minecraft\Instances\FTB Presents HermitPack\journeymap\data\sp\New World\DIM0. Memory: 3478MB total, 839MB free 
[23:18:24] [server thread/INFO] [sTDOUT/]: [keegan.labstuff.tileentity.DataConnectedDevice:registerWithNetwork:29]: remote
[23:19:11] [Client thread/WARN] [journeymap/]: TileDrawStep.updateRegionTexture was slow: 65.196275 (Warning limit reached)
[23:19:11] [Client thread/WARN] [journeymap/]: TileDrawStep.updateRegionTexture: Avg:     0.05ms, Min:        0ms, Max:       65.2ms, Total:          1 sec, Count:    20941, Canceled:        0, Slow:       10
[23:19:32] [Netty Local Client IO #1/DEBUG] [EnderCore/]: Skipping syncing field com.enderio.core.common.config.ConfigHandler.showRegistryNameTooltips as it was marked NoSync
[23:19:32] [Netty Local Client IO #1/DEBUG] [EnderCore/]: Skipping syncing field com.enderio.core.common.config.ConfigHandler.showOredictTooltips as it was marked NoSync
[23:19:32] [Netty Local Client IO #1/DEBUG] [EnderCore/]: Skipping syncing field com.enderio.core.common.config.ConfigHandler.showDurabilityTooltips as it was marked NoSync
[23:19:32] [Netty Local Client IO #1/INFO] [EnderCore/]: Reset configs to client values for com.enderio.core.common.config.ConfigHandler
[23:19:32] [Client thread/INFO] [journeymap/]: Mapping halted in C:\Users\keega\Documents\Curse\Minecraft\Instances\FTB Presents HermitPack\journeymap\data\sp\New World\DIM0

 

LabStuff is mine

DataConnectedDevice, a parent TE for entities connected to the data cable network

 

package keegan.labstuff.tileentity;

import net.minecraft.tileentity.TileEntity;
import net.minecraft.util.ITickable;
import net.minecraft.util.math.BlockPos;

public class DataConnectedDevice extends TileEntity implements ITickable
{
private String id;
private TileEntityDataCable network;
private int tickCount;


@Override
public void update()
{
	tickCount++;
	if(tickCount>=100)
	{
		tickCount=0;
		if(id == null && !worldObj.isRemote)
			registerWithNetwork();
	}
}

public void registerWithNetwork()
{
	if(!worldObj.isRemote) {
		System.out.println("remote");
		if (worldObj.getBlockState(pos.east()).getBlock() != null && id == null) {
			register(pos.east());
		}if (worldObj.getBlockState(pos.west()).getBlock() != null && id == null) {
			register(pos.west());
		}if (worldObj.getBlockState(pos.up()).getBlock() != null && id == null) {
			register(pos.up());
		}if (worldObj.getBlockState(pos.down()).getBlock() != null && id == null) {
			register(pos.down());
		}if (worldObj.getBlockState(pos.south()).getBlock() != null && id == null) {
			register(pos.south());
		}if (worldObj.getBlockState(pos.north()).getBlock() != null && id == null) {
			register(pos.north());
		}
	}
	else
	{
		System.out.println("So remote");
	}
}

public void register(BlockPos pos)
{
	int idPossible = 0;
	if(worldObj.getTileEntity(pos) != null && worldObj.getTileEntity(pos) instanceof TileEntityDataCable)
	while(id == null)
	{
		network = (TileEntityDataCable)worldObj.getTileEntity(pos);
		if(network.getDeviceById("_" + idPossible) != null)
		{
			idPossible += 1;
		}
		else
		{
			this.id = "_" + idPossible;
			network.addDevice(this);
		}
	}
}

public String getId() {
	return id;
}

public void performAction(String command) {}

public TileEntityDataCable getNetwork()
{
	return network;
}
}

 

And the blocks

 

package keegan.labstuff.blocks;

import java.util.Random;

import keegan.labstuff.LabStuffMain;
import keegan.labstuff.tileentity.TileEntityAcceleratorControlPanel;
import net.minecraft.block.*;
import net.minecraft.block.material.Material;
import net.minecraft.block.state.IBlockState;
import net.minecraft.entity.EntityLivingBase;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.item.ItemStack;
import net.minecraft.tileentity.TileEntity;
import net.minecraft.util.*;
import net.minecraft.util.math.*;
import net.minecraft.world.*;

public class BlockAcceleratorControlPanel extends Block implements ITileEntityProvider {

public BlockAcceleratorControlPanel() {
	super(Material.IRON);
}

@Override
public TileEntity createNewTileEntity(World p_149915_1_, int p_149915_2_) {
	// TODO Auto-generated method stub
	return new TileEntityAcceleratorControlPanel();
}

@Override
public boolean onBlockActivated(World world, BlockPos pos, IBlockState state, EntityPlayer player, EnumHand hand, ItemStack held, EnumFacing facing, float fx, float par8, float par9) {
	if (!world.isRemote) {
		// System.out.println("Server");
		if (!player.isSneaking()) {
			player.openGui(LabStuffMain.instance, 11, world, pos.getX(), pos.getY(), pos.getZ());
			return true;
		}
	}
	return false;
}

@Override
public void onBlockPlacedBy(World world, BlockPos pos, IBlockState state, EntityLivingBase player, ItemStack stack) {
	super.onBlockPlacedBy(world, pos, state, player, stack);
	world.setBlockState(pos.subtract(new Vec3i(3, 0, 0)), LabStuffMain.blockACPGag.getDefaultState());
	world.setBlockState(pos.subtract(new Vec3i(2,0,0)), LabStuffMain.blockACPGag.getDefaultState());
	world.setBlockState(pos.subtract(new Vec3i(1,0,0)), LabStuffMain.blockACPGag.getDefaultState());
	world.setBlockState(pos.subtract(new Vec3i(3, 0, 0)).add(0, 1, 0), LabStuffMain.blockACPGag.getDefaultState());
	world.setBlockState(pos.subtract(new Vec3i(2, 0, 0)).add(0, 1, 0), LabStuffMain.blockACPGag.getDefaultState());
	world.setBlockState(pos.subtract(new Vec3i(1, 0, 0)).add(0, 1, 0), LabStuffMain.blockACPGag.getDefaultState());
	world.setBlockState(pos.add(0, 0, 2), LabStuffMain.blockACPGag.getDefaultState());
	world.setBlockState(pos.add(0, 0, 1), LabStuffMain.blockACPGag.getDefaultState());
	world.setBlockState(pos.add(0, 1, 2), LabStuffMain.blockACPGag.getDefaultState());
	world.setBlockState(pos.add(0, 1, 1), LabStuffMain.blockACPGag.getDefaultState());
	world.setBlockState(pos.add(0, 1, 0), LabStuffMain.blockACPGag.getDefaultState());
}

@Override
public boolean isOpaqueCube(IBlockState state) {
	return false;
}

@Override
public boolean shouldSideBeRendered(IBlockState state, IBlockAccess access, BlockPos pos, EnumFacing side) {
	return false;
}

@Override
public boolean isNormalCube(IBlockState state, IBlockAccess access, BlockPos pos) {
	return false;
}

@Override
public void updateTick(World world, BlockPos pos, IBlockState state, Random rand) {
	((TileEntityAcceleratorControlPanel) world.getTileEntity(pos)).collision();
}

}

 

 

package keegan.labstuff.blocks;

import keegan.labstuff.LabStuffMain;
import keegan.labstuff.tileentity.TileEntityAcceleratorInterface;
import net.minecraft.block.*;
import net.minecraft.block.material.Material;
import net.minecraft.block.state.IBlockState;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.item.ItemStack;
import net.minecraft.tileentity.TileEntity;
import net.minecraft.util.*;
import net.minecraft.util.math.BlockPos;
import net.minecraft.world.World;

public class BlockAcceleratorInterface extends Block implements ITileEntityProvider
{

public BlockAcceleratorInterface()
{
	super(Material.IRON);
}

@Override
public TileEntity createNewTileEntity(World p_149915_1_, int p_149915_2_) {
	// TODO Auto-generated method stub
	return new TileEntityAcceleratorInterface();
}

@Override
public boolean onBlockActivated(World world, BlockPos pos, IBlockState state, EntityPlayer player, EnumHand hand, ItemStack held, EnumFacing facing, float fx, float par8, float par9)
{
	if (!world.isRemote)
	{
		// System.out.println("Server");
		if (!player.isSneaking())
		{
			player.openGui(LabStuffMain.instance, 12, world, pos.getX(), pos.getY(), pos.getZ());
			return true;
		}
	}
	return false;
}

}

 

 

package keegan.labstuff.blocks;

import keegan.labstuff.tileentity.*;
import net.minecraft.block.*;
import net.minecraft.block.material.Material;
import net.minecraft.block.state.IBlockState;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.item.ItemStack;
import net.minecraft.tileentity.TileEntity;
import net.minecraft.util.*;
import net.minecraft.util.math.BlockPos;
import net.minecraft.util.text.TextComponentString;
import net.minecraft.world.*;

public class BlockDataCable extends Block implements ITileEntityProvider
{
public BlockDataCable(Material mat)
{
	super(mat);
}

@Override
    public boolean onBlockActivated(World world, BlockPos pos, IBlockState state, EntityPlayer player, EnumHand hand, ItemStack held, EnumFacing facing, float fx, float par8, float par9) {
    	if(!world.isRemote)
    	{
    		TileEntity tile = world.getTileEntity(pos);
    		if(tile instanceof TileEntityDataCable)
    		{
    			player.addChatMessage(new TextComponentString("Network is holding " + ((TileEntityDataCable)tile).getDeviceCount()));
    			return true;
    		}
    		return false;
    	}
    	return false;
    }

@Override
public TileEntity createNewTileEntity(World p_149915_1_, int p_149915_2_) {
	// TODO Auto-generated method stub
	return new TileEntityDataCable();
}

@Override
    public boolean isOpaqueCube(IBlockState state) 
    {
            return false;
    }
    
@Override
public boolean shouldSideBeRendered(IBlockState state, IBlockAccess access, BlockPos pos, EnumFacing side) {
	return false;
}
}

 

[shadow=gray,left][glow=red,2,300]KEEGAN[/glow][/shadow]

Link to comment
Share on other sites

worldObj is null when you read from NBT.  You are not allowed to reference the world before the TE has been given a world, which happens AFTER it's read from disk.

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

Sadly, that didn't help.

 

package keegan.labstuff.tileentity;

import keegan.labstuff.LabStuffMain;
import keegan.labstuff.items.ItemDiscoveryDrive;
import keegan.labstuff.recipes.Recipes;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.inventory.IInventory;
import net.minecraft.item.ItemStack;
import net.minecraft.nbt.*;
import net.minecraft.tileentity.TileEntity;
import net.minecraft.util.math.*;

public class TileEntityAcceleratorInterface extends DataConnectedDevice implements IInventory
{

private ItemStack[] chestContents = new ItemStack[3];
private TileEntityAcceleratorControlPanel control;
private int tickCount;
public boolean upgraded;

public TileEntityAcceleratorInterface()
{
	tickCount = 0;
	control = null;
	upgraded = false;
}

@Override
public int getSizeInventory()
{
	// TODO Auto-generated method stub
	return chestContents.length;
}

@Override
public ItemStack getStackInSlot(int slot)
{
	return chestContents[slot];
}

public void activateAntiMatter()
{
	upgraded = true;

}

@Override
public void update()
{
	super.update();

	if(nbtNetwork != null && worldObj != null)
	{
		register(nbtNetwork);
		nbtNetwork = null;
	}

	tickCount++;
	if(tickCount>=400)
	{
		tickCount = 0;
		if(!worldObj.isRemote)
		{
			if(this.getId() == null)
				registerWithNetwork();
			if(getNetwork() != null)
			{
				while(control == null)
				{
					if(getNetwork().getDeviceCount() == 0)
						break;
					for(int i = 0; i < getNetwork().getDeviceCount(); i++)
					{
						detectControl(getNetwork().getDeviceByIndex(i).getId());
					}
				}
			}
			else
				System.out.println("no network");
			if(control != null)
			{
				if(getStackInSlot(0) != null)
				{
					DataPackage hasMatter = new DataPackage(control, "particlesLoaded");
					getNetwork().sendMessage(hasMatter);
				}
				else
				{
					DataPackage hasMatter = new DataPackage(control, "particlesNotLoaded");
					getNetwork().sendMessage(hasMatter);
				}
				TileEntity core = worldObj.getTileEntity(pos.subtract(new Vec3i(6,0,0)));
				if(core instanceof TileEntityAcceleratorDetectorCore)
				{
					if(((TileEntityAcceleratorDetectorCore) core).isGoodForLaunch())
					{
						DataPackage isPowered = new DataPackage(control, "powered");
						getNetwork().sendMessage(isPowered);
					}
					else
					{
						DataPackage isPowered = new DataPackage(control, "notPowered");
						getNetwork().sendMessage(isPowered);
					}
				}
				else
				{
					System.out.println("Wheres the core?");
				}
			}
		}
	}
}

private void detectControl(String i)
{
	if(getNetwork().getDeviceById(i) instanceof TileEntityAcceleratorControlPanel)
	{
		System.out.println("Control detected");
		control = (TileEntityAcceleratorControlPanel) getNetwork().getDeviceById(i);
	}
}

@Override
public void performAction(String command)
{
	if(command.startsWith("discovery_"))
	{
		int discovery = Integer.parseInt(command.substring(command.indexOf("_")+1));
		if(getStackInSlot(1) != null && getStackInSlot(1).isItemEqual(new ItemStack(LabStuffMain.itemDiscoveryDrive)))
		{
			setInventorySlotContents(1, Recipes.accelDiscoveries.get(discovery).getDiscoveryFlashDrive());
			if(upgraded)
			{
				if(getStackInSlot(2).getItem().equals(LabStuffMain.itemEmptyWarpDriveBattery))
					setInventorySlotContents(2, new ItemStack(LabStuffMain.itemWarpDriveBattery));
			}
		}
	}
	if(command.startsWith("launch"))
	{
		System.out.println("Accelerator active");
		decrStackSize(0, 1);
	}
}

@Override
public ItemStack decrStackSize(int slot, int amt) 
{
	// TODO Auto-generated method stub
	ItemStack stack = getStackInSlot(slot);
	if (stack != null)
	{
			if (stack.stackSize <= amt)
			{
				setInventorySlotContents(slot, null);
			}
			else
			{
				stack = stack.splitStack(amt);
				if (stack.stackSize == 0)
				{
					setInventorySlotContents(slot, null);
				}
			}
	}
	return stack;
}

@Override
public void setInventorySlotContents(int slot, ItemStack itemstack) 
{
	chestContents[slot] = itemstack;
	if(itemstack != null && itemstack.stackSize > getInventoryStackLimit())
	{
		itemstack.stackSize = getInventoryStackLimit();
	}

}

@Override
public int getInventoryStackLimit() 
{
	// TODO Auto-generated method stub
	return 1;
}

@Override
public boolean isUseableByPlayer(EntityPlayer entityplayer) 
{
	// TODO Auto-generated method stub
	return true;
}


@Override
public boolean isItemValidForSlot(int slot, ItemStack itemstack) {
	if(slot == 0)
		return true;
	if(slot == 2 && (itemstack.isItemEqual(new ItemStack(LabStuffMain.itemWarpDriveBattery)) || itemstack.isItemEqual(new ItemStack(LabStuffMain.itemEmptyWarpDriveBattery))))
		return true;
	if(slot == 1 && itemstack.getItem() instanceof ItemDiscoveryDrive)
		return true;
	return false;
}


@Override
public NBTTagCompound writeToNBT(NBTTagCompound tag)
{
	super.writeToNBT(tag);
	NBTTagList itemList = new NBTTagList();
	for (int i = 0; i < chestContents.length; i++) 
	{
		ItemStack stack = chestContents[i];
		if (stack != null) 
		{
			NBTTagCompound tagCompound = new NBTTagCompound();
			tagCompound.setByte("Slot", (byte) i);
			stack.writeToNBT(tagCompound);
			itemList.appendTag(tagCompound);
		}
	}
	tag.setTag("Inventory", itemList);
	if(getNetwork()!=null)
	{
		int netX = getNetwork().getPos().getX();
		int netY = getNetwork().getPos().getY();
		int netZ = getNetwork().getPos().getZ();
		int[] networkLoc = {netX,netY,netZ};

		tag.setIntArray("network", networkLoc);

		tag.setBoolean("upgraded", upgraded);
	}
	return tag;
}

private BlockPos nbtNetwork;

@Override
public void readFromNBT(NBTTagCompound tag)
{
	super.readFromNBT(tag);
	NBTTagList tagList = tag.getTagList("Inventory", 10);
	for (int i = 0; i < tagList.tagCount(); i++) 
	{
		NBTTagCompound tagCompound = (NBTTagCompound) tagList.getCompoundTagAt(i);
		byte slot = tagCompound.getByte("Slot");
		if (slot >= 0 && slot < chestContents.length) 
		{
			chestContents[slot] = ItemStack.loadItemStackFromNBT(tagCompound);
		}
	}
	int[] net = tag.getIntArray("network");
	if(net != null && net.length > 0)
		nbtNetwork = new BlockPos(net[0], net[1], net[2]);
	upgraded = tag.getBoolean("upgraded");
}

@Override
public String getName() {
	// TODO Auto-generated method stub
	return null;
}

@Override
public boolean hasCustomName() {
	// TODO Auto-generated method stub
	return false;
}

@Override
public ItemStack removeStackFromSlot(int index) {
	ItemStack stack = chestContents[index];
	chestContents[index] = null;
	return stack;
}

@Override
public void openInventory(EntityPlayer player) {
	// TODO Auto-generated method stub

}

@Override
public void closeInventory(EntityPlayer player) {
	// TODO Auto-generated method stub

}

@Override
public int getField(int id) {
	// TODO Auto-generated method stub
	return 0;
}

@Override
public void setField(int id, int value) {
	// TODO Auto-generated method stub

}

@Override
public int getFieldCount() {
	// TODO Auto-generated method stub
	return 0;
}

@Override
public void clear() {
	// TODO Auto-generated method stub

}
}

 

[shadow=gray,left][glow=red,2,300]KEEGAN[/glow][/shadow]

Link to comment
Share on other sites

Sadly, that didn't help.

 

package keegan.labstuff.tileentity;

import keegan.labstuff.LabStuffMain;
import keegan.labstuff.items.ItemDiscoveryDrive;
import keegan.labstuff.recipes.Recipes;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.inventory.IInventory;
import net.minecraft.item.ItemStack;
import net.minecraft.nbt.*;
import net.minecraft.tileentity.TileEntity;
import net.minecraft.util.math.*;

public class TileEntityAcceleratorInterface extends DataConnectedDevice implements IInventory
{

private ItemStack[] chestContents = new ItemStack[3];
private TileEntityAcceleratorControlPanel control;
private int tickCount;
public boolean upgraded;

public TileEntityAcceleratorInterface()
{
	tickCount = 0;
	control = null;
	upgraded = false;
}

@Override
public int getSizeInventory()
{
	// TODO Auto-generated method stub
	return chestContents.length;
}

@Override
public ItemStack getStackInSlot(int slot)
{
	return chestContents[slot];
}

public void activateAntiMatter()
{
	upgraded = true;

}

@Override
public void update()
{
	super.update();

	if(nbtNetwork != null && worldObj != null)
	{
		register(nbtNetwork);
		nbtNetwork = null;
	}

	tickCount++;
	if(tickCount>=400)
	{
		tickCount = 0;
		if(!worldObj.isRemote)
		{
			if(this.getId() == null)
				registerWithNetwork();
			if(getNetwork() != null)
			{
				while(control == null)
				{
					if(getNetwork().getDeviceCount() == 0)
						break;
					for(int i = 0; i < getNetwork().getDeviceCount(); i++)
					{
						detectControl(getNetwork().getDeviceByIndex(i).getId());
					}
				}
			}
			else
				System.out.println("no network");
			if(control != null)
			{
				if(getStackInSlot(0) != null)
				{
					DataPackage hasMatter = new DataPackage(control, "particlesLoaded");
					getNetwork().sendMessage(hasMatter);
				}
				else
				{
					DataPackage hasMatter = new DataPackage(control, "particlesNotLoaded");
					getNetwork().sendMessage(hasMatter);
				}
				TileEntity core = worldObj.getTileEntity(pos.subtract(new Vec3i(6,0,0)));
				if(core instanceof TileEntityAcceleratorDetectorCore)
				{
					if(((TileEntityAcceleratorDetectorCore) core).isGoodForLaunch())
					{
						DataPackage isPowered = new DataPackage(control, "powered");
						getNetwork().sendMessage(isPowered);
					}
					else
					{
						DataPackage isPowered = new DataPackage(control, "notPowered");
						getNetwork().sendMessage(isPowered);
					}
				}
				else
				{
					System.out.println("Wheres the core?");
				}
			}
		}
	}
}

private void detectControl(String i)
{
	if(getNetwork().getDeviceById(i) instanceof TileEntityAcceleratorControlPanel)
	{
		System.out.println("Control detected");
		control = (TileEntityAcceleratorControlPanel) getNetwork().getDeviceById(i);
	}
}

@Override
public void performAction(String command)
{
	if(command.startsWith("discovery_"))
	{
		int discovery = Integer.parseInt(command.substring(command.indexOf("_")+1));
		if(getStackInSlot(1) != null && getStackInSlot(1).isItemEqual(new ItemStack(LabStuffMain.itemDiscoveryDrive)))
		{
			setInventorySlotContents(1, Recipes.accelDiscoveries.get(discovery).getDiscoveryFlashDrive());
			if(upgraded)
			{
				if(getStackInSlot(2).getItem().equals(LabStuffMain.itemEmptyWarpDriveBattery))
					setInventorySlotContents(2, new ItemStack(LabStuffMain.itemWarpDriveBattery));
			}
		}
	}
	if(command.startsWith("launch"))
	{
		System.out.println("Accelerator active");
		decrStackSize(0, 1);
	}
}

@Override
public ItemStack decrStackSize(int slot, int amt) 
{
	// TODO Auto-generated method stub
	ItemStack stack = getStackInSlot(slot);
	if (stack != null)
	{
			if (stack.stackSize <= amt)
			{
				setInventorySlotContents(slot, null);
			}
			else
			{
				stack = stack.splitStack(amt);
				if (stack.stackSize == 0)
				{
					setInventorySlotContents(slot, null);
				}
			}
	}
	return stack;
}

@Override
public void setInventorySlotContents(int slot, ItemStack itemstack) 
{
	chestContents[slot] = itemstack;
	if(itemstack != null && itemstack.stackSize > getInventoryStackLimit())
	{
		itemstack.stackSize = getInventoryStackLimit();
	}

}

@Override
public int getInventoryStackLimit() 
{
	// TODO Auto-generated method stub
	return 1;
}

@Override
public boolean isUseableByPlayer(EntityPlayer entityplayer) 
{
	// TODO Auto-generated method stub
	return true;
}


@Override
public boolean isItemValidForSlot(int slot, ItemStack itemstack) {
	if(slot == 0)
		return true;
	if(slot == 2 && (itemstack.isItemEqual(new ItemStack(LabStuffMain.itemWarpDriveBattery)) || itemstack.isItemEqual(new ItemStack(LabStuffMain.itemEmptyWarpDriveBattery))))
		return true;
	if(slot == 1 && itemstack.getItem() instanceof ItemDiscoveryDrive)
		return true;
	return false;
}


@Override
public NBTTagCompound writeToNBT(NBTTagCompound tag)
{
	super.writeToNBT(tag);
	NBTTagList itemList = new NBTTagList();
	for (int i = 0; i < chestContents.length; i++) 
	{
		ItemStack stack = chestContents[i];
		if (stack != null) 
		{
			NBTTagCompound tagCompound = new NBTTagCompound();
			tagCompound.setByte("Slot", (byte) i);
			stack.writeToNBT(tagCompound);
			itemList.appendTag(tagCompound);
		}
	}
	tag.setTag("Inventory", itemList);
	if(getNetwork()!=null)
	{
		int netX = getNetwork().getPos().getX();
		int netY = getNetwork().getPos().getY();
		int netZ = getNetwork().getPos().getZ();
		int[] networkLoc = {netX,netY,netZ};

		tag.setIntArray("network", networkLoc);

		tag.setBoolean("upgraded", upgraded);
	}
	return tag;
}

private BlockPos nbtNetwork;

@Override
public void readFromNBT(NBTTagCompound tag)
{
	super.readFromNBT(tag);
	NBTTagList tagList = tag.getTagList("Inventory", 10);
	for (int i = 0; i < tagList.tagCount(); i++) 
	{
		NBTTagCompound tagCompound = (NBTTagCompound) tagList.getCompoundTagAt(i);
		byte slot = tagCompound.getByte("Slot");
		if (slot >= 0 && slot < chestContents.length) 
		{
			chestContents[slot] = ItemStack.loadItemStackFromNBT(tagCompound);
		}
	}
	int[] net = tag.getIntArray("network");
	if(net != null && net.length > 0)
		nbtNetwork = new BlockPos(net[0], net[1], net[2]);
	upgraded = tag.getBoolean("upgraded");
}

@Override
public String getName() {
	// TODO Auto-generated method stub
	return null;
}

@Override
public boolean hasCustomName() {
	// TODO Auto-generated method stub
	return false;
}

@Override
public ItemStack removeStackFromSlot(int index) {
	ItemStack stack = chestContents[index];
	chestContents[index] = null;
	return stack;
}

@Override
public void openInventory(EntityPlayer player) {
	// TODO Auto-generated method stub

}

@Override
public void closeInventory(EntityPlayer player) {
	// TODO Auto-generated method stub

}

@Override
public int getField(int id) {
	// TODO Auto-generated method stub
	return 0;
}

@Override
public void setField(int id, int value) {
	// TODO Auto-generated method stub

}

@Override
public int getFieldCount() {
	// TODO Auto-generated method stub
	return 0;
}

@Override
public void clear() {
	// TODO Auto-generated method stub

}
}

 

Post updated crash/log

VANILLA MINECRAFT CLASSES ARE THE BEST RESOURCES WHEN MODDING

I will be posting 1.15.2 modding tutorials on this channel. If you want to be notified of it do the normal YouTube stuff like subscribing, ect.

Forge and vanilla BlockState generator.

Link to comment
Share on other sites

Sadly, that didn't help.

 

Again, you've given too little info. If you still have a crash, then you need to show the log. Also: Have you tried to sneak up on the crash using the debugger? If not, then try to do so.

 

PS: There's another gotcha between Eclipse and standard Minecraft: If you run Eclipse in Windows with its non-case-sensitive file system, then capitalization inconsistencies will not be detected. Contents within JAR files are always case-sensitive, even when running MC in Windows, so those mismatches show up when a mod moves beyond Eclipse.

 

However, the sorts of errors caused are missing resources, which usually don't crash the game (they just display the missing model / texture).

The debugger is a powerful and necessary tool in any IDE, so learn how to use it. You'll be able to tell us more and get better help here if you investigate your runtime problems in the debugger before posting.

Link to comment
Share on other sites

I'll get that crash log, hold on a sec.

Also homeboy, how am I supposed to "sneak up on it using the debugger" when it works fine in eclipse? Hmmm? Silence.

[15:45:03] [server thread/INFO]: FTBLib: Server reloaded in 52ms
[15:45:04] [server thread/INFO]: Changing view distance to 12, from 10
[15:45:08] [server thread/INFO]: DrDeathman[local:E:1c165ec7] logged in with entity id 454 at (-262.4251103864904, 72.0, -186.44316266814914)
[15:45:08] [server thread/INFO]: DrDeathman joined the game
[15:45:11] [server thread/WARN]: Can't keep up! Did the system time change, or is the server overloaded? Running 5218ms behind, skipping 104 tick(s)
[15:45:54] [server thread/WARN]: Can't keep up! Did the system time change, or is the server overloaded? Running 3300ms behind, skipping 66 tick(s)
[15:46:12] [server thread/INFO]: Saving and pausing game...
[15:46:12] [Client thread/INFO]: [CHAT] §6A §lNEW§r§6 version of§f Zero CORE §6is available (§f1.10.2-0.0.8.2§6):§f Fixed incorrect placement of ores on chunk borders
[15:46:12] [Client thread/INFO]: [CHAT] §6A §lNEW§r§6 version of§f Extreme Reactors §6is available (§f1.10.2-0.4.5.21§6):§f Fixed client side crash when placing the Turbine Rotor Bearing
[15:46:12] [server thread/INFO]: Saving chunks for level 'New World'/Overworld
[15:46:13] [server thread/INFO]: Saving chunks for level 'New World'/Nether
[15:46:13] [server thread/INFO]: Saving chunks for level 'New World'/The End
[15:46:13] [server thread/INFO]: Saving chunks for level 'New World'/Deep Dark
[15:46:13] [server thread/INFO]: Saving chunks for level 'New World'/Overworld
[15:46:14] [server thread/INFO]: Saving chunks for level 'New World'/ExtraUtils2_Quarry_Dim
[15:46:36] [server thread/WARN]: Can't keep up! Did the system time change, or is the server overloaded? Running 7335ms behind, skipping 146 tick(s)
[15:46:39] [Client thread/INFO]: [CHAT] InvTweaks: Configuration loaded.
[15:46:39] [Thread-29/ERROR]: Error in class 'SourceLWJGL OpenAL'
[15:46:39] [Thread-29/ERROR]: Channel null in method 'stop'
[15:46:39] [Thread-29/ERROR]: Error in class 'LibraryLWJGLOpenAL'
[15:46:39] [Thread-29/ERROR]: Source 'fc7bb271-1391-470c-b914-2577093f0067' not found in method 'play'
[15:46:46] [Client thread/INFO]: [CHAT] §eJourneyMap:§f Press [§bJ§f]
[15:46:53] [Client thread/INFO]: Warning: Clientside chunk ticking took 140 ms
[15:47:18] [Client thread/INFO]: [CHAT] There is an Update for Actually Additions available!
[15:47:18] [Client thread/INFO]: [CHAT] Current Version: 1.10.2-r88, newest Version: 1.10.2-r90
[15:47:18] [Client thread/INFO]: [CHAT] [Click for Changelog] [Click for Download]
[15:47:27] [server thread/WARN]: Can't keep up! Did the system time change, or is the server overloaded? Running 2894ms behind, skipping 57 tick(s)
[15:47:39] [Thread-29/ERROR]: Error in class 'SourceLWJGL OpenAL'
[15:47:39] [Thread-29/ERROR]: Channel null in method 'stop'

[shadow=gray,left][glow=red,2,300]KEEGAN[/glow][/shadow]

Link to comment
Share on other sites

I'll get that crash log, hold on a sec.

Also homeboy, how am I supposed to "sneak up on it using the debugger" when it works fine in eclipse? Hmmm? Silence.

[15:45:03] [server thread/INFO]: FTBLib: Server reloaded in 52ms
[15:45:04] [server thread/INFO]: Changing view distance to 12, from 10
[15:45:08] [server thread/INFO]: DrDeathman[local:E:1c165ec7] logged in with entity id 454 at (-262.4251103864904, 72.0, -186.44316266814914)
[15:45:08] [server thread/INFO]: DrDeathman joined the game
[15:45:11] [server thread/WARN]: Can't keep up! Did the system time change, or is the server overloaded? Running 5218ms behind, skipping 104 tick(s)
[15:45:54] [server thread/WARN]: Can't keep up! Did the system time change, or is the server overloaded? Running 3300ms behind, skipping 66 tick(s)
[15:46:12] [server thread/INFO]: Saving and pausing game...
[15:46:12] [Client thread/INFO]: [CHAT] §6A §lNEW§r§6 version of§f Zero CORE §6is available (§f1.10.2-0.0.8.2§6):§f Fixed incorrect placement of ores on chunk borders
[15:46:12] [Client thread/INFO]: [CHAT] §6A §lNEW§r§6 version of§f Extreme Reactors §6is available (§f1.10.2-0.4.5.21§6):§f Fixed client side crash when placing the Turbine Rotor Bearing
[15:46:12] [server thread/INFO]: Saving chunks for level 'New World'/Overworld
[15:46:13] [server thread/INFO]: Saving chunks for level 'New World'/Nether
[15:46:13] [server thread/INFO]: Saving chunks for level 'New World'/The End
[15:46:13] [server thread/INFO]: Saving chunks for level 'New World'/Deep Dark
[15:46:13] [server thread/INFO]: Saving chunks for level 'New World'/Overworld
[15:46:14] [server thread/INFO]: Saving chunks for level 'New World'/ExtraUtils2_Quarry_Dim
[15:46:36] [server thread/WARN]: Can't keep up! Did the system time change, or is the server overloaded? Running 7335ms behind, skipping 146 tick(s)
[15:46:39] [Client thread/INFO]: [CHAT] InvTweaks: Configuration loaded.
[15:46:39] [Thread-29/ERROR]: Error in class 'SourceLWJGL OpenAL'
[15:46:39] [Thread-29/ERROR]: Channel null in method 'stop'
[15:46:39] [Thread-29/ERROR]: Error in class 'LibraryLWJGLOpenAL'
[15:46:39] [Thread-29/ERROR]: Source 'fc7bb271-1391-470c-b914-2577093f0067' not found in method 'play'
[15:46:46] [Client thread/INFO]: [CHAT] §eJourneyMap:§f Press [§bJ§f]
[15:46:53] [Client thread/INFO]: Warning: Clientside chunk ticking took 140 ms
[15:47:18] [Client thread/INFO]: [CHAT] There is an Update for Actually Additions available!
[15:47:18] [Client thread/INFO]: [CHAT] Current Version: 1.10.2-r88, newest Version: 1.10.2-r90
[15:47:18] [Client thread/INFO]: [CHAT] [Click for Changelog] [Click for Download]
[15:47:27] [server thread/WARN]: Can't keep up! Did the system time change, or is the server overloaded? Running 2894ms behind, skipping 57 tick(s)
[15:47:39] [Thread-29/ERROR]: Error in class 'SourceLWJGL OpenAL'
[15:47:39] [Thread-29/ERROR]: Channel null in method 'stop'

 

That doesn't look like a crash report (There's no crash location, only a hint of a crash with "Fixed client side crash when placing the Turbine Rotor Bearing"). Instead, it looks like an excerpt from the console output, and one that has had mod loading info cut so we can't see what mods were involved.

 

However, even in the excerpt, I see something called "Deep Dark" and "ExtraUtils2_Quarry_Dim", which imply the Extra Utilities 2 mod-pack with its long raft of inclusions. There's no telling what interactions might be happening (especially if there's a core mod or non-Forge mod in there anywhere).

 

Try your mod again in a new, pristine world (1.10.2) that has no other mods. See what your blocks do there. If there's no crash, then you have a problem with another mod, and we probably can't help you. Perhaps updating your mod packs will resolve the issue.

The debugger is a powerful and necessary tool in any IDE, so learn how to use it. You'll be able to tell us more and get better help here if you investigate your runtime problems in the debugger before posting.

Link to comment
Share on other sites

Unfortunately an almost vanilla game also crashes.

 

fml-client-latest

 

[00:03:10] [main/DEBUG] [FML/]: Injecting tracing printstreams for STDOUT/STDERR.
[00:03:10] [main/INFO] [FML/]: Forge Mod Loader version 12.18.2.2099 for Minecraft 1.10.2 loading
[00:03:10] [main/INFO] [FML/]: Java is Java HotSpot(TM) 64-Bit Server VM, version 1.8.0_25, running on Windows 10:amd64:10.0, installed at C:\Program Files (x86)\Minecraft\runtime\jre-x64\1.8.0_25
[00:03:10] [main/DEBUG] [FML/]: Java classpath at launch is C:\Users\keega\AppData\Roaming\.minecraft\libraries\net\minecraftforge\forge\1.10.2-12.18.2.2099\forge-1.10.2-12.18.2.2099.jar;C:\Users\keega\AppData\Roaming\.minecraft\libraries\net\minecraft\launchwrapper\1.12\launchwrapper-1.12.jar;C:\Users\keega\AppData\Roaming\.minecraft\libraries\org\ow2\asm\asm-all\5.0.3\asm-all-5.0.3.jar;C:\Users\keega\AppData\Roaming\.minecraft\libraries\jline\jline\2.13\jline-2.13.jar;C:\Users\keega\AppData\Roaming\.minecraft\libraries\com\typesafe\akka\akka-actor_2.11\2.3.3\akka-actor_2.11-2.3.3.jar;C:\Users\keega\AppData\Roaming\.minecraft\libraries\com\typesafe\config\1.2.1\config-1.2.1.jar;C:\Users\keega\AppData\Roaming\.minecraft\libraries\org\scala-lang\scala-actors-migration_2.11\1.1.0\scala-actors-migration_2.11-1.1.0.jar;C:\Users\keega\AppData\Roaming\.minecraft\libraries\org\scala-lang\scala-compiler\2.11.1\scala-compiler-2.11.1.jar;C:\Users\keega\AppData\Roaming\.minecraft\libraries\org\scala-lang\plugins\scala-continuations-library_2.11\1.0.2\scala-continuations-library_2.11-1.0.2.jar;C:\Users\keega\AppData\Roaming\.minecraft\libraries\org\scala-lang\plugins\scala-continuations-plugin_2.11.1\1.0.2\scala-continuations-plugin_2.11.1-1.0.2.jar;C:\Users\keega\AppData\Roaming\.minecraft\libraries\org\scala-lang\scala-library\2.11.1\scala-library-2.11.1.jar;C:\Users\keega\AppData\Roaming\.minecraft\libraries\org\scala-lang\scala-parser-combinators_2.11\1.0.1\scala-parser-combinators_2.11-1.0.1.jar;C:\Users\keega\AppData\Roaming\.minecraft\libraries\org\scala-lang\scala-reflect\2.11.1\scala-reflect-2.11.1.jar;C:\Users\keega\AppData\Roaming\.minecraft\libraries\org\scala-lang\scala-swing_2.11\1.0.1\scala-swing_2.11-1.0.1.jar;C:\Users\keega\AppData\Roaming\.minecraft\libraries\org\scala-lang\scala-xml_2.11\1.0.2\scala-xml_2.11-1.0.2.jar;C:\Users\keega\AppData\Roaming\.minecraft\libraries\lzma\lzma\0.0.1\lzma-0.0.1.jar;C:\Users\keega\AppData\Roaming\.minecraft\libraries\net\sf\jopt-simple\jopt-simple\4.6\jopt-simple-4.6.jar;C:\Users\keega\AppData\Roaming\.minecraft\libraries\java3d\vecmath\1.5.2\vecmath-1.5.2.jar;C:\Users\keega\AppData\Roaming\.minecraft\libraries\net\sf\trove4j\trove4j\3.0.3\trove4j-3.0.3.jar;C:\Users\keega\AppData\Roaming\.minecraft\libraries\com\mojang\netty\1.6\netty-1.6.jar;C:\Users\keega\AppData\Roaming\.minecraft\libraries\oshi-project\oshi-core\1.1\oshi-core-1.1.jar;C:\Users\keega\AppData\Roaming\.minecraft\libraries\net\java\dev\jna\jna\3.4.0\jna-3.4.0.jar;C:\Users\keega\AppData\Roaming\.minecraft\libraries\net\java\dev\jna\platform\3.4.0\platform-3.4.0.jar;C:\Users\keega\AppData\Roaming\.minecraft\libraries\com\ibm\icu\icu4j-core-mojang\51.2\icu4j-core-mojang-51.2.jar;C:\Users\keega\AppData\Roaming\.minecraft\libraries\net\sf\jopt-simple\jopt-simple\4.6\jopt-simple-4.6.jar;C:\Users\keega\AppData\Roaming\.minecraft\libraries\com\paulscode\codecjorbis\20101023\codecjorbis-20101023.jar;C:\Users\keega\AppData\Roaming\.minecraft\libraries\com\paulscode\codecwav\20101023\codecwav-20101023.jar;C:\Users\keega\AppData\Roaming\.minecraft\libraries\com\paulscode\libraryjavasound\20101123\libraryjavasound-20101123.jar;C:\Users\keega\AppData\Roaming\.minecraft\libraries\com\paulscode\librarylwjglopenal\20100824\librarylwjglopenal-20100824.jar;C:\Users\keega\AppData\Roaming\.minecraft\libraries\com\paulscode\soundsystem\20120107\soundsystem-20120107.jar;C:\Users\keega\AppData\Roaming\.minecraft\libraries\io\netty\netty-all\4.0.23.Final\netty-all-4.0.23.Final.jar;C:\Users\keega\AppData\Roaming\.minecraft\libraries\com\google\guava\guava\17.0\guava-17.0.jar;C:\Users\keega\AppData\Roaming\.minecraft\libraries\org\apache\commons\commons-lang3\3.3.2\commons-lang3-3.3.2.jar;C:\Users\keega\AppData\Roaming\.minecraft\libraries\commons-io\commons-io\2.4\commons-io-2.4.jar;C:\Users\keega\AppData\Roaming\.minecraft\libraries\commons-codec\commons-codec\1.9\commons-codec-1.9.jar;C:\Users\keega\AppData\Roaming\.minecraft\libraries\net\java\jinput\jinput\2.0.5\jinput-2.0.5.jar;C:\Users\keega\AppData\Roaming\.minecraft\libraries\net\java\jutils\jutils\1.0.0\jutils-1.0.0.jar;C:\Users\keega\AppData\Roaming\.minecraft\libraries\com\google\code\gson\gson\2.2.4\gson-2.2.4.jar;C:\Users\keega\AppData\Roaming\.minecraft\libraries\com\mojang\authlib\1.5.22\authlib-1.5.22.jar;C:\Users\keega\AppData\Roaming\.minecraft\libraries\com\mojang\realms\1.9.8\realms-1.9.8.jar;C:\Users\keega\AppData\Roaming\.minecraft\libraries\org\apache\commons\commons-compress\1.8.1\commons-compress-1.8.1.jar;C:\Users\keega\AppData\Roaming\.minecraft\libraries\org\apache\httpcomponents\httpclient\4.3.3\httpclient-4.3.3.jar;C:\Users\keega\AppData\Roaming\.minecraft\libraries\commons-logging\commons-logging\1.1.3\commons-logging-1.1.3.jar;C:\Users\keega\AppData\Roaming\.minecraft\libraries\org\apache\httpcomponents\httpcore\4.3.2\httpcore-4.3.2.jar;C:\Users\keega\AppData\Roaming\.minecraft\libraries\it\unimi\dsi\fastutil\7.0.12_mojang\fastutil-7.0.12_mojang.jar;C:\Users\keega\AppData\Roaming\.minecraft\libraries\org\apache\logging\log4j\log4j-api\2.0-beta9\log4j-api-2.0-beta9.jar;C:\Users\keega\AppData\Roaming\.minecraft\libraries\org\apache\logging\log4j\log4j-core\2.0-beta9\log4j-core-2.0-beta9.jar;C:\Users\keega\AppData\Roaming\.minecraft\libraries\org\lwjgl\lwjgl\lwjgl\2.9.4-nightly-20150209\lwjgl-2.9.4-nightly-20150209.jar;C:\Users\keega\AppData\Roaming\.minecraft\libraries\org\lwjgl\lwjgl\lwjgl_util\2.9.4-nightly-20150209\lwjgl_util-2.9.4-nightly-20150209.jar;C:\Users\keega\AppData\Roaming\.minecraft\versions\1.10.2\1.10.2.jar
[00:03:10] [main/DEBUG] [FML/]: Java library path at launch is C:\Users\keega\AppData\Roaming\.minecraft\versions\1.10.2-forge1.10.2-12.18.2.2099\1.10.2-forge1.10.2-12.18.2.2099-natives-538069467864211
[00:03:10] [main/DEBUG] [FML/]: Enabling runtime deobfuscation
[00:03:10] [main/DEBUG] [FML/]: Instantiating coremod class FMLCorePlugin
[00:03:10] [main/DEBUG] [FML/]: Added access transformer class net.minecraftforge.fml.common.asm.transformers.AccessTransformer to enqueued access transformers
[00:03:10] [main/DEBUG] [FML/]: Enqueued coremod FMLCorePlugin
[00:03:10] [main/DEBUG] [FML/]: Instantiating coremod class FMLForgePlugin
[00:03:10] [main/DEBUG] [FML/]: Enqueued coremod FMLForgePlugin
[00:03:10] [main/DEBUG] [FML/]: All fundamental core mods are successfully located
[00:03:10] [main/DEBUG] [FML/]: Attempting to load commandline specified mods, relative to C:\Users\keega\AppData\Roaming\.minecraft
[00:03:10] [main/DEBUG] [FML/]: Discovering coremods
[00:03:10] [main/DEBUG] [FML/]: Examining for coremod candidacy labstuff-2.6.jar
[00:03:10] [main/DEBUG] [FML/]: Not found coremod data in labstuff-2.6.jar
[00:03:10] [main/INFO] [LaunchWrapper/]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker
[00:03:10] [main/INFO] [LaunchWrapper/]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLDeobfTweaker
[00:03:10] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker
[00:03:10] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker
[00:03:10] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
[00:03:10] [main/DEBUG] [FML/]: Injecting coremod FMLCorePlugin {net.minecraftforge.fml.relauncher.FMLCorePlugin} class transformers
[00:03:10] [main/TRACE] [FML/]: Registering transformer net.minecraftforge.fml.common.asm.transformers.BlamingTransformer
[00:03:10] [main/TRACE] [FML/]: Registering transformer net.minecraftforge.fml.common.asm.transformers.SideTransformer
[00:03:10] [main/TRACE] [FML/]: Registering transformer net.minecraftforge.fml.common.asm.transformers.EventSubscriptionTransformer
[00:03:10] [main/TRACE] [FML/]: Registering transformer net.minecraftforge.fml.common.asm.transformers.EventSubscriberTransformer
[00:03:10] [main/DEBUG] [FML/]: Injection complete
[00:03:10] [main/DEBUG] [FML/]: Running coremod plugin for FMLCorePlugin {net.minecraftforge.fml.relauncher.FMLCorePlugin}
[00:03:10] [main/DEBUG] [FML/]: Running coremod plugin FMLCorePlugin
[00:03:12] [main/DEBUG] [FML/]: Read 894 binary patches
[00:03:12] [main/DEBUG] [FML/]: Loading deobfuscation resource /deobfuscation_data-1.10.2.lzma with 32371 records
[00:03:14] [main/INFO] [FML/]: Found valid fingerprint for Minecraft Forge. Certificate fingerprint e3c3d50c7c986df74c645c0ac54639741c90a557
[00:03:14] [main/INFO] [FML/]: Found valid fingerprint for Minecraft. Certificate fingerprint cd99959656f753dc28d863b46769f7f8fbaefcfc
[00:03:14] [main/DEBUG] [FML/]: Coremod plugin class FMLCorePlugin run successfully
[00:03:14] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
[00:03:14] [main/DEBUG] [FML/]: Injecting coremod FMLForgePlugin {net.minecraftforge.classloading.FMLForgePlugin} class transformers
[00:03:14] [main/DEBUG] [FML/]: Injection complete
[00:03:14] [main/DEBUG] [FML/]: Running coremod plugin for FMLForgePlugin {net.minecraftforge.classloading.FMLForgePlugin}
[00:03:14] [main/DEBUG] [FML/]: Running coremod plugin FMLForgePlugin
[00:03:14] [main/DEBUG] [FML/]: Coremod plugin class FMLForgePlugin run successfully
[00:03:14] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLDeobfTweaker
[00:03:14] [main/DEBUG] [FML/]: Loaded 195 rules from AccessTransformer config file forge_at.cfg
[00:03:14] [main/DEBUG] [FML/]: Validating minecraft
[00:03:15] [main/DEBUG] [FML/]: Minecraft validated, launching...
[00:03:15] [main/INFO] [LaunchWrapper/]: Loading tweak class name net.minecraftforge.fml.common.launcher.TerminalTweaker
[00:03:15] [main/INFO] [LaunchWrapper/]: Calling tweak class net.minecraftforge.fml.common.launcher.TerminalTweaker
[00:03:15] [main/INFO] [LaunchWrapper/]: Launching wrapped minecraft {net.minecraft.client.main.Main}
[00:03:17] [main/INFO] [sTDOUT/]: [net.minecraft.client.main.Main:main:56]: Completely ignored arguments: [--nativeLauncherVersion, 307]
[00:03:25] [Client thread/DEBUG] [FML/]: Creating vanilla freeze snapshot
[00:03:25] [Client thread/DEBUG] [FML/]: Vanilla freeze snapshot created
[00:03:28] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - LanguageManager took 0.003s
[00:03:28] [Client thread/INFO] [sTDOUT/]: [net.minecraftforge.fml.client.SplashProgress:start:219]: ---- Minecraft Crash Report ----
// On the bright side, I bought you a teddy bear!

Time: 12/25/16 12:03 AM
Description: Loading screen debug info

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


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

-- System Details --
Details:
Minecraft Version: 1.10.2
Operating System: Windows 10 (amd64) version 10.0
Java Version: 1.8.0_25, Oracle Corporation
Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation
Memory: 125497176 bytes (119 MB) / 268886016 bytes (256 MB) up to 1060372480 bytes (1011 MB)
JVM Flags: 6 total; -XX:HeapDumpPath=MojangTricksIntelDriversForPerformance_javaw.exe_minecraft.exe.heapdump -Xmx1G -XX:+UseConcMarkSweepGC -XX:+CMSIncrementalMode -XX:-UseAdaptiveSizePolicy -Xmn128M
IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0
FML: 
Loaded coremods (and transformers): 
GL info: ' Vendor: 'NVIDIA Corporation' Version: '4.5.0 NVIDIA 372.70' Renderer: 'GeForce GTX 650/PCIe/SSE2'
[00:03:28] [Client thread/INFO] [FML/]: MinecraftForge v12.18.2.2099 Initialized
[00:03:28] [Client thread/INFO] [FML/]: Replaced 232 ore recipes
[00:03:29] [Client thread/DEBUG] [FML/]: File C:\Users\keega\AppData\Roaming\.minecraft\config\injectedDependencies.json not found. No dependencies injected
[00:03:29] [Client thread/DEBUG] [FML/]: Building injected Mod Containers [net.minecraftforge.fml.common.FMLContainer, net.minecraftforge.common.ForgeModContainer]
[00:03:29] [Client thread/DEBUG] [FML/]: Attempting to load mods contained in the minecraft jar file and associated classes
[00:03:29] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\keega\AppData\Roaming\.minecraft\libraries\net\minecraftforge\forge\1.10.2-12.18.2.2099\forge-1.10.2-12.18.2.2099.jar, examining for mod candidates
[00:03:29] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\keega\AppData\Roaming\.minecraft\libraries\net\minecraft\launchwrapper\1.12\launchwrapper-1.12.jar
[00:03:29] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\keega\AppData\Roaming\.minecraft\libraries\org\ow2\asm\asm-all\5.0.3\asm-all-5.0.3.jar
[00:03:29] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\keega\AppData\Roaming\.minecraft\libraries\jline\jline\2.13\jline-2.13.jar
[00:03:29] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\keega\AppData\Roaming\.minecraft\libraries\com\typesafe\akka\akka-actor_2.11\2.3.3\akka-actor_2.11-2.3.3.jar
[00:03:29] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\keega\AppData\Roaming\.minecraft\libraries\com\typesafe\config\1.2.1\config-1.2.1.jar
[00:03:29] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\keega\AppData\Roaming\.minecraft\libraries\org\scala-lang\scala-actors-migration_2.11\1.1.0\scala-actors-migration_2.11-1.1.0.jar
[00:03:29] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\keega\AppData\Roaming\.minecraft\libraries\org\scala-lang\scala-compiler\2.11.1\scala-compiler-2.11.1.jar
[00:03:29] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\keega\AppData\Roaming\.minecraft\libraries\org\scala-lang\plugins\scala-continuations-library_2.11\1.0.2\scala-continuations-library_2.11-1.0.2.jar
[00:03:29] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\keega\AppData\Roaming\.minecraft\libraries\org\scala-lang\plugins\scala-continuations-plugin_2.11.1\1.0.2\scala-continuations-plugin_2.11.1-1.0.2.jar
[00:03:29] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\keega\AppData\Roaming\.minecraft\libraries\org\scala-lang\scala-library\2.11.1\scala-library-2.11.1.jar
[00:03:29] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\keega\AppData\Roaming\.minecraft\libraries\org\scala-lang\scala-parser-combinators_2.11\1.0.1\scala-parser-combinators_2.11-1.0.1.jar
[00:03:29] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\keega\AppData\Roaming\.minecraft\libraries\org\scala-lang\scala-reflect\2.11.1\scala-reflect-2.11.1.jar
[00:03:29] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\keega\AppData\Roaming\.minecraft\libraries\org\scala-lang\scala-swing_2.11\1.0.1\scala-swing_2.11-1.0.1.jar
[00:03:29] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\keega\AppData\Roaming\.minecraft\libraries\org\scala-lang\scala-xml_2.11\1.0.2\scala-xml_2.11-1.0.2.jar
[00:03:29] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\keega\AppData\Roaming\.minecraft\libraries\lzma\lzma\0.0.1\lzma-0.0.1.jar
[00:03:29] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\keega\AppData\Roaming\.minecraft\libraries\net\sf\jopt-simple\jopt-simple\4.6\jopt-simple-4.6.jar
[00:03:29] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\keega\AppData\Roaming\.minecraft\libraries\java3d\vecmath\1.5.2\vecmath-1.5.2.jar
[00:03:29] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\keega\AppData\Roaming\.minecraft\libraries\net\sf\trove4j\trove4j\3.0.3\trove4j-3.0.3.jar
[00:03:29] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\keega\AppData\Roaming\.minecraft\libraries\com\mojang\netty\1.6\netty-1.6.jar
[00:03:29] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\keega\AppData\Roaming\.minecraft\libraries\oshi-project\oshi-core\1.1\oshi-core-1.1.jar
[00:03:29] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\keega\AppData\Roaming\.minecraft\libraries\net\java\dev\jna\jna\3.4.0\jna-3.4.0.jar
[00:03:29] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\keega\AppData\Roaming\.minecraft\libraries\net\java\dev\jna\platform\3.4.0\platform-3.4.0.jar
[00:03:29] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\keega\AppData\Roaming\.minecraft\libraries\com\ibm\icu\icu4j-core-mojang\51.2\icu4j-core-mojang-51.2.jar
[00:03:29] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\keega\AppData\Roaming\.minecraft\libraries\net\sf\jopt-simple\jopt-simple\4.6\jopt-simple-4.6.jar
[00:03:29] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\keega\AppData\Roaming\.minecraft\libraries\com\paulscode\codecjorbis\20101023\codecjorbis-20101023.jar
[00:03:29] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\keega\AppData\Roaming\.minecraft\libraries\com\paulscode\codecwav\20101023\codecwav-20101023.jar
[00:03:29] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\keega\AppData\Roaming\.minecraft\libraries\com\paulscode\libraryjavasound\20101123\libraryjavasound-20101123.jar
[00:03:29] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\keega\AppData\Roaming\.minecraft\libraries\com\paulscode\librarylwjglopenal\20100824\librarylwjglopenal-20100824.jar
[00:03:29] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\keega\AppData\Roaming\.minecraft\libraries\com\paulscode\soundsystem\20120107\soundsystem-20120107.jar
[00:03:29] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\keega\AppData\Roaming\.minecraft\libraries\io\netty\netty-all\4.0.23.Final\netty-all-4.0.23.Final.jar
[00:03:29] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\keega\AppData\Roaming\.minecraft\libraries\com\google\guava\guava\17.0\guava-17.0.jar
[00:03:29] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\keega\AppData\Roaming\.minecraft\libraries\org\apache\commons\commons-lang3\3.3.2\commons-lang3-3.3.2.jar
[00:03:29] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\keega\AppData\Roaming\.minecraft\libraries\commons-io\commons-io\2.4\commons-io-2.4.jar
[00:03:29] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\keega\AppData\Roaming\.minecraft\libraries\commons-codec\commons-codec\1.9\commons-codec-1.9.jar
[00:03:29] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\keega\AppData\Roaming\.minecraft\libraries\net\java\jinput\jinput\2.0.5\jinput-2.0.5.jar
[00:03:29] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\keega\AppData\Roaming\.minecraft\libraries\net\java\jutils\jutils\1.0.0\jutils-1.0.0.jar
[00:03:29] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\keega\AppData\Roaming\.minecraft\libraries\com\google\code\gson\gson\2.2.4\gson-2.2.4.jar
[00:03:29] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\keega\AppData\Roaming\.minecraft\libraries\com\mojang\authlib\1.5.22\authlib-1.5.22.jar
[00:03:29] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\keega\AppData\Roaming\.minecraft\libraries\com\mojang\realms\1.9.8\realms-1.9.8.jar
[00:03:29] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\keega\AppData\Roaming\.minecraft\libraries\org\apache\commons\commons-compress\1.8.1\commons-compress-1.8.1.jar
[00:03:29] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\keega\AppData\Roaming\.minecraft\libraries\org\apache\httpcomponents\httpclient\4.3.3\httpclient-4.3.3.jar
[00:03:29] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\keega\AppData\Roaming\.minecraft\libraries\commons-logging\commons-logging\1.1.3\commons-logging-1.1.3.jar
[00:03:29] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\keega\AppData\Roaming\.minecraft\libraries\org\apache\httpcomponents\httpcore\4.3.2\httpcore-4.3.2.jar
[00:03:29] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\keega\AppData\Roaming\.minecraft\libraries\it\unimi\dsi\fastutil\7.0.12_mojang\fastutil-7.0.12_mojang.jar
[00:03:29] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\keega\AppData\Roaming\.minecraft\libraries\org\apache\logging\log4j\log4j-api\2.0-beta9\log4j-api-2.0-beta9.jar
[00:03:29] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\keega\AppData\Roaming\.minecraft\libraries\org\apache\logging\log4j\log4j-core\2.0-beta9\log4j-core-2.0-beta9.jar
[00:03:29] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\keega\AppData\Roaming\.minecraft\libraries\org\lwjgl\lwjgl\lwjgl\2.9.4-nightly-20150209\lwjgl-2.9.4-nightly-20150209.jar
[00:03:29] [Client thread/TRACE] [FML/]: Skipping known library file C:\Users\keega\AppData\Roaming\.minecraft\libraries\org\lwjgl\lwjgl\lwjgl_util\2.9.4-nightly-20150209\lwjgl_util-2.9.4-nightly-20150209.jar
[00:03:29] [Client thread/DEBUG] [FML/]: Found a minecraft related file at C:\Users\keega\AppData\Roaming\.minecraft\versions\1.10.2\1.10.2.jar, examining for mod candidates
[00:03:29] [Client thread/DEBUG] [FML/]: Minecraft jar mods loaded successfully
[00:03:29] [Client thread/INFO] [FML/]: Found 0 mods from the command line. Injecting into mod discoverer
[00:03:29] [Client thread/INFO] [FML/]: Searching C:\Users\keega\AppData\Roaming\.minecraft\mods for mods
[00:03:29] [Client thread/DEBUG] [FML/]: Found a candidate zip or jar file labstuff-2.6.jar
[00:03:29] [Client thread/DEBUG] [FML/]: Examining file forge-1.10.2-12.18.2.2099.jar for potential mods
[00:03:29] [Client thread/DEBUG] [FML/]: The mod container forge-1.10.2-12.18.2.2099.jar appears to be missing an mcmod.info file
[00:03:31] [Client thread/DEBUG] [FML/]: Examining file 1.10.2.jar for potential mods
[00:03:31] [Client thread/DEBUG] [FML/]: The mod container 1.10.2.jar appears to be missing an mcmod.info file
[00:03:32] [Client thread/DEBUG] [FML/]: Examining file labstuff-2.6.jar for potential mods
[00:03:32] [Client thread/TRACE] [FML/]: Located mcmod.info file in file labstuff-2.6.jar
[00:03:32] [Client thread/DEBUG] [FML/]: Identified a mod of type Lnet/minecraftforge/fml/common/Mod; (keegan.labstuff.LabStuffMain) - loading
[00:03:32] [Client thread/TRACE] [labstuff/]: Parsed dependency info : [] [] []
[00:03:33] [Client thread/INFO] [FML/]: Forge Mod Loader has identified 4 mods to load
[00:03:33] [Client thread/DEBUG] [FML/]: Found API cofh.api.energy (owned by CoFHAPI providing CoFHAPI|energy) embedded in labstuff
[00:03:33] [Client thread/DEBUG] [FML/]: Found API cofh.api (owned by CoFHLib providing CoFHAPI) embedded in labstuff
[00:03:33] [Client thread/TRACE] [FML/]: Removing upstream parent CoFHLib from APIContainer{CoFHAPI|energy:1.8.9R1.2.0B1}
[00:03:33] [Client thread/DEBUG] [FML/]: Creating API container dummy for API CoFHAPI|energy: owner: CoFHAPI, dependents: [labstuff]
[00:03:33] [Client thread/DEBUG] [FML/]: Creating API container dummy for API CoFHAPI: owner: CoFHLib, dependents: [labstuff]
[00:03:33] [Client thread/TRACE] [FML/]: Received a system property request ''
[00:03:33] [Client thread/TRACE] [FML/]: System property request managing the state of 0 mods
[00:03:33] [Client thread/DEBUG] [FML/]: After merging, found state information for 0 mods
[00:03:33] [Client thread/DEBUG] [labstuff/]: Enabling mod labstuff
[00:03:33] [Client thread/TRACE] [FML/]: Verifying mod requirements are satisfied
[00:03:33] [Client thread/TRACE] [FML/]: All mod requirements are satisfied
[00:03:33] [Client thread/TRACE] [FML/]: Sorting mods into an ordered list
[00:03:33] [Client thread/TRACE] [FML/]: Mod sorting completed successfully
[00:03:33] [Client thread/DEBUG] [FML/]: Mod sorting data
[00:03:33] [Client thread/DEBUG] [FML/]: 	CoFHAPI(API: CoFHAPI:1.8.9R1.2.0B1): labstuff-2.6.jar ()
[00:03:33] [Client thread/DEBUG] [FML/]: 	CoFHAPI|energy(API: CoFHAPI|energy:1.8.9R1.2.0B1): labstuff-2.6.jar ()
[00:03:33] [Client thread/DEBUG] [FML/]: 	labstuff(LabStuff:2.5): labstuff-2.6.jar ()
[00:03:33] [Client thread/TRACE] [mcp/mcp]: Sending event FMLConstructionEvent to mod mcp
[00:03:33] [Client thread/TRACE] [mcp/mcp]: Sent event FMLConstructionEvent to mod mcp
[00:03:33] [Client thread/DEBUG] [FML/]: Bar Step: Construction - Minecraft Coder Pack took 0.003s
[00:03:33] [Client thread/TRACE] [FML/FML]: Sending event FMLConstructionEvent to mod FML
[00:03:33] [Client thread/TRACE] [FML/FML]: Mod FML is using network checker : Invoking method checkModLists
[00:03:33] [Client thread/TRACE] [FML/FML]: Testing mod FML to verify it accepts its own version in a remote connection
[00:03:33] [Client thread/TRACE] [FML/FML]: The mod FML accepts its own version (8.0.99.99)
[00:03:33] [Client thread/INFO] [FML/FML]: Attempting connection with missing mods [mcp, FML, Forge, labstuff] at CLIENT
[00:03:33] [Client thread/INFO] [FML/FML]: Attempting connection with missing mods [mcp, FML, Forge, labstuff] at SERVER
[00:03:34] [Client thread/TRACE] [FML/FML]: Sent event FMLConstructionEvent to mod FML
[00:03:34] [Client thread/DEBUG] [FML/]: Bar Step: Construction - Forge Mod Loader took 1.074s
[00:03:34] [Client thread/TRACE] [Forge/Forge]: Sending event FMLConstructionEvent to mod Forge
[00:03:34] [Client thread/DEBUG] [Forge/Forge]: Preloading CrashReport Classes
[00:03:34] [Client thread/DEBUG] [Forge/Forge]: 	net/minecraftforge/fml/client/SplashProgress$1
[00:03:34] [Client thread/DEBUG] [Forge/Forge]: 	net/minecraftforge/fml/common/FMLCommonHandler$1
[00:03:34] [Client thread/DEBUG] [Forge/Forge]: 	net/minecraftforge/fml/common/Loader$3
[00:03:34] [Client thread/TRACE] [FML/Forge]: Mod Forge is using network checker : No network checking performed
[00:03:34] [Client thread/TRACE] [FML/Forge]: Testing mod Forge to verify it accepts its own version in a remote connection
[00:03:34] [Client thread/TRACE] [FML/Forge]: The mod Forge accepts its own version (12.18.2.2099)
[00:03:34] [Client thread/TRACE] [Forge/Forge]: Sent event FMLConstructionEvent to mod Forge
[00:03:34] [Client thread/DEBUG] [FML/]: Bar Step: Construction - Minecraft Forge took 0.040s
[00:03:34] [Client thread/TRACE] [labstuff/labstuff]: Sending event FMLConstructionEvent to mod labstuff
[00:03:34] [Client thread/TRACE] [FML/labstuff]: Mod labstuff is using network checker : Accepting version 2.5
[00:03:34] [Client thread/TRACE] [FML/labstuff]: Testing mod labstuff to verify it accepts its own version in a remote connection
[00:03:34] [Client thread/TRACE] [FML/labstuff]: The mod labstuff accepts its own version (2.5)
[00:03:34] [Client thread/DEBUG] [FML/labstuff]: Attempting to inject @SidedProxy classes into labstuff
[00:03:34] [Client thread/DEBUG] [FML/labstuff]: Attempting to inject @EventBusSubscriber classes into the eventbus for labstuff
[00:03:34] [Client thread/TRACE] [labstuff/labstuff]: Sent event FMLConstructionEvent to mod labstuff
[00:03:34] [Client thread/DEBUG] [FML/]: Bar Step: Construction - LabStuff took 0.325s
[00:03:34] [Client thread/DEBUG] [FML/]: Bar Finished: Construction took 1.442s
[00:03:34] [Client thread/DEBUG] [FML/]: Mod signature data
[00:03:34] [Client thread/DEBUG] [FML/]:  	Valid Signatures:
[00:03:34] [Client thread/DEBUG] [FML/]: 		(e3c3d50c7c986df74c645c0ac54639741c90a557) FML	(Forge Mod Loader	8.0.99.99)	forge-1.10.2-12.18.2.2099.jar
[00:03:34] [Client thread/DEBUG] [FML/]: 		(e3c3d50c7c986df74c645c0ac54639741c90a557) Forge	(Minecraft Forge	12.18.2.2099)	forge-1.10.2-12.18.2.2099.jar
[00:03:34] [Client thread/DEBUG] [FML/]:  	Missing Signatures:
[00:03:34] [Client thread/DEBUG] [FML/]: 		mcp	(Minecraft Coder Pack	9.19)	minecraft.jar
[00:03:34] [Client thread/DEBUG] [FML/]: 		labstuff	(LabStuff	2.5)	labstuff-2.6.jar
[00:03:34] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - Default took 0.007s
[00:03:34] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - FMLFileResourcePack:Forge Mod Loader took 0.005s
[00:03:34] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - FMLFileResourcePack:Minecraft Forge took 0.007s
[00:03:34] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - FMLFileResourcePack:LabStuff took 0.004s
[00:03:34] [Client thread/DEBUG] [FML/]: Bar Finished: Reloading - LanguageManager took 0.049s
[00:03:34] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - Reloading listeners took 0.050s
[00:03:34] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resources took 0.073s
[00:03:34] [Client thread/DEBUG] [Forge Mod Loader/]: Mod Forge Mod Loader is missing a pack.mcmeta file, substituting a dummy one
[00:03:34] [Client thread/DEBUG] [Minecraft Forge/]: Mod Minecraft Forge is missing a pack.mcmeta file, substituting a dummy one
[00:03:34] [Client thread/DEBUG] [LabStuff/]: Mod LabStuff is missing a pack.mcmeta file, substituting a dummy one
[00:03:34] [Client thread/INFO] [FML/]: Processing ObjectHolder annotations
[00:03:35] [Client thread/INFO] [FML/]: Found 423 ObjectHolder annotations
[00:03:35] [Client thread/INFO] [FML/]: Identifying ItemStackHolder annotations
[00:03:35] [Client thread/INFO] [FML/]: Found 0 ItemStackHolder annotations
[00:03:35] [Client thread/INFO] [FML/]: Applying holder lookups
[00:03:35] [Client thread/INFO] [FML/]: Holder lookups applied
[00:03:35] [Client thread/INFO] [FML/]: Applying holder lookups
[00:03:35] [Client thread/INFO] [FML/]: Holder lookups applied
[00:03:35] [Client thread/INFO] [FML/]: Applying holder lookups
[00:03:35] [Client thread/INFO] [FML/]: Holder lookups applied
[00:03:35] [Client thread/TRACE] [mcp/mcp]: Sending event FMLPreInitializationEvent to mod mcp
[00:03:35] [Client thread/TRACE] [mcp/mcp]: Sent event FMLPreInitializationEvent to mod mcp
[00:03:35] [Client thread/DEBUG] [FML/]: Bar Step: PreInitialization - Minecraft Coder Pack took 0.001s
[00:03:35] [Client thread/TRACE] [FML/FML]: Sending event FMLPreInitializationEvent to mod FML
[00:03:35] [Client thread/TRACE] [FML/FML]: Sent event FMLPreInitializationEvent to mod FML
[00:03:35] [Client thread/DEBUG] [FML/]: Bar Step: PreInitialization - Forge Mod Loader took 0.001s
[00:03:35] [Client thread/TRACE] [Forge/Forge]: Sending event FMLPreInitializationEvent to mod Forge
[00:03:35] [Client thread/INFO] [FML/Forge]: Configured a dormant chunk cache size of 0
[00:03:35] [Client thread/TRACE] [Forge/Forge]: Sent event FMLPreInitializationEvent to mod Forge
[00:03:35] [Client thread/DEBUG] [FML/]: Bar Step: PreInitialization - Minecraft Forge took 0.235s
[00:03:35] [Client thread/TRACE] [labstuff/labstuff]: Sending event FMLPreInitializationEvent to mod labstuff
[00:03:35] [Client thread/INFO] [sTDOUT/labstuff]: [keegan.labstuff.LabStuffMain:preInit:241]: Were doing stuff
[00:03:35] [Forge Version Check/INFO] [ForgeVersionCheck/Forge]: [Forge] Starting version check at http://files.minecraftforge.net/maven/net/minecraftforge/forge/promotions_slim.json
[00:03:36] [Client thread/INFO] [FML/labstuff]: OBJLoader: Domain labstuff has been added.
[00:03:36] [Client thread/TRACE] [labstuff/labstuff]: Sent event FMLPreInitializationEvent to mod labstuff
[00:03:36] [Client thread/DEBUG] [FML/]: Bar Step: PreInitialization - LabStuff took 1.169s
[00:03:36] [Client thread/DEBUG] [FML/]: Bar Finished: PreInitialization took 1.406s
[00:03:36] [Client thread/INFO] [FML/]: Applying holder lookups
[00:03:36] [Client thread/INFO] [FML/]: Holder lookups applied
[00:03:36] [Client thread/INFO] [FML/]: Injecting itemstacks
[00:03:36] [Client thread/INFO] [FML/]: Itemstack injection complete
[00:03:36] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - TextureManager took 0.000s
[00:03:44] [Forge Version Check/DEBUG] [ForgeVersionCheck/Forge]: [Forge] Received version check data:
{
  "homepage": "http://files.minecraftforge.net/maven/net/minecraftforge/forge/",
  "promos": {
    "1.10-latest": "12.18.0.2000",
    "1.10.2-latest": "12.18.3.2185",
    "1.10.2-recommended": "12.18.3.2185",
    "1.11-latest": "13.19.1.2199",
    "1.11-recommended": "13.19.1.2189",
    "1.5.2-latest": "7.8.1.738",
    "1.5.2-recommended": "7.8.1.737",
    "1.6.1-latest": "8.9.0.775",
    "1.6.2-latest": "9.10.1.871",
    "1.6.2-recommended": "9.10.1.871",
    "1.6.3-latest": "9.11.0.878",
    "1.6.4-latest": "9.11.1.1345",
    "1.6.4-recommended": "9.11.1.1345",
    "1.7.10-latest": "10.13.4.1614",
    "1.7.10-latest-1.7.10": "10.13.2.1343",
    "1.7.10-recommended": "10.13.4.1558",
    "1.7.2-latest": "10.12.2.1147",
    "1.7.2-recommended": "10.12.2.1121",
    "1.8-latest": "11.14.4.1577",
    "1.8-recommended": "11.14.4.1563",
    "1.8.8-latest": "11.15.0.1655",
    "1.8.9-latest": "11.15.1.1902",
    "1.8.9-recommended": "11.15.1.1722",
    "1.9-latest": "12.16.0.1942",
    "1.9-recommended": "12.16.1.1887",
    "1.9.4-latest": "12.17.0.2051",
    "1.9.4-recommended": "12.17.0.1976",
    "latest": "13.19.1.2199",
    "latest-1.7.10": "10.13.2.1343",
    "recommended": "13.19.1.2189"
  }
}
[00:03:44] [Forge Version Check/INFO] [ForgeVersionCheck/Forge]: [Forge] Found status: OUTDATED Target: 12.18.3.2185
[00:03:55] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - SoundHandler took 18.870s
[00:03:55] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - FontRenderer took 0.020s
[00:03:55] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - FontRenderer took 0.014s
[00:03:55] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - GrassColorReloadListener took 0.018s
[00:03:55] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - FoliageColorReloadListener took 0.023s
[00:03:55] [Client thread/DEBUG] [FML/]: Bar Step: Rendering Setup - GL Setup took 0.002s
[00:03:55] [Client thread/DEBUG] [FML/]: Bar Step: Rendering Setup - Loading Texture Map took 0.014s
[00:03:56] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - B3DLoader took 0.000s
[00:03:56] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - OBJLoader took 0.000s
[00:03:56] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - ModelFluid$FluidLoader took 0.000s
[00:03:56] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - ItemLayerModel$Loader took 0.000s
[00:03:56] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - MultiLayerModel$Loader took 0.000s
[00:03:56] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - ModelDynBucket$LoaderDynBucket took 0.000s
[00:03:56] [Client thread/INFO] [FML/]: OBJLoader.MaterialLibrary: key 'Ns' (model: 'labstuff:models/block/acceleratorcontrolpanel.mtl') is not currently supported, skipping
[00:03:56] [Client thread/INFO] [FML/]: OBJModel: A color has already been defined for material 'models\props_office\control_desk_1980.001' in 'labstuff:models/block/acceleratorcontrolpanel.mtl'. The color defined by key 'Ks' will not be applied!
[00:03:56] [Client thread/INFO] [FML/]: OBJLoader.MaterialLibrary: key 'Ke' (model: 'labstuff:models/block/acceleratorcontrolpanel.mtl') is not currently supported, skipping
[00:03:56] [Client thread/INFO] [FML/]: OBJLoader.MaterialLibrary: key 'Ni' (model: 'labstuff:models/block/acceleratorcontrolpanel.mtl') is not currently supported, skipping
[00:03:56] [Client thread/INFO] [FML/]: OBJLoader.MaterialLibrary: key 'illum' (model: 'labstuff:models/block/acceleratorcontrolpanel.mtl') is not currently supported, skipping
[00:03:56] [Client thread/INFO] [FML/]: OBJLoader.Parser: command 's' (model: 'labstuff:models/block/acceleratorcontrolpanel.obj') is not currently supported, skipping. Line: 6606 's 1'
[00:03:56] [Client thread/INFO] [FML/]: OBJLoader.MaterialLibrary: key 'Ns' (model: 'labstuff:models/block/industrialmotor.mtl') is not currently supported, skipping
[00:03:56] [Client thread/INFO] [FML/]: OBJModel: A color has already been defined for material 'Material.001' in 'labstuff:models/block/industrialmotor.mtl'. The color defined by key 'Ks' will not be applied!
[00:03:56] [Client thread/INFO] [FML/]: OBJLoader.MaterialLibrary: key 'Ke' (model: 'labstuff:models/block/industrialmotor.mtl') is not currently supported, skipping
[00:03:56] [Client thread/INFO] [FML/]: OBJLoader.MaterialLibrary: key 'Ni' (model: 'labstuff:models/block/industrialmotor.mtl') is not currently supported, skipping
[00:03:56] [Client thread/INFO] [FML/]: OBJLoader.MaterialLibrary: key 'illum' (model: 'labstuff:models/block/industrialmotor.mtl') is not currently supported, skipping
[00:03:59] [Client thread/DEBUG] [FML/]: Bar Finished: ModelLoader: blocks took 3.294s
[00:03:59] [Client thread/DEBUG] [FML/]: Item json isn't found for 'labstuff:blockACPGag#inventory', trying to load the variant from the blockstate json
[00:03:59] [Client thread/DEBUG] [FML/]: Item json isn't found for 'labstuff:blockGag#inventory', trying to load the variant from the blockstate json
[00:03:59] [Client thread/DEBUG] [FML/]: Item json isn't found for 'labstuff:blockSolarGag#inventory', trying to load the variant from the blockstate json
[00:03:59] [Client thread/DEBUG] [FML/]: Item json isn't found for 'labstuff:blockWindGag#inventory', trying to load the variant from the blockstate json
[00:04:00] [Client thread/DEBUG] [FML/]: Bar Finished: ModelLoader: items took 0.986s
[00:04:00] [Client thread/INFO] [FML/]: Max texture size: 16384
[00:04:00] [Client thread/DEBUG] [FML/]: Bar Finished: Texture stitching - missingno took 0.006s
[00:04:00] [Client thread/DEBUG] [FML/]: Bar Finished: Texture creation took 0.012s
[00:04:00] [Client thread/DEBUG] [FML/]: Bar Finished: Texture mipmap and upload - missingno took 0.002s
[00:04:03] [Client thread/DEBUG] [FML/]: Bar Finished: ModelLoader: baking took 3.186s
[00:04:03] [Client thread/ERROR] [FML/]: Exception loading model for variant labstuff:blockturbineglass#connected_down=true,connected_east=true,connected_north=false,connected_south=true,connected_up=true,connected_west=false,turbines=2
net.minecraftforge.client.model.ModelLoaderRegistry$LoaderException: Exception loading model labstuff:blockturbineglass#connected_down=true,connected_east=true,connected_north=false,connected_south=true,connected_up=true,connected_west=false,turbines=2 with loader VariantLoader.INSTANCE, skipping
at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:153) ~[ModelLoaderRegistry.class:?]
at net.minecraftforge.client.model.ModelLoader.func_177569_a(ModelLoader.java:241) ~[ModelLoader.class:?]
at net.minecraft.client.renderer.block.model.ModelBakery.loadBlock(ModelBakery.java:145) ~[byo.class:?]
at net.minecraftforge.client.model.ModelLoader.func_188640_b(ModelLoader.java:229) ~[ModelLoader.class:?]
at net.minecraftforge.client.model.ModelLoader.func_177570_a(ModelLoader.java:146) ~[ModelLoader.class:?]
at net.minecraft.client.renderer.block.model.ModelManager.func_110549_a(ModelManager.java:28) [byp.class:?]
at net.minecraft.client.resources.SimpleReloadableResourceManager.func_110542_a(SimpleReloadableResourceManager.java:122) [bxi.class:?]
at net.minecraft.client.Minecraft.func_71384_a(Minecraft.java:499) [bcx.class:?]
at net.minecraft.client.Minecraft.func_99999_d(Minecraft.java:351) [bcx.class:?]
at net.minecraft.client.main.Main.main(SourceFile:124) [Main.class:?]
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_25]
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_25]
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_25]
at java.lang.reflect.Method.invoke(Method.java:483) ~[?:1.8.0_25]
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:?]
Caused by: net.minecraft.client.renderer.block.model.ModelBlockDefinition$MissingVariantException
at net.minecraft.client.renderer.block.model.ModelBlockDefinition.func_188004_c(ModelBlockDefinition.java:78) ~[bpe.class:?]
at net.minecraftforge.client.model.ModelLoader$VariantLoader.loadModel(ModelLoader.java:1184) ~[ModelLoader$VariantLoader.class:?]
at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:149) ~[ModelLoaderRegistry.class:?]
... 15 more
[00:04:04] [Client thread/ERROR] [FML/]: Exception loading model for variant labstuff:blockturbineglass#connected_down=true,connected_east=true,connected_north=false,connected_south=true,connected_up=true,connected_west=false,turbines=1
net.minecraftforge.client.model.ModelLoaderRegistry$LoaderException: Exception loading model labstuff:blockturbineglass#connected_down=true,connected_east=true,connected_north=false,connected_south=true,connected_up=true,connected_west=false,turbines=1 with loader VariantLoader.INSTANCE, skipping
at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:153) ~[ModelLoaderRegistry.class:?]
at net.minecraftforge.client.model.ModelLoader.func_177569_a(ModelLoader.java:241) ~[ModelLoader.class:?]
at net.minecraft.client.renderer.block.model.ModelBakery.loadBlock(ModelBakery.java:145) ~[byo.class:?]
at net.minecraftforge.client.model.ModelLoader.func_188640_b(ModelLoader.java:229) ~[ModelLoader.class:?]
at net.minecraftforge.client.model.ModelLoader.func_177570_a(ModelLoader.java:146) ~[ModelLoader.class:?]
at net.minecraft.client.renderer.block.model.ModelManager.func_110549_a(ModelManager.java:28) [byp.class:?]
at net.minecraft.client.resources.SimpleReloadableResourceManager.func_110542_a(SimpleReloadableResourceManager.java:122) [bxi.class:?]
at net.minecraft.client.Minecraft.func_71384_a(Minecraft.java:499) [bcx.class:?]
at net.minecraft.client.Minecraft.func_99999_d(Minecraft.java:351) [bcx.class:?]
at net.minecraft.client.main.Main.main(SourceFile:124) [Main.class:?]
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_25]
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_25]
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_25]
at java.lang.reflect.Method.invoke(Method.java:483) ~[?:1.8.0_25]
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:?]
Caused by: net.minecraft.client.renderer.block.model.ModelBlockDefinition$MissingVariantException
at net.minecraft.client.renderer.block.model.ModelBlockDefinition.func_188004_c(ModelBlockDefinition.java:78) ~[bpe.class:?]
at net.minecraftforge.client.model.ModelLoader$VariantLoader.loadModel(ModelLoader.java:1184) ~[ModelLoader$VariantLoader.class:?]
at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:149) ~[ModelLoaderRegistry.class:?]
... 15 more
[00:04:04] [Client thread/ERROR] [FML/]: Exception loading model for variant labstuff:blockTurbineRotor#connected_down=true,connected_east=false,connected_north=true,connected_south=true,connected_up=true,connected_west=false,turbines=0
net.minecraftforge.client.model.ModelLoaderRegistry$LoaderException: Exception loading model labstuff:blockTurbineRotor#connected_down=true,connected_east=false,connected_north=true,connected_south=true,connected_up=true,connected_west=false,turbines=0 with loader VariantLoader.INSTANCE, skipping
at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:153) ~[ModelLoaderRegistry.class:?]
at net.minecraftforge.client.model.ModelLoader.func_177569_a(ModelLoader.java:241) ~[ModelLoader.class:?]
at net.minecraft.client.renderer.block.model.ModelBakery.loadBlock(ModelBakery.java:145) ~[byo.class:?]
at net.minecraftforge.client.model.ModelLoader.func_188640_b(ModelLoader.java:229) ~[ModelLoader.class:?]
at net.minecraftforge.client.model.ModelLoader.func_177570_a(ModelLoader.java:146) ~[ModelLoader.class:?]
at net.minecraft.client.renderer.block.model.ModelManager.func_110549_a(ModelManager.java:28) [byp.class:?]
at net.minecraft.client.resources.SimpleReloadableResourceManager.func_110542_a(SimpleReloadableResourceManager.java:122) [bxi.class:?]
at net.minecraft.client.Minecraft.func_71384_a(Minecraft.java:499) [bcx.class:?]
at net.minecraft.client.Minecraft.func_99999_d(Minecraft.java:351) [bcx.class:?]
at net.minecraft.client.main.Main.main(SourceFile:124) [Main.class:?]
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_25]
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_25]
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_25]
at java.lang.reflect.Method.invoke(Method.java:483) ~[?:1.8.0_25]
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:?]
Caused by: net.minecraft.client.renderer.block.model.ModelBlockDefinition$MissingVariantException
at net.minecraft.client.renderer.block.model.ModelBlockDefinition.func_188004_c(ModelBlockDefinition.java:78) ~[bpe.class:?]
at net.minecraftforge.client.model.ModelLoader$VariantLoader.loadModel(ModelLoader.java:1184) ~[ModelLoader$VariantLoader.class:?]
at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:149) ~[ModelLoaderRegistry.class:?]
... 15 more
[00:04:04] [Client thread/ERROR] [FML/]: Exception loading blockstate for the variant labstuff:blockTurbineRotor#connected_down=true,connected_east=false,connected_north=true,connected_south=true,connected_up=true,connected_west=false,turbines=0: 
java.lang.Exception: Could not load model definition for variant labstuff:blockTurbineRotor
at net.minecraftforge.client.model.ModelLoader.func_177586_a(ModelLoader.java:274) ~[ModelLoader.class:?]
at net.minecraft.client.renderer.block.model.ModelBakery.loadBlock(ModelBakery.java:121) ~[byo.class:?]
at net.minecraftforge.client.model.ModelLoader.func_188640_b(ModelLoader.java:229) ~[ModelLoader.class:?]
at net.minecraftforge.client.model.ModelLoader.func_177570_a(ModelLoader.java:146) ~[ModelLoader.class:?]
at net.minecraft.client.renderer.block.model.ModelManager.func_110549_a(ModelManager.java:28) [byp.class:?]
at net.minecraft.client.resources.SimpleReloadableResourceManager.func_110542_a(SimpleReloadableResourceManager.java:122) [bxi.class:?]
at net.minecraft.client.Minecraft.func_71384_a(Minecraft.java:499) [bcx.class:?]
at net.minecraft.client.Minecraft.func_99999_d(Minecraft.java:351) [bcx.class:?]
at net.minecraft.client.main.Main.main(SourceFile:124) [Main.class:?]
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_25]
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_25]
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_25]
at java.lang.reflect.Method.invoke(Method.java:483) ~[?:1.8.0_25]
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:?]
Caused by: java.lang.RuntimeException: Encountered an exception when loading model definition of model labstuff:blockstates/blockTurbineRotor.json
at net.minecraft.client.renderer.block.model.ModelBakery.func_188632_a(ModelBakery.java:205) ~[byo.class:?]
at net.minecraft.client.renderer.block.model.ModelBakery.func_177586_a(ModelBakery.java:185) ~[byo.class:?]
at net.minecraftforge.client.model.ModelLoader.func_177586_a(ModelLoader.java:270) ~[ModelLoader.class:?]
... 14 more
Caused by: java.io.FileNotFoundException: labstuff:blockstates/blockTurbineRotor.json
at net.minecraft.client.resources.FallbackResourceManager.func_135056_b(FallbackResourceManager.java:103) ~[bww.class:?]
at net.minecraft.client.resources.SimpleReloadableResourceManager.func_135056_b(SimpleReloadableResourceManager.java:79) ~[bxi.class:?]
at net.minecraft.client.renderer.block.model.ModelBakery.func_188632_a(ModelBakery.java:198) ~[byo.class:?]
at net.minecraft.client.renderer.block.model.ModelBakery.func_177586_a(ModelBakery.java:185) ~[byo.class:?]
at net.minecraftforge.client.model.ModelLoader.func_177586_a(ModelLoader.java:270) ~[ModelLoader.class:?]
... 14 more
[00:04:04] [Client thread/ERROR] [FML/]: Exception loading model for variant labstuff:blockTurbineValve#connected_down=false,connected_east=false,connected_north=false,connected_south=true,connected_up=false,connected_west=true,turbines=1
net.minecraftforge.client.model.ModelLoaderRegistry$LoaderException: Exception loading model labstuff:blockTurbineValve#connected_down=false,connected_east=false,connected_north=false,connected_south=true,connected_up=false,connected_west=true,turbines=1 with loader VariantLoader.INSTANCE, skipping
at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:153) ~[ModelLoaderRegistry.class:?]
at net.minecraftforge.client.model.ModelLoader.func_177569_a(ModelLoader.java:241) ~[ModelLoader.class:?]
at net.minecraft.client.renderer.block.model.ModelBakery.loadBlock(ModelBakery.java:145) ~[byo.class:?]
at net.minecraftforge.client.model.ModelLoader.func_188640_b(ModelLoader.java:229) ~[ModelLoader.class:?]
at net.minecraftforge.client.model.ModelLoader.func_177570_a(ModelLoader.java:146) ~[ModelLoader.class:?]
at net.minecraft.client.renderer.block.model.ModelManager.func_110549_a(ModelManager.java:28) [byp.class:?]
at net.minecraft.client.resources.SimpleReloadableResourceManager.func_110542_a(SimpleReloadableResourceManager.java:122) [bxi.class:?]
at net.minecraft.client.Minecraft.func_71384_a(Minecraft.java:499) [bcx.class:?]
at net.minecraft.client.Minecraft.func_99999_d(Minecraft.java:351) [bcx.class:?]
at net.minecraft.client.main.Main.main(SourceFile:124) [Main.class:?]
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_25]
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_25]
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_25]
at java.lang.reflect.Method.invoke(Method.java:483) ~[?:1.8.0_25]
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:?]
Caused by: net.minecraft.client.renderer.block.model.ModelBlockDefinition$MissingVariantException
at net.minecraft.client.renderer.block.model.ModelBlockDefinition.func_188004_c(ModelBlockDefinition.java:78) ~[bpe.class:?]
at net.minecraftforge.client.model.ModelLoader$VariantLoader.loadModel(ModelLoader.java:1184) ~[ModelLoader$VariantLoader.class:?]
at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:149) ~[ModelLoaderRegistry.class:?]
... 15 more
[00:04:04] [Client thread/ERROR] [FML/]: Suppressed additional 990 model loading errors for domain labstuff
[00:04:04] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - ModelManager took 8.235s
[00:04:04] [Client thread/DEBUG] [FML/]: Bar Step: Rendering Setup - Loading Model Manager took 8.357s
[00:04:05] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - RenderItem took 0.011s
[00:04:05] [Client thread/DEBUG] [FML/]: Bar Step: Rendering Setup - Loading Item Renderer took 1.060s
[00:04:05] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - EntityRenderer took 0.000s
[00:04:05] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - BlockRendererDispatcher took 0.000s
[00:04:05] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resource - RenderGlobal took 0.000s
[00:04:05] [Client thread/DEBUG] [FML/]: Bar Step: Rendering Setup - Loading Entity Renderer took 0.337s
[00:04:05] [Client thread/DEBUG] [FML/]: Bar Finished: Rendering Setup took 9.771s
[00:04:05] [Client thread/TRACE] [mcp/mcp]: Sending event FMLInitializationEvent to mod mcp
[00:04:05] [Client thread/TRACE] [mcp/mcp]: Sent event FMLInitializationEvent to mod mcp
[00:04:05] [Client thread/DEBUG] [FML/]: Bar Step: Initialization - Minecraft Coder Pack took 0.001s
[00:04:05] [Client thread/TRACE] [FML/FML]: Sending event FMLInitializationEvent to mod FML
[00:04:05] [Client thread/TRACE] [FML/FML]: Sent event FMLInitializationEvent to mod FML
[00:04:05] [Client thread/DEBUG] [FML/]: Bar Step: Initialization - Forge Mod Loader took 0.001s
[00:04:05] [Client thread/TRACE] [Forge/Forge]: Sending event FMLInitializationEvent to mod Forge
[00:04:05] [Client thread/TRACE] [Forge/Forge]: Sent event FMLInitializationEvent to mod Forge
[00:04:05] [Client thread/DEBUG] [FML/]: Bar Step: Initialization - Minecraft Forge took 0.002s
[00:04:05] [Client thread/TRACE] [labstuff/labstuff]: Sending event FMLInitializationEvent to mod labstuff
[00:04:05] [Client thread/INFO] [sTDOUT/labstuff]: [keegan.labstuff.LabStuffMain:init:436]: Hi yah we get here.
[00:04:05] [Client thread/TRACE] [labstuff/labstuff]: Sent event FMLInitializationEvent to mod labstuff
[00:04:05] [Client thread/DEBUG] [FML/]: Bar Step: Initialization - LabStuff took 0.158s
[00:04:05] [Client thread/DEBUG] [FML/]: Bar Finished: Initialization took 0.162s
[00:04:05] [Client thread/TRACE] [FML/]: Attempting to deliver 0 IMC messages to mod mcp
[00:04:05] [Client thread/TRACE] [mcp/mcp]: Sending event IMCEvent to mod mcp
[00:04:05] [Client thread/TRACE] [mcp/mcp]: Sent event IMCEvent to mod mcp
[00:04:05] [Client thread/DEBUG] [FML/]: Bar Step: InterModComms$IMC - Minecraft Coder Pack took 0.009s
[00:04:05] [Client thread/TRACE] [FML/]: Attempting to deliver 0 IMC messages to mod FML
[00:04:05] [Client thread/TRACE] [FML/FML]: Sending event IMCEvent to mod FML
[00:04:05] [Client thread/TRACE] [FML/FML]: Sent event IMCEvent to mod FML
[00:04:05] [Client thread/DEBUG] [FML/]: Bar Step: InterModComms$IMC - Forge Mod Loader took 0.002s
[00:04:05] [Client thread/TRACE] [FML/]: Attempting to deliver 0 IMC messages to mod Forge
[00:04:05] [Client thread/TRACE] [Forge/Forge]: Sending event IMCEvent to mod Forge
[00:04:05] [Client thread/TRACE] [Forge/Forge]: Sent event IMCEvent to mod Forge
[00:04:05] [Client thread/DEBUG] [FML/]: Bar Step: InterModComms$IMC - Minecraft Forge took 0.000s
[00:04:05] [Client thread/TRACE] [FML/]: Attempting to deliver 0 IMC messages to mod labstuff
[00:04:05] [Client thread/TRACE] [labstuff/labstuff]: Sending event IMCEvent to mod labstuff
[00:04:05] [Client thread/TRACE] [labstuff/labstuff]: Sent event IMCEvent to mod labstuff
[00:04:05] [Client thread/DEBUG] [FML/]: Bar Step: InterModComms$IMC - LabStuff took 0.001s
[00:04:05] [Client thread/DEBUG] [FML/]: Bar Finished: InterModComms$IMC took 0.013s
[00:04:05] [Client thread/INFO] [FML/]: Injecting itemstacks
[00:04:05] [Client thread/INFO] [FML/]: Itemstack injection complete
[00:04:05] [Client thread/TRACE] [mcp/mcp]: Sending event FMLPostInitializationEvent to mod mcp
[00:04:05] [Client thread/TRACE] [mcp/mcp]: Sent event FMLPostInitializationEvent to mod mcp
[00:04:05] [Client thread/DEBUG] [FML/]: Bar Step: PostInitialization - Minecraft Coder Pack took 0.001s
[00:04:05] [Client thread/TRACE] [FML/FML]: Sending event FMLPostInitializationEvent to mod FML
[00:04:05] [Client thread/TRACE] [FML/FML]: Sent event FMLPostInitializationEvent to mod FML
[00:04:05] [Client thread/DEBUG] [FML/]: Bar Step: PostInitialization - Forge Mod Loader took 0.001s
[00:04:05] [Client thread/TRACE] [Forge/Forge]: Sending event FMLPostInitializationEvent to mod Forge
[00:04:05] [Client thread/TRACE] [Forge/Forge]: Sent event FMLPostInitializationEvent to mod Forge
[00:04:05] [Client thread/DEBUG] [FML/]: Bar Step: PostInitialization - Minecraft Forge took 0.031s
[00:04:05] [Client thread/TRACE] [labstuff/labstuff]: Sending event FMLPostInitializationEvent to mod labstuff
[00:04:05] [Client thread/INFO] [sTDOUT/labstuff]: [keegan.labstuff.recipes.Recipes:addEnrichment:172]: tile.labstuff:blockRubberLog -> item.labstuff:itemRubber
[00:04:05] [Client thread/INFO] [sTDOUT/labstuff]: [keegan.labstuff.recipes.Recipes:addEnrichment:172]: tile.labstuff:blockmangore -> item.labstuff:itemMangDust
[00:04:05] [Client thread/INFO] [sTDOUT/labstuff]: [keegan.labstuff.recipes.Recipes:addEnrichment:172]: tile.labstuff:blockcopperore -> item.labstuff:itemCopperDust
[00:04:05] [Client thread/INFO] [sTDOUT/labstuff]: [keegan.labstuff.recipes.Recipes:addEnrichment:172]: tile.labstuff:blockzincore -> item.labstuff:itemZincDust
[00:04:05] [Client thread/INFO] [sTDOUT/labstuff]: [keegan.labstuff.recipes.Recipes:addEnrichment:172]: tile.oreIron -> item.labstuff:itemIronDust
[00:04:05] [Client thread/INFO] [sTDOUT/labstuff]: [keegan.labstuff.recipes.Recipes:addEnrichment:172]: tile.oreGold -> item.labstuff:itemGoldDust
[00:04:05] [Client thread/TRACE] [labstuff/labstuff]: Sent event FMLPostInitializationEvent to mod labstuff
[00:04:05] [Client thread/DEBUG] [FML/]: Bar Step: PostInitialization - LabStuff took 0.010s
[00:04:05] [Client thread/DEBUG] [FML/]: Bar Finished: PostInitialization took 0.042s
[00:04:05] [Client thread/TRACE] [mcp/mcp]: Sending event FMLLoadCompleteEvent to mod mcp
[00:04:05] [Client thread/TRACE] [mcp/mcp]: Sent event FMLLoadCompleteEvent to mod mcp
[00:04:05] [Client thread/DEBUG] [FML/]: Bar Step: LoadComplete - Minecraft Coder Pack took 0.001s
[00:04:05] [Client thread/TRACE] [FML/FML]: Sending event FMLLoadCompleteEvent to mod FML
[00:04:05] [Client thread/TRACE] [FML/FML]: Sent event FMLLoadCompleteEvent to mod FML
[00:04:05] [Client thread/DEBUG] [FML/]: Bar Step: LoadComplete - Forge Mod Loader took 0.001s
[00:04:05] [Client thread/TRACE] [Forge/Forge]: Sending event FMLLoadCompleteEvent to mod Forge
[00:04:05] [Client thread/DEBUG] [FML/Forge]: Forge RecipeSorter Baking:
[00:04:05] [Client thread/DEBUG] [FML/Forge]:   16: RecipeEntry("Before", UNKNOWN, )
[00:04:05] [Client thread/DEBUG] [FML/Forge]:   15: RecipeEntry("minecraft:shaped", SHAPED, net.minecraft.item.crafting.ShapedRecipes) Before: minecraft:shapeless
[00:04:05] [Client thread/DEBUG] [FML/Forge]:   14: RecipeEntry("forge:shapedore", SHAPED, net.minecraftforge.oredict.ShapedOreRecipe) Before: minecraft:shapeless After: minecraft:shaped
[00:04:05] [Client thread/DEBUG] [FML/Forge]:   13: RecipeEntry("minecraft:mapextending", SHAPED, net.minecraft.item.crafting.RecipesMapExtending) Before: minecraft:shapeless After: minecraft:shaped
[00:04:05] [Client thread/DEBUG] [FML/Forge]:   12: RecipeEntry("minecraft:shapeless", SHAPELESS, net.minecraft.item.crafting.ShapelessRecipes) After: minecraft:shaped
[00:04:05] [Client thread/DEBUG] [FML/Forge]:   11: RecipeEntry("minecraft:repair", SHAPELESS, net.minecraft.item.crafting.RecipeRepairItem) After: minecraft:shapeless
[00:04:05] [Client thread/DEBUG] [FML/Forge]:   10: RecipeEntry("minecraft:shield_deco", SHAPELESS, net.minecraft.item.crafting.ShieldRecipes$Decoration) After: minecraft:shapeless
[00:04:05] [Client thread/DEBUG] [FML/Forge]:   9: RecipeEntry("minecraft:armordyes", SHAPELESS, net.minecraft.item.crafting.RecipesArmorDyes) After: minecraft:shapeless
[00:04:05] [Client thread/DEBUG] [FML/Forge]:   8: RecipeEntry("minecraft:fireworks", SHAPELESS, net.minecraft.item.crafting.RecipeFireworks) After: minecraft:shapeless
[00:04:05] [Client thread/DEBUG] [FML/Forge]:   7: RecipeEntry("minecraft:pattern_dupe", SHAPELESS, net.minecraft.item.crafting.RecipesBanners$RecipeDuplicatePattern) After: minecraft:shapeless
[00:04:05] [Client thread/DEBUG] [FML/Forge]:   6: RecipeEntry("minecraft:tippedarrow", SHAPELESS, net.minecraft.item.crafting.RecipeTippedArrow) After: minecraft:shapeless
[00:04:05] [Client thread/DEBUG] [FML/Forge]:   5: RecipeEntry("minecraft:mapcloning", SHAPELESS, net.minecraft.item.crafting.RecipesMapCloning) After: minecraft:shapeless
[00:04:05] [Client thread/DEBUG] [FML/Forge]:   4: RecipeEntry("forge:shapelessore", SHAPELESS, net.minecraftforge.oredict.ShapelessOreRecipe) After: minecraft:shapeless
[00:04:05] [Client thread/DEBUG] [FML/Forge]:   3: RecipeEntry("minecraft:pattern_add", SHAPELESS, net.minecraft.item.crafting.RecipesBanners$RecipeAddPattern) After: minecraft:shapeless
[00:04:05] [Client thread/DEBUG] [FML/Forge]:   2: RecipeEntry("minecraft:bookcloning", SHAPELESS, net.minecraft.item.crafting.RecipeBookCloning) After: minecraft:shapeless
[00:04:05] [Client thread/DEBUG] [FML/Forge]:   1: RecipeEntry("After", UNKNOWN, )
[00:04:05] [Client thread/DEBUG] [FML/Forge]: Sorting recipes
[00:04:05] [Client thread/TRACE] [Forge/Forge]: Sent event FMLLoadCompleteEvent to mod Forge
[00:04:05] [Client thread/DEBUG] [FML/]: Bar Step: LoadComplete - Minecraft Forge took 0.038s
[00:04:05] [Client thread/TRACE] [labstuff/labstuff]: Sending event FMLLoadCompleteEvent to mod labstuff
[00:04:05] [Client thread/TRACE] [labstuff/labstuff]: Sent event FMLLoadCompleteEvent to mod labstuff
[00:04:05] [Client thread/DEBUG] [FML/]: Bar Step: LoadComplete - LabStuff took 0.000s
[00:04:05] [Client thread/DEBUG] [FML/]: Bar Finished: LoadComplete took 0.039s
[00:04:05] [Client thread/DEBUG] [FML/]: Freezing block and item id maps
[00:04:05] [Client thread/INFO] [FML/]: Forge Mod Loader has successfully loaded 4 mods
[00:04:05] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - Default took 0.000s
[00:04:05] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - FMLFileResourcePack:Forge Mod Loader took 0.003s
[00:04:05] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - FMLFileResourcePack:Minecraft Forge took 0.003s
[00:04:05] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - FMLFileResourcePack:LabStuff took 0.008s
[00:04:06] [Client thread/DEBUG] [FML/]: Bar Step: Reloading Texture Manager - minecraft:textures/atlas/blocks.png took 0.000s
[00:04:06] [Client thread/DEBUG] [FML/]: Bar Step: Reloading Texture Manager - minecraft:textures/font/ascii.png took 0.008s
[00:04:06] [Client thread/DEBUG] [FML/]: Bar Step: Reloading Texture Manager - minecraft:dynamic/lightMap_1 took 0.000s
[00:04:06] [Client thread/DEBUG] [FML/]: Bar Step: Reloading Texture Manager - minecraft:textures/misc/forcefield.png took 0.038s
[00:04:06] [Client thread/DEBUG] [FML/]: Bar Step: Reloading Texture Manager - minecraft:textures/font/ascii_sga.png took 0.019s
[00:04:06] [Client thread/DEBUG] [FML/]: Bar Finished: Reloading Texture Manager took 0.066s
[00:04:09] [Client thread/DEBUG] [FML/]: Bar Finished: ModelLoader: blocks took 1.947s
[00:04:09] [Client thread/DEBUG] [FML/]: Item json isn't found for 'labstuff:blockACPGag#inventory', trying to load the variant from the blockstate json
[00:04:09] [Client thread/DEBUG] [FML/]: Item json isn't found for 'labstuff:blockGag#inventory', trying to load the variant from the blockstate json
[00:04:09] [Client thread/DEBUG] [FML/]: Item json isn't found for 'labstuff:blockSolarGag#inventory', trying to load the variant from the blockstate json
[00:04:09] [Client thread/DEBUG] [FML/]: Item json isn't found for 'labstuff:blockWindGag#inventory', trying to load the variant from the blockstate json
[00:04:10] [Client thread/DEBUG] [FML/]: Bar Finished: ModelLoader: items took 1.055s
[00:04:10] [Client thread/INFO] [FML/]: Max texture size: 16384
[00:04:11] [Client thread/DEBUG] [FML/]: Bar Finished: Texture stitching took 0.910s
[00:04:11] [Client thread/DEBUG] [FML/]: Bar Finished: Texture stitching took 0.099s
[00:04:11] [Client thread/DEBUG] [FML/]: Bar Finished: Texture creation took 0.105s
[00:04:13] [Client thread/DEBUG] [FML/]: Bar Finished: Texture mipmap and upload took 2.055s
[00:04:16] [Client thread/DEBUG] [FML/]: Bar Finished: ModelLoader: baking took 2.706s
[00:04:16] [Client thread/ERROR] [FML/]: Exception loading model for variant labstuff:blockturbineglass#connected_down=true,connected_east=true,connected_north=false,connected_south=true,connected_up=true,connected_west=false,turbines=2
net.minecraftforge.client.model.ModelLoaderRegistry$LoaderException: Exception loading model labstuff:blockturbineglass#connected_down=true,connected_east=true,connected_north=false,connected_south=true,connected_up=true,connected_west=false,turbines=2 with loader VariantLoader.INSTANCE, skipping
at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:153) ~[ModelLoaderRegistry.class:?]
at net.minecraftforge.client.model.ModelLoader.func_177569_a(ModelLoader.java:241) ~[ModelLoader.class:?]
at net.minecraft.client.renderer.block.model.ModelBakery.loadBlock(ModelBakery.java:145) ~[byo.class:?]
at net.minecraftforge.client.model.ModelLoader.func_188640_b(ModelLoader.java:229) ~[ModelLoader.class:?]
at net.minecraftforge.client.model.ModelLoader.func_177570_a(ModelLoader.java:146) ~[ModelLoader.class:?]
at net.minecraft.client.renderer.block.model.ModelManager.func_110549_a(ModelManager.java:28) [byp.class:?]
at net.minecraft.client.resources.SimpleReloadableResourceManager.func_110544_b(SimpleReloadableResourceManager.java:132) [bxi.class:?]
at net.minecraft.client.resources.SimpleReloadableResourceManager.func_110541_a(SimpleReloadableResourceManager.java:113) [bxi.class:?]
at net.minecraft.client.Minecraft.func_110436_a(Minecraft.java:755) [bcx.class:?]
at net.minecraftforge.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:340) [FMLClientHandler.class:?]
at net.minecraft.client.Minecraft.func_71384_a(Minecraft.java:520) [bcx.class:?]
at net.minecraft.client.Minecraft.func_99999_d(Minecraft.java:351) [bcx.class:?]
at net.minecraft.client.main.Main.main(SourceFile:124) [Main.class:?]
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_25]
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_25]
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_25]
at java.lang.reflect.Method.invoke(Method.java:483) ~[?:1.8.0_25]
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:?]
Caused by: net.minecraft.client.renderer.block.model.ModelBlockDefinition$MissingVariantException
at net.minecraft.client.renderer.block.model.ModelBlockDefinition.func_188004_c(ModelBlockDefinition.java:78) ~[bpe.class:?]
at net.minecraftforge.client.model.ModelLoader$VariantLoader.loadModel(ModelLoader.java:1184) ~[ModelLoader$VariantLoader.class:?]
at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:149) ~[ModelLoaderRegistry.class:?]
... 18 more
[00:04:16] [Client thread/ERROR] [FML/]: Exception loading model for variant labstuff:blockturbineglass#connected_down=true,connected_east=true,connected_north=false,connected_south=true,connected_up=true,connected_west=false,turbines=1
net.minecraftforge.client.model.ModelLoaderRegistry$LoaderException: Exception loading model labstuff:blockturbineglass#connected_down=true,connected_east=true,connected_north=false,connected_south=true,connected_up=true,connected_west=false,turbines=1 with loader VariantLoader.INSTANCE, skipping
at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:153) ~[ModelLoaderRegistry.class:?]
at net.minecraftforge.client.model.ModelLoader.func_177569_a(ModelLoader.java:241) ~[ModelLoader.class:?]
at net.minecraft.client.renderer.block.model.ModelBakery.loadBlock(ModelBakery.java:145) ~[byo.class:?]
at net.minecraftforge.client.model.ModelLoader.func_188640_b(ModelLoader.java:229) ~[ModelLoader.class:?]
at net.minecraftforge.client.model.ModelLoader.func_177570_a(ModelLoader.java:146) ~[ModelLoader.class:?]
at net.minecraft.client.renderer.block.model.ModelManager.func_110549_a(ModelManager.java:28) [byp.class:?]
at net.minecraft.client.resources.SimpleReloadableResourceManager.func_110544_b(SimpleReloadableResourceManager.java:132) [bxi.class:?]
at net.minecraft.client.resources.SimpleReloadableResourceManager.func_110541_a(SimpleReloadableResourceManager.java:113) [bxi.class:?]
at net.minecraft.client.Minecraft.func_110436_a(Minecraft.java:755) [bcx.class:?]
at net.minecraftforge.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:340) [FMLClientHandler.class:?]
at net.minecraft.client.Minecraft.func_71384_a(Minecraft.java:520) [bcx.class:?]
at net.minecraft.client.Minecraft.func_99999_d(Minecraft.java:351) [bcx.class:?]
at net.minecraft.client.main.Main.main(SourceFile:124) [Main.class:?]
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_25]
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_25]
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_25]
at java.lang.reflect.Method.invoke(Method.java:483) ~[?:1.8.0_25]
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:?]
Caused by: net.minecraft.client.renderer.block.model.ModelBlockDefinition$MissingVariantException
at net.minecraft.client.renderer.block.model.ModelBlockDefinition.func_188004_c(ModelBlockDefinition.java:78) ~[bpe.class:?]
at net.minecraftforge.client.model.ModelLoader$VariantLoader.loadModel(ModelLoader.java:1184) ~[ModelLoader$VariantLoader.class:?]
at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:149) ~[ModelLoaderRegistry.class:?]
... 18 more
[00:04:16] [Client thread/ERROR] [FML/]: Exception loading model for variant labstuff:blockTurbineRotor#connected_down=true,connected_east=false,connected_north=true,connected_south=true,connected_up=true,connected_west=false,turbines=0
net.minecraftforge.client.model.ModelLoaderRegistry$LoaderException: Exception loading model labstuff:blockTurbineRotor#connected_down=true,connected_east=false,connected_north=true,connected_south=true,connected_up=true,connected_west=false,turbines=0 with loader VariantLoader.INSTANCE, skipping
at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:153) ~[ModelLoaderRegistry.class:?]
at net.minecraftforge.client.model.ModelLoader.func_177569_a(ModelLoader.java:241) ~[ModelLoader.class:?]
at net.minecraft.client.renderer.block.model.ModelBakery.loadBlock(ModelBakery.java:145) ~[byo.class:?]
at net.minecraftforge.client.model.ModelLoader.func_188640_b(ModelLoader.java:229) ~[ModelLoader.class:?]
at net.minecraftforge.client.model.ModelLoader.func_177570_a(ModelLoader.java:146) ~[ModelLoader.class:?]
at net.minecraft.client.renderer.block.model.ModelManager.func_110549_a(ModelManager.java:28) [byp.class:?]
at net.minecraft.client.resources.SimpleReloadableResourceManager.func_110544_b(SimpleReloadableResourceManager.java:132) [bxi.class:?]
at net.minecraft.client.resources.SimpleReloadableResourceManager.func_110541_a(SimpleReloadableResourceManager.java:113) [bxi.class:?]
at net.minecraft.client.Minecraft.func_110436_a(Minecraft.java:755) [bcx.class:?]
at net.minecraftforge.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:340) [FMLClientHandler.class:?]
at net.minecraft.client.Minecraft.func_71384_a(Minecraft.java:520) [bcx.class:?]
at net.minecraft.client.Minecraft.func_99999_d(Minecraft.java:351) [bcx.class:?]
at net.minecraft.client.main.Main.main(SourceFile:124) [Main.class:?]
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_25]
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_25]
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_25]
at java.lang.reflect.Method.invoke(Method.java:483) ~[?:1.8.0_25]
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:?]
Caused by: net.minecraft.client.renderer.block.model.ModelBlockDefinition$MissingVariantException
at net.minecraft.client.renderer.block.model.ModelBlockDefinition.func_188004_c(ModelBlockDefinition.java:78) ~[bpe.class:?]
at net.minecraftforge.client.model.ModelLoader$VariantLoader.loadModel(ModelLoader.java:1184) ~[ModelLoader$VariantLoader.class:?]
at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:149) ~[ModelLoaderRegistry.class:?]
... 18 more
[00:04:16] [Client thread/ERROR] [FML/]: Exception loading blockstate for the variant labstuff:blockTurbineRotor#connected_down=true,connected_east=false,connected_north=true,connected_south=true,connected_up=true,connected_west=false,turbines=0: 
java.lang.Exception: Could not load model definition for variant labstuff:blockTurbineRotor
at net.minecraftforge.client.model.ModelLoader.func_177586_a(ModelLoader.java:274) ~[ModelLoader.class:?]
at net.minecraft.client.renderer.block.model.ModelBakery.loadBlock(ModelBakery.java:121) ~[byo.class:?]
at net.minecraftforge.client.model.ModelLoader.func_188640_b(ModelLoader.java:229) ~[ModelLoader.class:?]
at net.minecraftforge.client.model.ModelLoader.func_177570_a(ModelLoader.java:146) ~[ModelLoader.class:?]
at net.minecraft.client.renderer.block.model.ModelManager.func_110549_a(ModelManager.java:28) [byp.class:?]
at net.minecraft.client.resources.SimpleReloadableResourceManager.func_110544_b(SimpleReloadableResourceManager.java:132) [bxi.class:?]
at net.minecraft.client.resources.SimpleReloadableResourceManager.func_110541_a(SimpleReloadableResourceManager.java:113) [bxi.class:?]
at net.minecraft.client.Minecraft.func_110436_a(Minecraft.java:755) [bcx.class:?]
at net.minecraftforge.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:340) [FMLClientHandler.class:?]
at net.minecraft.client.Minecraft.func_71384_a(Minecraft.java:520) [bcx.class:?]
at net.minecraft.client.Minecraft.func_99999_d(Minecraft.java:351) [bcx.class:?]
at net.minecraft.client.main.Main.main(SourceFile:124) [Main.class:?]
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_25]
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_25]
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_25]
at java.lang.reflect.Method.invoke(Method.java:483) ~[?:1.8.0_25]
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:?]
Caused by: java.lang.RuntimeException: Encountered an exception when loading model definition of model labstuff:blockstates/blockTurbineRotor.json
at net.minecraft.client.renderer.block.model.ModelBakery.func_188632_a(ModelBakery.java:205) ~[byo.class:?]
at net.minecraft.client.renderer.block.model.ModelBakery.func_177586_a(ModelBakery.java:185) ~[byo.class:?]
at net.minecraftforge.client.model.ModelLoader.func_177586_a(ModelLoader.java:270) ~[ModelLoader.class:?]
... 17 more
Caused by: java.io.FileNotFoundException: labstuff:blockstates/blockTurbineRotor.json
at net.minecraft.client.resources.FallbackResourceManager.func_135056_b(FallbackResourceManager.java:103) ~[bww.class:?]
at net.minecraft.client.resources.SimpleReloadableResourceManager.func_135056_b(SimpleReloadableResourceManager.java:79) ~[bxi.class:?]
at net.minecraft.client.renderer.block.model.ModelBakery.func_188632_a(ModelBakery.java:198) ~[byo.class:?]
at net.minecraft.client.renderer.block.model.ModelBakery.func_177586_a(ModelBakery.java:185) ~[byo.class:?]
at net.minecraftforge.client.model.ModelLoader.func_177586_a(ModelLoader.java:270) ~[ModelLoader.class:?]
... 17 more
[00:04:16] [Client thread/ERROR] [FML/]: Exception loading model for variant labstuff:blockTurbineValve#connected_down=false,connected_east=false,connected_north=false,connected_south=true,connected_up=false,connected_west=true,turbines=1
net.minecraftforge.client.model.ModelLoaderRegistry$LoaderException: Exception loading model labstuff:blockTurbineValve#connected_down=false,connected_east=false,connected_north=false,connected_south=true,connected_up=false,connected_west=true,turbines=1 with loader VariantLoader.INSTANCE, skipping
at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:153) ~[ModelLoaderRegistry.class:?]
at net.minecraftforge.client.model.ModelLoader.func_177569_a(ModelLoader.java:241) ~[ModelLoader.class:?]
at net.minecraft.client.renderer.block.model.ModelBakery.loadBlock(ModelBakery.java:145) ~[byo.class:?]
at net.minecraftforge.client.model.ModelLoader.func_188640_b(ModelLoader.java:229) ~[ModelLoader.class:?]
at net.minecraftforge.client.model.ModelLoader.func_177570_a(ModelLoader.java:146) ~[ModelLoader.class:?]
at net.minecraft.client.renderer.block.model.ModelManager.func_110549_a(ModelManager.java:28) [byp.class:?]
at net.minecraft.client.resources.SimpleReloadableResourceManager.func_110544_b(SimpleReloadableResourceManager.java:132) [bxi.class:?]
at net.minecraft.client.resources.SimpleReloadableResourceManager.func_110541_a(SimpleReloadableResourceManager.java:113) [bxi.class:?]
at net.minecraft.client.Minecraft.func_110436_a(Minecraft.java:755) [bcx.class:?]
at net.minecraftforge.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:340) [FMLClientHandler.class:?]
at net.minecraft.client.Minecraft.func_71384_a(Minecraft.java:520) [bcx.class:?]
at net.minecraft.client.Minecraft.func_99999_d(Minecraft.java:351) [bcx.class:?]
at net.minecraft.client.main.Main.main(SourceFile:124) [Main.class:?]
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_25]
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_25]
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_25]
at java.lang.reflect.Method.invoke(Method.java:483) ~[?:1.8.0_25]
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:?]
Caused by: net.minecraft.client.renderer.block.model.ModelBlockDefinition$MissingVariantException
at net.minecraft.client.renderer.block.model.ModelBlockDefinition.func_188004_c(ModelBlockDefinition.java:78) ~[bpe.class:?]
at net.minecraftforge.client.model.ModelLoader$VariantLoader.loadModel(ModelLoader.java:1184) ~[ModelLoader$VariantLoader.class:?]
at net.minecraftforge.client.model.ModelLoaderRegistry.getModel(ModelLoaderRegistry.java:149) ~[ModelLoaderRegistry.class:?]
... 18 more
[00:04:16] [Client thread/ERROR] [FML/]: Suppressed additional 990 model loading errors for domain labstuff
[00:04:16] [Client thread/DEBUG] [FML/]: Bar Finished: Reloading took 10.308s
[00:04:16] [Client thread/DEBUG] [FML/]: Bar Step: Loading Resources - Reloading listeners took 10.308s
[00:04:16] [Client thread/DEBUG] [FML/]: Bar Finished: Loading Resources took 10.323s
[00:04:16] [Client thread/DEBUG] [Forge Mod Loader/]: Mod Forge Mod Loader is missing a pack.mcmeta file, substituting a dummy one
[00:04:16] [Client thread/DEBUG] [Minecraft Forge/]: Mod Minecraft Forge is missing a pack.mcmeta file, substituting a dummy one
[00:04:16] [Client thread/DEBUG] [LabStuff/]: Mod LabStuff is missing a pack.mcmeta file, substituting a dummy one
[00:04:16] [Client thread/DEBUG] [FML/]: Bar Finished: Loading took 47.127s
[00:04:17] [Client thread/ERROR] [TEXTURE ERRORS/]: +=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
[00:04:17] [Client thread/ERROR] [TEXTURE ERRORS/]: The following texture errors were found.
[00:04:17] [Client thread/ERROR] [TEXTURE ERRORS/]: ==================================================
[00:04:17] [Client thread/ERROR] [TEXTURE ERRORS/]:   DOMAIN labstuff
[00:04:17] [Client thread/ERROR] [TEXTURE ERRORS/]: --------------------------------------------------
[00:04:17] [Client thread/ERROR] [TEXTURE ERRORS/]:   domain labstuff is missing 2 textures
[00:04:17] [Client thread/ERROR] [TEXTURE ERRORS/]:     domain labstuff has 1 location:
[00:04:17] [Client thread/ERROR] [TEXTURE ERRORS/]:       mod labstuff resources at C:\Users\keega\AppData\Roaming\.minecraft\mods\labstuff-2.6.jar
[00:04:17] [Client thread/ERROR] [TEXTURE ERRORS/]: -------------------------
[00:04:17] [Client thread/ERROR] [TEXTURE ERRORS/]:     The missing resources for domain labstuff are:
[00:04:17] [Client thread/ERROR] [TEXTURE ERRORS/]:       textures/models/liquidpipe.png
[00:04:17] [Client thread/ERROR] [TEXTURE ERRORS/]:       textures/models/powercable.png
[00:04:17] [Client thread/ERROR] [TEXTURE ERRORS/]: -------------------------
[00:04:17] [Client thread/ERROR] [TEXTURE ERRORS/]:     No other errors exist for domain labstuff
[00:04:17] [Client thread/ERROR] [TEXTURE ERRORS/]: ==================================================
[00:04:17] [Client thread/ERROR] [TEXTURE ERRORS/]: +=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
[00:06:19] [Client thread/DEBUG] [FML/]: Gathering id map for writing to world save New World
[00:06:19] [server thread/TRACE] [mcp/mcp]: Sending event FMLServerAboutToStartEvent to mod mcp
[00:06:19] [server thread/TRACE] [mcp/mcp]: Sent event FMLServerAboutToStartEvent to mod mcp
[00:06:19] [server thread/DEBUG] [FML/]: Bar Step: ServerAboutToStart - Minecraft Coder Pack took 0.001s
[00:06:19] [server thread/TRACE] [FML/FML]: Sending event FMLServerAboutToStartEvent to mod FML
[00:06:19] [server thread/TRACE] [FML/FML]: Sent event FMLServerAboutToStartEvent to mod FML
[00:06:19] [server thread/DEBUG] [FML/]: Bar Step: ServerAboutToStart - Forge Mod Loader took 0.001s
[00:06:19] [server thread/TRACE] [Forge/Forge]: Sending event FMLServerAboutToStartEvent to mod Forge
[00:06:19] [server thread/TRACE] [Forge/Forge]: Sent event FMLServerAboutToStartEvent to mod Forge
[00:06:19] [server thread/DEBUG] [FML/]: Bar Step: ServerAboutToStart - Minecraft Forge took 0.001s
[00:06:19] [server thread/TRACE] [labstuff/labstuff]: Sending event FMLServerAboutToStartEvent to mod labstuff
[00:06:19] [server thread/TRACE] [labstuff/labstuff]: Sent event FMLServerAboutToStartEvent to mod labstuff
[00:06:19] [server thread/DEBUG] [FML/]: Bar Step: ServerAboutToStart - LabStuff took 0.001s
[00:06:19] [server thread/DEBUG] [FML/]: Bar Finished: ServerAboutToStart took 0.003s
[00:06:19] [server thread/INFO] [FML/]: Injecting existing block and item data into this server instance
[00:06:20] [server thread/TRACE] [mcp/mcp]: Sending event FMLModIdMappingEvent to mod mcp
[00:06:20] [server thread/TRACE] [mcp/mcp]: Sent event FMLModIdMappingEvent to mod mcp
[00:06:20] [server thread/DEBUG] [FML/]: Bar Step: ModIdMapping - Minecraft Coder Pack took 0.001s
[00:06:20] [server thread/TRACE] [FML/FML]: Sending event FMLModIdMappingEvent to mod FML
[00:06:20] [server thread/TRACE] [FML/FML]: Sent event FMLModIdMappingEvent to mod FML
[00:06:20] [server thread/DEBUG] [FML/]: Bar Step: ModIdMapping - Forge Mod Loader took 0.000s
[00:06:20] [server thread/TRACE] [Forge/Forge]: Sending event FMLModIdMappingEvent to mod Forge
[00:06:20] [server thread/TRACE] [Forge/Forge]: Sent event FMLModIdMappingEvent to mod Forge
[00:06:20] [server thread/DEBUG] [FML/]: Bar Step: ModIdMapping - Minecraft Forge took 0.043s
[00:06:20] [server thread/TRACE] [labstuff/labstuff]: Sending event FMLModIdMappingEvent to mod labstuff
[00:06:20] [server thread/TRACE] [labstuff/labstuff]: Sent event FMLModIdMappingEvent to mod labstuff
[00:06:20] [server thread/DEBUG] [FML/]: Bar Step: ModIdMapping - LabStuff took 0.001s
[00:06:20] [server thread/DEBUG] [FML/]: Bar Finished: ModIdMapping took 0.046s
[00:06:20] [server thread/INFO] [FML/]: Applying holder lookups
[00:06:20] [server thread/INFO] [FML/]: Holder lookups applied
[00:06:20] [server thread/DEBUG] [FML/]: Loading persistent fluid defaults from world
[00:06:20] [server thread/DEBUG] [FML/]: The fluid minecraft:lava has been selected as the default fluid for lava
[00:06:20] [server thread/DEBUG] [FML/]: The fluid minecraft:water has been selected as the default fluid for water
[00:06:20] [server thread/DEBUG] [FML/]: The fluid labstuff:steam has been selected as the default fluid for steam
[00:06:20] [server thread/INFO] [FML/]: Loading dimension 0 (New World) (net.minecraft.server.integrated.IntegratedServer@49856aa3)
[00:06:23] [server thread/INFO] [FML/]: Loading dimension 1 (New World) (net.minecraft.server.integrated.IntegratedServer@49856aa3)
[00:06:23] [server thread/INFO] [FML/]: Loading dimension -1 (New World) (net.minecraft.server.integrated.IntegratedServer@49856aa3)
[00:06:25] [server thread/TRACE] [mcp/mcp]: Sending event FMLServerStartingEvent to mod mcp
[00:06:25] [server thread/TRACE] [mcp/mcp]: Sent event FMLServerStartingEvent to mod mcp
[00:06:25] [server thread/DEBUG] [FML/]: Bar Step: ServerStarting - Minecraft Coder Pack took 0.003s
[00:06:25] [server thread/TRACE] [FML/FML]: Sending event FMLServerStartingEvent to mod FML
[00:06:25] [server thread/TRACE] [FML/FML]: Sent event FMLServerStartingEvent to mod FML
[00:06:25] [server thread/DEBUG] [FML/]: Bar Step: ServerStarting - Forge Mod Loader took 0.002s
[00:06:25] [server thread/TRACE] [Forge/Forge]: Sending event FMLServerStartingEvent to mod Forge
[00:06:25] [server thread/TRACE] [Forge/Forge]: Sent event FMLServerStartingEvent to mod Forge
[00:06:25] [server thread/DEBUG] [FML/]: Bar Step: ServerStarting - Minecraft Forge took 0.005s
[00:06:25] [server thread/TRACE] [labstuff/labstuff]: Sending event FMLServerStartingEvent to mod labstuff
[00:06:25] [server thread/TRACE] [labstuff/labstuff]: Sent event FMLServerStartingEvent to mod labstuff
[00:06:25] [server thread/DEBUG] [FML/]: Bar Step: ServerStarting - LabStuff took 0.001s
[00:06:25] [server thread/DEBUG] [FML/]: Bar Finished: ServerStarting took 0.011s
[00:06:25] [server thread/TRACE] [mcp/mcp]: Sending event FMLServerStartedEvent to mod mcp
[00:06:25] [server thread/TRACE] [mcp/mcp]: Sent event FMLServerStartedEvent to mod mcp
[00:06:25] [server thread/DEBUG] [FML/]: Bar Step: ServerStarted - Minecraft Coder Pack took 0.000s
[00:06:25] [server thread/TRACE] [FML/FML]: Sending event FMLServerStartedEvent to mod FML
[00:06:25] [server thread/TRACE] [FML/FML]: Sent event FMLServerStartedEvent to mod FML
[00:06:25] [server thread/DEBUG] [FML/]: Bar Step: ServerStarted - Forge Mod Loader took 0.000s
[00:06:25] [server thread/TRACE] [Forge/Forge]: Sending event FMLServerStartedEvent to mod Forge
[00:06:25] [server thread/TRACE] [Forge/Forge]: Sent event FMLServerStartedEvent to mod Forge
[00:06:25] [server thread/DEBUG] [FML/]: Bar Step: ServerStarted - Minecraft Forge took 0.000s
[00:06:25] [server thread/TRACE] [labstuff/labstuff]: Sending event FMLServerStartedEvent to mod labstuff
[00:06:25] [server thread/TRACE] [labstuff/labstuff]: Sent event FMLServerStartedEvent to mod labstuff
[00:06:25] [server thread/DEBUG] [FML/]: Bar Step: ServerStarted - LabStuff took 0.000s
[00:06:25] [server thread/DEBUG] [FML/]: Bar Finished: ServerStarted took 0.002s
[00:06:26] [Netty Local Client IO #0/TRACE] [FML/]: Handshake channel activating
[00:06:26] [Netty Local Client IO #0/DEBUG] [FML/]: FMLHandshakeClientState: null->FMLHandshakeClientState$1:START
[00:06:26] [Netty Local Client IO #0/DEBUG] [FML/]:   Next: HELLO
[00:06:26] [Netty Server IO #1/TRACE] [FML/]: Handshake channel activating
[00:06:26] [Netty Server IO #1/DEBUG] [FML/]: FMLHandshakeServerState: null->FMLHandshakeServerState$1:START
[00:06:26] [Netty Server IO #1/DEBUG] [FML/]:   Next: HELLO
[00:06:26] [Netty Local Client IO #0/DEBUG] [FML/]: Server FML protocol version 2, 4 byte dimension received 0
[00:06:26] [Netty Local Client IO #0/DEBUG] [FML/]: FMLHandshakeClientState: $ServerHello->FMLHandshakeClientState$2:HELLO
[00:06:26] [Netty Local Client IO #0/INFO] [FML/]: Server protocol version 2
[00:06:26] [Netty Local Client IO #0/DEBUG] [FML/]: Received override dimension 0
[00:06:26] [Netty Server IO #1/DEBUG] [FML/]: FMLHandshakeServerState: $ClientHello->FMLHandshakeServerState$2:HELLO
[00:06:26] [Netty Server IO #1/INFO] [FML/]: Client protocol version 2
[00:06:26] [Netty Server IO #1/DEBUG] [FML/]:   Next: HELLO
[00:06:26] [Netty Local Client IO #0/DEBUG] [FML/]:   Next: WAITINGSERVERDATA
[00:06:26] [Netty Server IO #1/DEBUG] [FML/]: FMLHandshakeServerState: $ModList:4 mods->FMLHandshakeServerState$2:HELLO
[00:06:26] [Netty Server IO #1/INFO] [FML/]: Client attempting to join with 4 mods : [email protected],[email protected],[email protected],[email protected]
[00:06:26] [Netty Server IO #1/DEBUG] [FML/]:   Next: WAITINGCACK
[00:06:26] [Netty Local Client IO #0/DEBUG] [FML/]: FMLHandshakeClientState: $ModList:4 mods->FMLHandshakeClientState$3:WAITINGSERVERDATA
[00:06:26] [Netty Local Client IO #0/DEBUG] [FML/]:   Next: PENDINGCOMPLETE
[00:06:26] [Netty Server IO #1/DEBUG] [FML/]: FMLHandshakeServerState: $HandshakeAck:{2}->FMLHandshakeServerState$3:WAITINGCACK
[00:06:26] [Netty Local Client IO #0/DEBUG] [FML/]: FMLHandshakeClientState: $HandshakeAck:{2}->FMLHandshakeClientState$5:PENDINGCOMPLETE
[00:06:26] [Netty Local Client IO #0/DEBUG] [FML/]:   Next: COMPLETE
[00:06:26] [Netty Server IO #1/DEBUG] [FML/]:   Next: COMPLETE
[00:06:26] [Netty Server IO #1/DEBUG] [FML/]: FMLHandshakeServerState: $HandshakeAck:{4}->FMLHandshakeServerState$4:COMPLETE
[00:06:26] [Netty Server IO #1/DEBUG] [FML/]:   Next: DONE
[00:06:26] [Netty Local Client IO #0/DEBUG] [FML/]: The fluid minecraft:lava has been selected as the default fluid for lava
[00:06:26] [Netty Local Client IO #0/DEBUG] [FML/]: The fluid minecraft:water has been selected as the default fluid for water
[00:06:26] [Netty Local Client IO #0/DEBUG] [FML/]: The fluid labstuff:steam has been selected as the default fluid for steam
[00:06:26] [Netty Local Client IO #0/DEBUG] [FML/]: FMLHandshakeClientState: $HandshakeAck:{3}->FMLHandshakeClientState$6:COMPLETE
[00:06:26] [Netty Local Client IO #0/DEBUG] [FML/]:   Next: DONE
[00:06:26] [Netty Server IO #1/DEBUG] [FML/]: FMLHandshakeServerState: $HandshakeAck:{5}->FMLHandshakeServerState$5:DONE
[00:06:26] [Netty Server IO #1/DEBUG] [FML/]:   Next: DONE
[00:06:26] [Netty Local Client IO #0/INFO] [FML/]: [Netty Local Client IO #0] Client side modded connection established
[00:06:26] [server thread/INFO] [FML/]: [server thread] Server side modded connection established
[00:06:26] [Client thread/DEBUG] [FML/]: Overriding dimension: using 0
[00:06:30] [server thread/DEBUG] [FML/]: Gathering id map for writing to world save New World
[00:06:57] [server thread/INFO] [sTDOUT/]: [keegan.labstuff.tileentity.DataConnectedDevice:registerWithNetwork:29]: remote
[00:07:12] [server thread/DEBUG] [FML/]: Gathering id map for writing to world save New World
[00:07:28] [server thread/INFO] [sTDOUT/]: [keegan.labstuff.tileentity.DataConnectedDevice:registerWithNetwork:29]: remote
[00:07:44] [server thread/INFO] [sTDOUT/]: [keegan.labstuff.tileentity.DataConnectedDevice:registerWithNetwork:29]: remote
[00:07:49] [server thread/INFO] [sTDOUT/]: [keegan.labstuff.tileentity.DataConnectedDevice:registerWithNetwork:29]: remote
[00:07:57] [server thread/DEBUG] [FML/]: Gathering id map for writing to world save New World
[00:08:03] [server thread/INFO] [sTDOUT/]: [keegan.labstuff.tileentity.DataConnectedDevice:registerWithNetwork:29]: remote

 

 

latest

 

[00:03:17] [Client thread/INFO]: Setting user: DrDeathman
[00:03:26] [Client thread/WARN]: Skipping bad option: lastServer:
[00:03:26] [Client thread/INFO]: LWJGL Version: 2.9.4
[00:03:34] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:LabStuff
[00:03:55] [sound Library Loader/INFO]: Starting up SoundSystem...
[00:03:56] [Thread-8/INFO]: Initializing LWJGL OpenAL
[00:03:56] [Thread-8/INFO]: (The LWJGL binding of OpenAL.  For more information, see http://www.lwjgl.org)
[00:03:57] [Thread-8/INFO]: OpenAL initialized.
[00:03:57] [sound Library Loader/INFO]: Sound engine started
[00:04:00] [Client thread/INFO]: Created: 16x16 textures-atlas
[00:04:05] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:LabStuff
[00:04:07] [Client thread/INFO]: SoundSystem shutting down...
[00:04:07] [Client thread/WARN]: Author: Paul Lamb, www.paulscode.com
[00:04:07] [sound Library Loader/INFO]: Starting up SoundSystem...
[00:04:07] [Thread-10/INFO]: Initializing LWJGL OpenAL
[00:04:07] [Thread-10/INFO]: (The LWJGL binding of OpenAL.  For more information, see http://www.lwjgl.org)
[00:04:07] [Thread-10/INFO]: OpenAL initialized.
[00:04:07] [sound Library Loader/INFO]: Sound engine started
[00:04:11] [Client thread/INFO]: Created: 4096x2048 textures-atlas
[00:04:16] [Client thread/WARN]: Skipping bad option: lastServer:
[00:06:19] [server thread/INFO]: Starting integrated minecraft server version 1.10.2
[00:06:19] [server thread/INFO]: Generating keypair
[00:06:23] [server thread/INFO]: Preparing start region for level 0
[00:06:24] [server thread/INFO]: Preparing spawn area: 60%
[00:06:25] [server thread/INFO]: Changing view distance to 12, from 10
[00:06:26] [server thread/INFO]: DrDeathman[local:E:a2d14a6a] logged in with entity id 0 at (992.5, 4.0, 431.5)
[00:06:26] [server thread/INFO]: DrDeathman joined the game
[00:06:30] [server thread/INFO]: Saving and pausing game...
[00:06:30] [server thread/INFO]: Saving chunks for level 'New World'/Overworld
[00:06:31] [server thread/INFO]: Saving chunks for level 'New World'/Nether
[00:06:31] [server thread/INFO]: Saving chunks for level 'New World'/The End
[00:06:36] [server thread/INFO]: DrDeathman has just earned the achievement [Taking Inventory]
[00:06:36] [Client thread/INFO]: [CHAT] DrDeathman has just earned the achievement [Taking Inventory]
[00:06:58] [server thread/INFO]: <DrDeathman> hi
[00:06:58] [Client thread/INFO]: [CHAT] <DrDeathman> hi
[00:07:02] [server thread/INFO]: <DrDeathman> hi
[00:07:02] [Client thread/INFO]: [CHAT] <DrDeathman> hi
[00:07:03] [server thread/INFO]: <DrDeathman> hi
[00:07:03] [Client thread/INFO]: [CHAT] <DrDeathman> hi
[00:07:04] [server thread/INFO]: <DrDeathman> hi
[00:07:04] [Client thread/INFO]: [CHAT] <DrDeathman> hi
[00:07:08] [server thread/INFO]: <DrDeathman> hi
[00:07:08] [Client thread/INFO]: [CHAT] <DrDeathman> hi
[00:07:13] [server thread/INFO]: <DrDeathman> hi
[00:07:13] [Client thread/INFO]: [CHAT] <DrDeathman> hi
[00:07:29] [Client thread/INFO]: [CHAT] Network is holding 1
[00:07:29] [Client thread/INFO]: [CHAT] Network is holding 1
[00:07:48] [Client thread/INFO]: [CHAT] Network is holding 0
[00:07:48] [Client thread/INFO]: [CHAT] Network is holding 0
[00:07:48] [Client thread/INFO]: [CHAT] Network is holding 0
[00:07:48] [Client thread/INFO]: [CHAT] Network is holding 0
[00:07:49] [Client thread/INFO]: [CHAT] Network is holding 0
[00:07:49] [Client thread/INFO]: [CHAT] Network is holding 0
[00:07:52] [Client thread/INFO]: [CHAT] Network is holding 0
[00:07:52] [Client thread/INFO]: [CHAT] Network is holding 0
[00:07:56] [Client thread/INFO]: [CHAT] Network is holding 0
[00:07:56] [Client thread/INFO]: [CHAT] Network is holding 0
[00:08:00] [Client thread/INFO]: [CHAT] Network is holding 0
[00:08:00] [Client thread/INFO]: [CHAT] Network is holding 0
[00:08:08] [Client thread/INFO]: [CHAT] Network is holding 2
[00:08:08] [Client thread/INFO]: [CHAT] Network is holding 2
[00:08:08] [Client thread/INFO]: [CHAT] Network is holding 2
[00:08:08] [Client thread/INFO]: [CHAT] Network is holding 2
[00:08:09] [Client thread/INFO]: [CHAT] Network is holding 2
[00:08:09] [Client thread/INFO]: [CHAT] Network is holding 2
[00:08:10] [Client thread/INFO]: [CHAT] Network is holding 4
[00:08:10] [Client thread/INFO]: [CHAT] Network is holding 4
[00:08:11] [Client thread/INFO]: [CHAT] Network is holding 4
[00:08:11] [Client thread/INFO]: [CHAT] Network is holding 4
[00:08:11] [Client thread/INFO]: [CHAT] Network is holding 4
[00:08:11] [Client thread/INFO]: [CHAT] Network is holding 4
[00:08:11] [Client thread/INFO]: [CHAT] Network is holding 4
[00:08:11] [Client thread/INFO]: [CHAT] Network is holding 4
[00:08:11] [Client thread/INFO]: [CHAT] Network is holding 4
[00:08:11] [Client thread/INFO]: [CHAT] Network is holding 4

 

However that chat log gives me a lead. That comes from a cable connected to the interface and only the interface. For some reason, it looks like we have an error in the registered devices. I'll look into it after the holiday

[shadow=gray,left][glow=red,2,300]KEEGAN[/glow][/shadow]

Link to comment
Share on other sites

How do you know that Minecraft crashed? I'm looking at the logs, but I don't see any crash. Did the server crash? If so, then maybe you could show us the crash report so we have some hope of helping?

The debugger is a powerful and necessary tool in any IDE, so learn how to use it. You'll be able to tell us more and get better help here if you investigate your runtime problems in the debugger before posting.

Link to comment
Share on other sites

I have explained this before, kind sir. The server either lags or crashes(tile entities are inaccessible and chat does not work) and when you attempt to save the jvm hangs and you have to use Task Manager to force close it. There is NO crash log.

 

If the Minecraft server crashes, then there is a crash log. If the JVM hangs, then you have a deeper problem (and saying that Minecraft crashed will just mislead some of us). You might need to go to a Java forum and show it a JVM log (if there's a way to generate one). Good luck  :-\

The debugger is a powerful and necessary tool in any IDE, so learn how to use it. You'll be able to tell us more and get better help here if you investigate your runtime problems in the debugger before posting.

Link to comment
Share on other sites

If it hangs, that sounds like an infinite loop.

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



×
×
  • Create New...

Important Information

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