Jump to content

[1.12.2]Making a custom wire, what is connecting also to up and down


MrPablo2000

Recommended Posts

I tried to solve this problem, but i don't know how. I tried to make a block, what is a cable(such as a redstone wire), but it must connect also with up and down(for example - redstone conduits ). I tried to understand vanilla redstone wire code, and modify it to my needs - but it doesn't working(it's crashing). Code

CommonProxy

Spoiler

package com.lanterns.proxy;

import com.lanterns.ModBlocks;
import com.lanterns.ModTut;
import com.lanterns.blocks.*;
import net.minecraft.block.Block;
import net.minecraft.creativetab.CreativeTabs;
import net.minecraft.item.Item;
import net.minecraft.item.ItemBlock;
import net.minecraftforge.event.RegistryEvent;
import net.minecraftforge.fml.common.Mod;
import net.minecraftforge.fml.common.event.FMLInitializationEvent;
import net.minecraftforge.fml.common.event.FMLPostInitializationEvent;
import net.minecraftforge.fml.common.event.FMLPreInitializationEvent;
import net.minecraftforge.fml.common.eventhandler.SubscribeEvent;

@Mod.EventBusSubscriber
public class CommonProxy {

    // Config instance

    public void preInit(FMLPreInitializationEvent e) {


    }

    public void init(FMLInitializationEvent e) {
    }

    public void postInit(FMLPostInitializationEvent e) {
 
    }

    @SubscribeEvent
    public static void registerBlocks(RegistryEvent.Register<Block> event) {

        event.getRegistry().register(new ModelBlock());
        event.getRegistry().register(new OROLantern(false).setRegistryName("oro").setCreativeTab(CreativeTabs.REDSTONE));
        event.getRegistry().register(new OROLantern(true).setRegistryName("oroactive"));
        event.getRegistry().register(new Zyrandol(false).setRegistryName("z").setCreativeTab(CreativeTabs.REDSTONE));
        event.getRegistry().register(new Zyrandol(true).setRegistryName("zactive"));
        event.getRegistry().register(new SlupGora().setRegistryName("slupgora"));

    }

    @SubscribeEvent
    public static void registerItems(RegistryEvent.Register<Item> event) {


      
        event.getRegistry().register(new ItemBlock(ModBlocks.modelBlock).setRegistryName(ModBlocks.modelBlock.getRegistryName()));
        event.getRegistry().register(new ItemBlock(ModBlocks.oro).setRegistryName(ModBlocks.oro.getRegistryName()));
        event.getRegistry().register(new ItemBlock(ModBlocks.oroActive).setRegistryName(ModBlocks.oroActive.getRegistryName()));
        event.getRegistry().register(new ItemBlock(ModBlocks.zyrandol).setRegistryName(ModBlocks.zyrandol.getRegistryName()));
        event.getRegistry().register(new ItemBlock(ModBlocks.zyrandolActive).setRegistryName(ModBlocks.zyrandolActive.getRegistryName()));
        event.getRegistry().register(new ItemBlock(ModBlocks.slupGora).setRegistryName(ModBlocks.slupGora.getRegistryName()));

    }

}
 

 

SlupGora:

Spoiler

package com.lanterns.blocks;

import java.util.EnumSet;
import java.util.List;
import java.util.Random;
import java.util.Set;

import javax.annotation.Nullable;

import com.google.common.collect.Lists;
import com.google.common.collect.Sets;

import com.lanterns.ModBlocks;
import net.minecraft.block.Block;
import net.minecraft.block.BlockRedstoneDiode;
import net.minecraft.block.material.Material;
import net.minecraft.block.properties.IProperty;
import net.minecraft.block.properties.PropertyEnum;
import net.minecraft.block.properties.PropertyInteger;
import net.minecraft.block.state.BlockFaceShape;
import net.minecraft.block.state.BlockStateContainer;
import net.minecraft.block.state.IBlockState;
import net.minecraft.client.renderer.block.model.ModelResourceLocation;
import net.minecraft.init.Blocks;
import net.minecraft.init.Items;
import net.minecraft.item.Item;
import net.minecraft.item.ItemStack;
import net.minecraft.util.BlockRenderLayer;
import net.minecraft.util.EnumFacing;
import net.minecraft.util.EnumParticleTypes;
import net.minecraft.util.IStringSerializable;
import net.minecraft.util.Mirror;
import net.minecraft.util.Rotation;
import net.minecraft.util.math.AxisAlignedBB;
import net.minecraft.util.math.BlockPos;
import net.minecraft.util.math.MathHelper;
import net.minecraft.world.IBlockAccess;
import net.minecraft.world.World;
import net.minecraftforge.client.model.ModelLoader;
import net.minecraftforge.fml.relauncher.Side;
import net.minecraftforge.fml.relauncher.SideOnly;

public class SlupGora extends Block
{
    public static final PropertyEnum<SlupGora.EnumAttachPosition> NORTH = PropertyEnum.<SlupGora.EnumAttachPosition>create("north", SlupGora.EnumAttachPosition.class);
    public static final PropertyEnum<SlupGora.EnumAttachPosition> EAST = PropertyEnum.<SlupGora.EnumAttachPosition>create("east", SlupGora.EnumAttachPosition.class);
    public static final PropertyEnum<SlupGora.EnumAttachPosition> SOUTH = PropertyEnum.<SlupGora.EnumAttachPosition>create("south", SlupGora.EnumAttachPosition.class);
    public static final PropertyEnum<SlupGora.EnumAttachPosition> WEST = PropertyEnum.<SlupGora.EnumAttachPosition>create("west", SlupGora.EnumAttachPosition.class);
    public static final PropertyEnum<SlupGora.EnumAttachPosition> UP = PropertyEnum.<SlupGora.EnumAttachPosition>create("up", SlupGora.EnumAttachPosition.class);
    public static final PropertyEnum<SlupGora.EnumAttachPosition> DOWN = PropertyEnum.<SlupGora.EnumAttachPosition>create("down", SlupGora.EnumAttachPosition.class);
    public static final PropertyInteger POWER = PropertyInteger.create("power", 0, 15);
    protected static final AxisAlignedBB[] REDSTONE_WIRE_AABB = new AxisAlignedBB[] {new AxisAlignedBB(0.1875D, 0.0D, 0.1875D, 0.8125D, 0.0625D, 0.8125D), new AxisAlignedBB(0.1875D, 0.0D, 0.1875D, 0.8125D, 0.0625D, 1.0D), new AxisAlignedBB(0.0D, 0.0D, 0.1875D, 0.8125D, 0.0625D, 0.8125D), new AxisAlignedBB(0.0D, 0.0D, 0.1875D, 0.8125D, 0.0625D, 1.0D), new AxisAlignedBB(0.1875D, 0.0D, 0.0D, 0.8125D, 0.0625D, 0.8125D), new AxisAlignedBB(0.1875D, 0.0D, 0.0D, 0.8125D, 0.0625D, 1.0D), new AxisAlignedBB(0.0D, 0.0D, 0.0D, 0.8125D, 0.0625D, 0.8125D), new AxisAlignedBB(0.0D, 0.0D, 0.0D, 0.8125D, 0.0625D, 1.0D), new AxisAlignedBB(0.1875D, 0.0D, 0.1875D, 1.0D, 0.0625D, 0.8125D), new AxisAlignedBB(0.1875D, 0.0D, 0.1875D, 1.0D, 0.0625D, 1.0D), new AxisAlignedBB(0.0D, 0.0D, 0.1875D, 1.0D, 0.0625D, 0.8125D), new AxisAlignedBB(0.0D, 0.0D, 0.1875D, 1.0D, 0.0625D, 1.0D), new AxisAlignedBB(0.1875D, 0.0D, 0.0D, 1.0D, 0.0625D, 0.8125D), new AxisAlignedBB(0.1875D, 0.0D, 0.0D, 1.0D, 0.0625D, 1.0D), new AxisAlignedBB(0.0D, 0.0D, 0.0D, 1.0D, 0.0625D, 0.8125D), new AxisAlignedBB(0.0D, 0.0D, 0.0D, 1.0D, 0.0625D, 1.0D)};
    private boolean canProvidePower = true;
    /** List of blocks to update with redstone. */
    private final Set<BlockPos> blocksNeedingUpdate = Sets.<BlockPos>newHashSet();

    public SlupGora()
    {
        super(Material.CIRCUITS);
        this.setDefaultState(this.blockState.getBaseState().withProperty(NORTH, SlupGora.EnumAttachPosition.NONE).withProperty(EAST, SlupGora.EnumAttachPosition.NONE).withProperty(SOUTH, SlupGora.EnumAttachPosition.NONE).withProperty(WEST, SlupGora.EnumAttachPosition.NONE).withProperty(UP, SlupGora.EnumAttachPosition.NONE).withProperty(DOWN, SlupGora.EnumAttachPosition.NONE).withProperty(POWER, Integer.valueOf(0)));
    }
    @SideOnly(Side.CLIENT)
    public void initModel() {
        ModelLoader.setCustomModelResourceLocation(Item.getItemFromBlock(this), 0, new ModelResourceLocation(getRegistryName(), "inventory"));
    }
    public AxisAlignedBB getBoundingBox(IBlockState state, IBlockAccess source, BlockPos pos)
    {
        return REDSTONE_WIRE_AABB[getAABBIndex(state.getActualState(source, pos))];
    }

    private static int getAABBIndex(IBlockState state)
    {
        int i = 0;
        boolean flag = state.getValue(NORTH) != SlupGora.EnumAttachPosition.NONE;
        boolean flag1 = state.getValue(EAST) != SlupGora.EnumAttachPosition.NONE;
        boolean flag2 = state.getValue(SOUTH) != SlupGora.EnumAttachPosition.NONE;
        boolean flag3 = state.getValue(WEST) != SlupGora.EnumAttachPosition.NONE;
        boolean flag4 = state.getValue(UP) != SlupGora.EnumAttachPosition.NONE;
        boolean flag5 = state.getValue(DOWN) != SlupGora.EnumAttachPosition.NONE;


        if (flag || flag2 && !flag && !flag1 && !flag3)
        {
            i |= 1 << EnumFacing.NORTH.getHorizontalIndex();
        }

        if (flag1 || flag3 && !flag && !flag1 && !flag2)
        {
            i |= 1 << EnumFacing.EAST.getHorizontalIndex();
        }

        if (flag2 || flag && !flag1 && !flag2 && !flag3)
        {
            i |= 1 << EnumFacing.SOUTH.getHorizontalIndex();
        }

        if (flag3 || flag1 && !flag && !flag2 && !flag3)
        {
            i |= 1 << EnumFacing.WEST.getHorizontalIndex();
        }
        if (flag4 || flag5 && !flag4)
        {
            i |= 1 << EnumFacing.UP.getHorizontalIndex();
        }
        if (flag5 || flag4 && !flag5)
        {
            i |= 1 << EnumFacing.DOWN.getHorizontalIndex();
        }

        return i;
    }

    /**
     * Get the actual Block state of this Block at the given position. This applies properties not visible in the
     * metadata, such as fence connections.
     */
    public IBlockState getActualState(IBlockState state, IBlockAccess worldIn, BlockPos pos)
    {
        state = state.withProperty(WEST, this.getAttachPosition(worldIn, pos, EnumFacing.WEST));
        state = state.withProperty(EAST, this.getAttachPosition(worldIn, pos, EnumFacing.EAST));
        state = state.withProperty(NORTH, this.getAttachPosition(worldIn, pos, EnumFacing.NORTH));
        state = state.withProperty(SOUTH, this.getAttachPosition(worldIn, pos, EnumFacing.SOUTH));
        state = state.withProperty(UP, this.getAttachPosition(worldIn, pos, EnumFacing.UP));
        state = state.withProperty(DOWN, this.getAttachPosition(worldIn, pos, EnumFacing.DOWN));
        return state;
    }

    private SlupGora.EnumAttachPosition getAttachPosition(IBlockAccess worldIn, BlockPos pos, EnumFacing direction)
    {
        BlockPos blockpos = pos.offset(direction);
        IBlockState iblockstate = worldIn.getBlockState(pos.offset(direction));

        if (!canConnectTo(worldIn.getBlockState(blockpos), direction, worldIn, blockpos) || !canConnectUpwardsTo(worldIn, blockpos.down()))
        {

            
                boolean flag = worldIn.getBlockState(blockpos).getBlock() == ModBlocks.slupGora;

                if (flag && canConnectUpwardsTo(worldIn, blockpos.up()))
                {
                   
                        return SlupGora.EnumAttachPosition.UP;
                                    }
            

            return SlupGora.EnumAttachPosition.NONE;
        }
        else
        {
            return SlupGora.EnumAttachPosition.SIDE;
        }
    }

    @Nullable
    public AxisAlignedBB getCollisionBoundingBox(IBlockState blockState, IBlockAccess worldIn, BlockPos pos)
    {
        return NULL_AABB;
    }

    /**
     * Used to determine ambient occlusion and culling when rebuilding chunks for render
     */
    public boolean isOpaqueCube(IBlockState state)
    {
        return false;
    }

    public boolean isFullCube(IBlockState state)
    {
        return false;
    }

    /**
     * Checks if this block can be placed exactly at the given position.
     */
    public boolean canPlaceBlockAt(World worldIn, BlockPos pos)
    {
        return true;
    }

    private IBlockState updateSurroundingRedstone(World worldIn, BlockPos pos, IBlockState state)
    {
        state = this.calculateCurrentChanges(worldIn, pos, pos, state);
        List<BlockPos> list = Lists.newArrayList(this.blocksNeedingUpdate);
        this.blocksNeedingUpdate.clear();

        for (BlockPos blockpos : list)
        {
            worldIn.notifyNeighborsOfStateChange(blockpos, this, false);
        }

        return state;
    }

    private IBlockState calculateCurrentChanges(World worldIn, BlockPos pos1, BlockPos pos2, IBlockState state)
    {
        IBlockState iblockstate = state;
        int i = ((Integer)state.getValue(POWER)).intValue();
        int j = 0;
        j = this.getMaxCurrentStrength(worldIn, pos2, j);
        this.canProvidePower = false;
        int k = worldIn.isBlockIndirectlyGettingPowered(pos1);
        this.canProvidePower = true;

        if (k > 0 && k > j - 1)
        {
            j = k;
        }

        int l = 0;

        for (EnumFacing enumfacing : EnumFacing.Plane.HORIZONTAL)
        {
            BlockPos blockpos = pos1.offset(enumfacing);
            boolean flag = blockpos.getX() != pos2.getX() || blockpos.getZ() != pos2.getZ();

            if (flag)
            {
                l = this.getMaxCurrentStrength(worldIn, blockpos, l);
            }

           
                if (flag && pos1.getY() >= pos2.getY())
                {
                    l = this.getMaxCurrentStrength(worldIn, blockpos.up(), l);
                }
            
            else if (!(worldIn.getBlockState(blockpos).getBlock() == ModBlocks.slupGora) && flag && pos1.getY() <= pos2.getY())
            {
                l = this.getMaxCurrentStrength(worldIn, blockpos.down(), l);
            }
        }

        if (l > j)
        {
            j = l - 1;
        }
        else if (j > 0)
        {
            --j;
        }
        else
        {
            j = 0;
        }

        if (k > j - 1)
        {
            j = k;
        }

        if (i != j)
        {
            state = state.withProperty(POWER, Integer.valueOf(j));

            if (worldIn.getBlockState(pos1) == iblockstate)
            {
                worldIn.setBlockState(pos1, state, 2);
            }

            this.blocksNeedingUpdate.add(pos1);

            for (EnumFacing enumfacing1 : EnumFacing.values())
            {
                this.blocksNeedingUpdate.add(pos1.offset(enumfacing1));
            }
        }

        return state;
    }

    /**
     * Calls World.notifyNeighborsOfStateChange() for all neighboring blocks, but only if the given block is a redstone
     * wire.
     */
    private void notifyWireNeighborsOfStateChange(World worldIn, BlockPos pos)
    {
        if (worldIn.getBlockState(pos).getBlock() == this)
        {
            worldIn.notifyNeighborsOfStateChange(pos, this, false);

            for (EnumFacing enumfacing : EnumFacing.values())
            {
                worldIn.notifyNeighborsOfStateChange(pos.offset(enumfacing), this, false);
            }
        }
    }

    /**
     * Called after the block is set in the Chunk data, but before the Tile Entity is set
     */
    public void onBlockAdded(World worldIn, BlockPos pos, IBlockState state)
    {
        if (!worldIn.isRemote)
        {
            this.updateSurroundingRedstone(worldIn, pos, state);

            for (EnumFacing enumfacing : EnumFacing.Plane.VERTICAL)
            {
                worldIn.notifyNeighborsOfStateChange(pos.offset(enumfacing), this, false);
            }

            for (EnumFacing enumfacing1 : EnumFacing.Plane.HORIZONTAL)
            {
                this.notifyWireNeighborsOfStateChange(worldIn, pos.offset(enumfacing1));
            }

            for (EnumFacing enumfacing2 : EnumFacing.Plane.HORIZONTAL)
            {
                BlockPos blockpos = pos.offset(enumfacing2);

                if (worldIn.getBlockState(blockpos).getBlock() == ModBlocks.slupGora)
                {
                    this.notifyWireNeighborsOfStateChange(worldIn, blockpos.up());
                }
                else
                {
                    this.notifyWireNeighborsOfStateChange(worldIn, blockpos.down());
                }
            }
        }
    }

    /**
     * Called serverside after this block is replaced with another in Chunk, but before the Tile Entity is updated
     */
    public void breakBlock(World worldIn, BlockPos pos, IBlockState state)
    {
        super.breakBlock(worldIn, pos, state);

        if (!worldIn.isRemote)
        {
            for (EnumFacing enumfacing : EnumFacing.values())
            {
                worldIn.notifyNeighborsOfStateChange(pos.offset(enumfacing), this, false);
            }

            this.updateSurroundingRedstone(worldIn, pos, state);

            for (EnumFacing enumfacing1 : EnumFacing.Plane.HORIZONTAL)
            {
                this.notifyWireNeighborsOfStateChange(worldIn, pos.offset(enumfacing1));
            }

            for (EnumFacing enumfacing2 : EnumFacing.Plane.HORIZONTAL)
            {
                BlockPos blockpos = pos.offset(enumfacing2);

                if (worldIn.getBlockState(blockpos).getBlock() == ModBlocks.slupGora)
                {
                    this.notifyWireNeighborsOfStateChange(worldIn, blockpos.up());
                }
                else
                {
                    this.notifyWireNeighborsOfStateChange(worldIn, blockpos.down());
                }
            }
        }
    }

    private int getMaxCurrentStrength(World worldIn, BlockPos pos, int strength)
    {
        if (worldIn.getBlockState(pos).getBlock() != this)
        {
            return strength;
        }
        else
        {
            int i = ((Integer)worldIn.getBlockState(pos).getValue(POWER)).intValue();
            return i > strength ? i : strength;
        }
    }

    /**
     * Called when a neighboring block was changed and marks that this state should perform any checks during a neighbor
     * change. Cases may include when redstone power is updated, cactus blocks popping off due to a neighboring solid
     * block, etc.
     */
    public void neighborChanged(IBlockState state, World worldIn, BlockPos pos, Block blockIn, BlockPos fromPos)
    {
        if (!worldIn.isRemote)
        {
            if (this.canPlaceBlockAt(worldIn, pos))
            {
                this.updateSurroundingRedstone(worldIn, pos, state);
            }
            else
            {
                this.dropBlockAsItem(worldIn, pos, state, 0);
                worldIn.setBlockToAir(pos);
            }
        }
    }

    /**
     * Get the Item that this Block should drop when harvested.
     */
    public Item getItemDropped(IBlockState state, Random rand, int fortune)
    {
        return Item.getItemFromBlock(ModBlocks.slupGora);
    }

    public int getStrongPower(IBlockState blockState, IBlockAccess blockAccess, BlockPos pos, EnumFacing side)
    {
        return !this.canProvidePower ? 0 : blockState.getWeakPower(blockAccess, pos, side);
    }

    public int getWeakPower(IBlockState blockState, IBlockAccess blockAccess, BlockPos pos, EnumFacing side)
    {
        if (!this.canProvidePower)
        {
            return 0;
        }
        else
        {
            int i = ((Integer)blockState.getValue(POWER)).intValue();

            if (i == 0)
            {
                return 0;
            }
            else if (side == EnumFacing.UP)
            {
                return i;
            }
            else
            {
                EnumSet<EnumFacing> enumset = EnumSet.<EnumFacing>noneOf(EnumFacing.class);

                for (EnumFacing enumfacing : EnumFacing.Plane.HORIZONTAL)
                {
                    if (this.isPowerSourceAt(blockAccess, pos, enumfacing))
                    {
                        enumset.add(enumfacing);
                    }
                }

                if (side.getAxis().isHorizontal() && enumset.isEmpty())
                {
                    return i;
                }
                else if (enumset.contains(side) && !enumset.contains(side.rotateYCCW()) && !enumset.contains(side.rotateY()))
                {
                    return i;
                }
                else
                {
                    return 0;
                }
            }
        }
    }

    private boolean isPowerSourceAt(IBlockAccess worldIn, BlockPos pos, EnumFacing side)
    {
        BlockPos blockpos = pos.offset(side);
        IBlockState iblockstate = worldIn.getBlockState(blockpos);
        boolean flag = iblockstate.getBlock() == ModBlocks.slupGora;
        boolean flag1 = worldIn.getBlockState(pos.up()).getBlock() == ModBlocks.slupGora;

        if (!flag1 && flag && canConnectUpwardsTo(worldIn, blockpos.up()))
        {
            return true;
        }
        else if (canConnectTo(iblockstate, side, worldIn, pos))
        {
            return true;
        }
        else if (iblockstate.getBlock() == Blocks.POWERED_REPEATER && iblockstate.getValue(BlockRedstoneDiode.FACING) == side)
        {
            return true;
        }
        else
        {
            return !flag && canConnectUpwardsTo(worldIn, blockpos.down());
        }
    }

    protected static boolean canConnectUpwardsTo(IBlockAccess worldIn, BlockPos pos)
    {
        return canConnectTo(worldIn.getBlockState(pos), null, worldIn, pos);
    }

    protected static boolean canConnectTo(IBlockState blockState, @Nullable EnumFacing side, IBlockAccess world, BlockPos pos)
    {
        Block block = blockState.getBlock();

        if (block == Blocks.REDSTONE_WIRE)
        {
            return true;
        }
        if (block == ModBlocks.oro)
        {
            return true;
        }
        if (block == ModBlocks.oroActive)
        {
            return true;
        }
        if (block == ModBlocks.slupGora)
        {
            return true;
        }
        if (block == Blocks.LEVER)
        {
            return true;
        }
return false;
    }

    /**
     * Can this block provide power. Only wire currently seems to have this change based on its state.
     */
    public boolean canProvidePower(IBlockState state)
    {
        return this.canProvidePower;
    }

    @SideOnly(Side.CLIENT)
    public static int colorMultiplier(int p_176337_0_)
    {
        float f = (float)p_176337_0_ / 15.0F;
        float f1 = f * 0.6F + 0.4F;

        if (p_176337_0_ == 0)
        {
            f1 = 0.3F;
        }

        float f2 = f * f * 0.7F - 0.5F;
        float f3 = f * f * 0.6F - 0.7F;

        if (f2 < 0.0F)
        {
            f2 = 0.0F;
        }

        if (f3 < 0.0F)
        {
            f3 = 0.0F;
        }

        int i = MathHelper.clamp((int)(f1 * 255.0F), 0, 255);
        int j = MathHelper.clamp((int)(f2 * 255.0F), 0, 255);
        int k = MathHelper.clamp((int)(f3 * 255.0F), 0, 255);
        return -16777216 | i << 16 | j << 8 | k;
    }


    public ItemStack getItem(World worldIn, BlockPos pos, IBlockState state)
    {
        return new ItemStack(Item.getItemFromBlock(ModBlocks.slupGora));
    }

    /**
     * Convert the given metadata into a BlockState for this Block
     */
    public IBlockState getStateFromMeta(int meta)
    {
        return this.getDefaultState().withProperty(POWER, Integer.valueOf(meta));
    }

    @SideOnly(Side.CLIENT)
    public BlockRenderLayer getBlockLayer()
    {
        return BlockRenderLayer.CUTOUT;
    }

    /**
     * Convert the BlockState into the correct metadata value
     */
    public int getMetaFromState(IBlockState state)
    {
        return ((Integer)state.getValue(POWER)).intValue();
    }

    /**
     * Returns the blockstate with the given rotation from the passed blockstate. If inapplicable, returns the passed
     * blockstate.
     */
    public IBlockState withRotation(IBlockState state, Rotation rot)
    {
        switch (rot)
        {
            case CLOCKWISE_180:
                return state.withProperty(NORTH, state.getValue(SOUTH)).withProperty(EAST, state.getValue(WEST)).withProperty(SOUTH, state.getValue(NORTH)).withProperty(WEST, state.getValue(EAST));
            case COUNTERCLOCKWISE_90:
                return state.withProperty(NORTH, state.getValue(EAST)).withProperty(EAST, state.getValue(SOUTH)).withProperty(SOUTH, state.getValue(WEST)).withProperty(WEST, state.getValue(NORTH));
            case CLOCKWISE_90:
                return state.withProperty(NORTH, state.getValue(WEST)).withProperty(EAST, state.getValue(NORTH)).withProperty(SOUTH, state.getValue(EAST)).withProperty(WEST, state.getValue(SOUTH));
            default:
                return state;
        }
    }

    /**
     * Returns the blockstate with the given mirror of the passed blockstate. If inapplicable, returns the passed
     * blockstate.
     */
    public IBlockState withMirror(IBlockState state, Mirror mirrorIn)
    {
        switch (mirrorIn)
        {
            case LEFT_RIGHT:
                return state.withProperty(NORTH, state.getValue(SOUTH)).withProperty(SOUTH, state.getValue(NORTH));
            case FRONT_BACK:
                return state.withProperty(EAST, state.getValue(WEST)).withProperty(WEST, state.getValue(EAST));
            default:
                return super.withMirror(state, mirrorIn);
        }
    }

    protected BlockStateContainer createBlockState()
    {
        return new BlockStateContainer(this, new IProperty[] {NORTH, EAST, SOUTH, WEST, POWER});
    }

    /**
     * Get the geometry of the queried face at the given position and state. This is used to decide whether things like
     * buttons are allowed to be placed on the face, or how glass panes connect to the face, among other things.
     * <p>
     * Common values are {@code SOLID}, which is the default, and {@code UNDEFINED}, which represents something that
     * does not fit the other descriptions and will generally cause other things not to connect to the face.
     * 
     * @return an approximation of the form of the given face
     */
    public BlockFaceShape getBlockFaceShape(IBlockAccess worldIn, IBlockState state, BlockPos pos, EnumFacing face)
    {
        return BlockFaceShape.UNDEFINED;
    }

    static enum EnumAttachPosition implements IStringSerializable
    {
        UP("up"),
        SIDE("side"),
        NONE("none");

        private final String name;

        private EnumAttachPosition(String name)
        {
            this.name = name;
        }

        public String toString()
        {
            return this.getName();
        }

        public String getName()
        {
            return this.name;
        }
    }
}

CrashReport:

Spoiler

[16:05:31] [main/INFO] [GradleStart]: Extra: []
[16:05:32] [main/INFO] [GradleStart]: Running with arguments: [--userProperties, {}, --assetsDir, C:/Users/Ryszard/.gradle/caches/minecraft/assets, --assetIndex, 1.12, --accessToken{REDACTED}, --version, 1.12.2, --tweakClass, net.minecraftforge.fml.common.launcher.FMLTweaker, --tweakClass, net.minecraftforge.gradle.tweakers.CoremodTweaker]
[16:05:32] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
[16:05:32] [main/INFO] [LaunchWrapper]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker
[16:05:32] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.CoremodTweaker
[16:05:32] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLTweaker
[16:05:32] [main/INFO] [FML]: Forge Mod Loader version 14.23.5.2768 for Minecraft 1.12.2 loading
[16:05:32] [main/INFO] [FML]: Java is Java HotSpot(TM) 64-Bit Server VM, version 1.8.0_181, running on Windows 10:amd64:10.0, installed at C:\Program Files\Java\jdk1.8.0_181\jre
[16:05:32] [main/ERROR] [FML]: Apache Maven library folder was not in the format expected. Using default libraries directory.
[16:05:32] [main/ERROR] [FML]: Full: C:\Users\Ryszard\.gradle\caches\modules-2\files-2.1\org.apache.maven\maven-artifact\3.5.3\7dc72b6d6d8a6dced3d294ed54c2cc3515ade9f4\maven-artifact-3.5.3.jar
[16:05:32] [main/ERROR] [FML]: Trimmed: c:/users/ryszard/.gradle/caches/modules-2/files-2.1/org.apache.maven/maven-artifact/3.5.3/
[16:05:33] [main/INFO] [FML]: Managed to load a deobfuscated Minecraft name- we are in a deobfuscated environment. Skipping runtime deobfuscation
[16:05:33] [main/INFO] [FML]: Detected deobfuscated environment, loading log configs for colored console logs.
2019-08-02 16:05:37,867 main WARN Disabling terminal, you're running in an unsupported environment.
[16:05:37] [main/INFO] [FML]: Ignoring missing certificate for coremod FMLCorePlugin (net.minecraftforge.fml.relauncher.FMLCorePlugin), we are in deobf and it's a forge core plugin
[16:05:38] [main/INFO] [FML]: Ignoring missing certificate for coremod FMLForgePlugin (net.minecraftforge.classloading.FMLForgePlugin), we are in deobf and it's a forge core plugin
[16:05:38] [main/INFO] [FML]: Searching D:\mod\lanterns1122\run\.\mods for mods
[16:05:38] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.gradle.tweakers.CoremodTweaker
[16:05:38] [main/INFO] [GradleStart]: Injecting location in coremod net.minecraftforge.fml.relauncher.FMLCorePlugin
[16:05:38] [main/INFO] [GradleStart]: Injecting location in coremod net.minecraftforge.classloading.FMLForgePlugin
[16:05:38] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker
[16:05:38] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLDeobfTweaker
[16:05:38] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.gradle.tweakers.AccessTransformerTweaker
[16:05:38] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker
[16:05:38] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker
[16:05:38] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
[16:05:46] [main/ERROR] [FML]: FML appears to be missing any signature data. This is not a good thing
[16:05:46] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
[16:05:46] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLDeobfTweaker
[16:05:47] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.gradle.tweakers.AccessTransformerTweaker
[16:05:47] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.TerminalTweaker
[16:05:47] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.TerminalTweaker
[16:05:47] [main/INFO] [LaunchWrapper]: Launching wrapped minecraft {net.minecraft.client.main.Main}
[16:05:50] [main/INFO] [minecraft/Minecraft]: Setting user: Player282
[16:06:07] [main/WARN] [minecraft/GameSettings]: Skipping bad option: lastServer:
[16:06:07] [main/INFO] [minecraft/Minecraft]: LWJGL Version: 2.9.4
[16:06:11] [main/INFO] [FML]: -- System Details --
Details:
    Minecraft Version: 1.12.2
    Operating System: Windows 10 (amd64) version 10.0
    Java Version: 1.8.0_181, Oracle Corporation
    Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation
    Memory: 831916784 bytes (793 MB) / 1038876672 bytes (990 MB) up to 2112618496 bytes (2014 MB)
    JVM Flags: 4 total; -Xincgc -Xmx1024M -Xms1024M -Xmx2048m
    IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0
    FML: 
    Loaded coremods (and transformers): 
    GL info: ' Vendor: 'Intel' Version: '4.0.0 - Build 10.18.10.4276' Renderer: 'Intel(R) HD Graphics'
[16:06:11] [main/INFO] [FML]: MinecraftForge v14.23.5.2768 Initialized
[16:06:11] [main/INFO] [FML]: Starts to replace vanilla recipe ingredients with ore ingredients.
[16:06:12] [main/INFO] [FML]: Replaced 1036 ore ingredients
[16:06:14] [main/INFO] [FML]: Searching D:\mod\lanterns1122\run\.\mods for mods
[16:06:15] [Thread-3/INFO] [FML]: Using sync timing. 200 frames of Display.update took 617442171 nanos
[16:06:23] [main/INFO] [FML]: Forge Mod Loader has identified 5 mods to load
[16:06:24] [main/INFO] [FML]: Attempting connection with missing mods [minecraft, mcp, FML, forge, modtut] at CLIENT
[16:06:24] [main/INFO] [FML]: Attempting connection with missing mods [minecraft, mcp, FML, forge, modtut] at SERVER
[16:06:29] [main/INFO] [minecraft/SimpleReloadableResourceManager]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:Mod Tutorials
[16:06:31] [main/INFO] [FML]: Processing ObjectHolder annotations
[16:06:31] [main/INFO] [FML]: Found 1174 ObjectHolder annotations
[16:06:31] [main/INFO] [FML]: Identifying ItemStackHolder annotations
[16:06:31] [main/INFO] [FML]: Found 0 ItemStackHolder annotations
[16:06:32] [main/INFO] [FML]: Configured a dormant chunk cache size of 0
[16:06:32] [main/INFO] [FML]: OBJLoader: Domain modtut has been added.
[16:06:32] [Forge Version Check/INFO] [forge.VersionCheck]: [forge] Starting version check at http://files.minecraftforge.net/maven/net/minecraftforge/forge/promotions_slim.json
[16:06:33] [Forge Version Check/INFO] [forge.VersionCheck]: [forge] Found status: UP_TO_DATE Target: null
[16:06:34] [main/ERROR] [FML]: Exception caught during firing event net.minecraftforge.event.RegistryEvent$Register@4c697c25:
java.lang.IllegalArgumentException: Cannot set property PropertyEnum{name=up, clazz=class com.lanterns.blocks.SlupGora$EnumAttachPosition, values=[up, side, none]} as it does not exist in BlockStateContainer{block=null, properties=[east, north, power, south, west]}
    at net.minecraft.block.state.BlockStateContainer$StateImplementation.withProperty(BlockStateContainer.java:221) ~[BlockStateContainer$StateImplementation.class:?]
    at com.lanterns.blocks.SlupGora.<init>(SlupGora.java:60) ~[SlupGora.class:?]
    at com.lanterns.proxy.CommonProxy.registerBlocks(CommonProxy.java:42) ~[CommonProxy.class:?]
    at net.minecraftforge.fml.common.eventhandler.ASMEventHandler_6_CommonProxy_registerBlocks_Register.invoke(.dynamic) ~[?:?]
    at net.minecraftforge.fml.common.eventhandler.ASMEventHandler.invoke(ASMEventHandler.java:90) ~[ASMEventHandler.class:?]
    at net.minecraftforge.fml.common.eventhandler.EventBus$1.invoke(EventBus.java:144) ~[EventBus$1.class:?]
    at net.minecraftforge.fml.common.eventhandler.EventBus.post(EventBus.java:182) [EventBus.class:?]
    at net.minecraftforge.registries.GameData.fireRegistryEvents(GameData.java:777) [GameData.class:?]
    at net.minecraftforge.fml.common.Loader.preinitializeMods(Loader.java:628) [Loader.class:?]
    at net.minecraftforge.fml.client.FMLClientHandler.beginMinecraftLoading(FMLClientHandler.java:252) [FMLClientHandler.class:?]
    at net.minecraft.client.Minecraft.init(Minecraft.java:513) [Minecraft.class:?]
    at net.minecraft.client.Minecraft.run(Minecraft.java:421) [Minecraft.class:?]
    at net.minecraft.client.main.Main.main(Main.java:118) [Main.class:?]
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_181]
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_181]
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_181]
    at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_181]
    at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.12.jar:?]
    at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.12.jar:?]
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_181]
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_181]
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_181]
    at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_181]
    at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97) [start/:?]
    at GradleStart.main(GradleStart.java:25) [start/:?]
[16:06:34] [main/ERROR] [FML]: Index: 3 Listeners:
[16:06:34] [main/ERROR] [FML]: 0: NORMAL
[16:06:34] [main/ERROR] [FML]: 1: net.minecraftforge.fml.common.eventhandler.EventBus$1@72e89ce2
[16:06:34] [main/ERROR] [FML]: 2: net.minecraftforge.fml.common.eventhandler.EventBus$1@1bb6b0f3
[16:06:34] [main/ERROR] [FML]: 3: net.minecraftforge.fml.common.eventhandler.EventBus$1@2b4b3918
[16:06:34] [main/INFO] [STDOUT]: [net.minecraft.init.Bootstrap:printToSYSOUT:629]: ---- Minecraft Crash Report ----
// I'm sorry, Dave.

Time: 8/2/19 4:06 PM
Description: Initializing game

java.lang.IllegalArgumentException: Cannot set property PropertyEnum{name=up, clazz=class com.lanterns.blocks.SlupGora$EnumAttachPosition, values=[up, side, none]} as it does not exist in BlockStateContainer{block=null, properties=[east, north, power, south, west]}
    at net.minecraft.block.state.BlockStateContainer$StateImplementation.withProperty(BlockStateContainer.java:221)
    atcom.lanterns.blocks.SlupGora.<init>(SlupGora.java:60)
    at com.lanterns.proxy.CommonProxy.registerBlocks(CommonProxy.java:42)
    at net.minecraftforge.fml.common.eventhandler.ASMEventHandler_6_CommonProxy_registerBlocks_Register.invoke(.dynamic)
    at net.minecraftforge.fml.common.eventhandler.ASMEventHandler.invoke(ASMEventHandler.java:90)
    at net.minecraftforge.fml.common.eventhandler.EventBus$1.invoke(EventBus.java:144)
    at net.minecraftforge.fml.common.eventhandler.EventBus.post(EventBus.java:182)
    at net.minecraftforge.registries.GameData.fireRegistryEvents(GameData.java:777)
    at net.minecraftforge.fml.common.Loader.preinitializeMods(Loader.java:628)
    at net.minecraftforge.fml.client.FMLClientHandler.beginMinecraftLoading(FMLClientHandler.java:252)
    at net.minecraft.client.Minecraft.init(Minecraft.java:513)
    at net.minecraft.client.Minecraft.run(Minecraft.java:421)
    at net.minecraft.client.main.Main.main(Main.java:118)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    at java.lang.reflect.Method.invoke(Method.java:498)
    at net.minecraft.launchwrapper.Launch.launch(Launch.java:135)
    at net.minecraft.launchwrapper.Launch.main(Launch.java:28)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    at java.lang.reflect.Method.invoke(Method.java:498)
    at net.minecraftforge.gradle.GradleStartCommon.launch(GradleStartCommon.java:97)
    at GradleStart.main(GradleStart.java:25)


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

-- Head --
Thread: Client thread
Stacktrace:
    at net.minecraft.block.state.BlockStateContainer$StateImplementation.withProperty(BlockStateContainer.java:221)
    at com.lanterns.blocks.SlupGora.<init>(SlupGora.java:60)
    at com.lanterns.proxy.CommonProxy.registerBlocks(CommonProxy.java:42)
    at net.minecraftforge.fml.common.eventhandler.ASMEventHandler_6_CommonProxy_registerBlocks_Register.invoke(.dynamic)
    at net.minecraftforge.fml.common.eventhandler.ASMEventHandler.invoke(ASMEventHandler.java:90)
    at net.minecraftforge.fml.common.eventhandler.EventBus$1.invoke(EventBus.java:144)
    at net.minecraftforge.fml.common.eventhandler.EventBus.post(EventBus.java:182)
    at net.minecraftforge.registries.GameData.fireRegistryEvents(GameData.java:777)
    at net.minecraftforge.fml.common.Loader.preinitializeMods(Loader.java:628)
    at net.minecraftforge.fml.client.FMLClientHandler.beginMinecraftLoading(FMLClientHandler.java:252)
    at net.minecraft.client.Minecraft.init(Minecraft.java:513)

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

-- System Details --
Details:
    Minecraft Version: 1.12.2
    Operating System: Windows 10 (amd64) version 10.0
    Java Version: 1.8.0_181, Oracle Corporation
    Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation
    Memory: 909443472 bytes (867 MB) / 1038876672 bytes (990 MB) up to 2112618496 bytes (2014 MB)
    JVM Flags: 4 total; -Xincgc -Xmx1024M -Xms1024M -Xmx2048m
    IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0
    FML: MCP 9.42 Powered by Forge 14.23.5.2768 5 mods loaded, 5 mods active
    States: 'U' = Unloaded 'L' = Loaded 'C' = Constructed 'H' = Pre-initialized 'I' = Initialized 'J' = Post-initialized 'A' = Available 'D' = Disabled 'E' = Errored

    | State | ID        | Version      | Source                           | Signature |
    |:----- |:--------- |:------------ |:-------------------------------- |:--------- |
    | UCH   | minecraft | 1.12.2       | minecraft.jar                    | None      |
    | UCH   | mcp       | 9.42         | minecraft.jar                    | None      |
    | UCH   | FML       | 8.0.99.99    | forgeSrc-1.12.2-14.23.5.2768.jar | None      |
    | UCH   | forge     | 14.23.5.2768 | forgeSrc-1.12.2-14.23.5.2768.jar | None      |
    | UCH   | modtut    | 0.0.1        | bin                              | None      |

    Loaded coremods (and transformers): 
    GL info: ' Vendor: 'Intel' Version: '4.0.0 - Build 10.18.10.4276' Renderer: 'Intel(R) HD Graphics'
    Launched Version: 1.12.2
    LWJGL: 2.9.4
    OpenGL: Intel(R) HD Graphics GL version 4.0.0 - Build 10.18.10.4276, Intel
    GL Caps: Using GL 1.3 multitexturing.
Using GL 1.3 texture combiners.
Using framebuffer objects because OpenGL 3.0 is supported and separate blending is supported.
Shaders are available because OpenGL 2.1 is supported.
VBOs are available because OpenGL 1.5 is supported.

    Using VBOs: Yes
    Is Modded: Definitely; Client brand changed to 'fml,forge'
    Type: Client (map_client.txt)
    Resource Packs: 
    Current Language: English (US)
    Profiler Position: N/A (disabled)
    CPU: 4x Intel(R) Pentium(R) CPU N3540 @ 2.16GHz
[16:06:34] [main/INFO] [STDOUT]: [net.minecraft.init.Bootstrap:printToSYSOUT:629]: #@!@# Game crashed! Crash report saved to: #@!@# D:\mod\lanterns1122\run\.\crash-reports\crash-2019-08-02_16.06.34-client.txt
Picked up _JAVA_OPTIONS: -Xmx2048m
Java HotSpot(TM) 64-Bit Server VM warning: Using incremental CMS is deprecated and will likely be removed in a future release
 

 

Maybe You will know how to solve it.

Edited by MrPablo2000
Link to comment
Share on other sites

21 minutes ago, MrPablo2000 said:

Cannot set property PropertyEnum{name=up, clazz=class com.lanterns.blocks.SlupGora$EnumAttachPosition, values=[up, side, none]} as it does not exist in BlockStateContainer{block=null, properties=[east, north, power, south, west]}

 

Error is pretty self explanatory.

Edited by Draco18s

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

I change this, it isn't crashing now, but it still doesn't provide energy to up...

Spoiler

   protected BlockStateContainer createBlockState()
    {
        return new BlockStateContainer(this, new IProperty[] {NORTH, EAST, SOUTH, WEST, UP, DOWN, POWER});
    }

 

Link to comment
Share on other sites

1 hour ago, MrPablo2000 said:

I change this, it isn't crashing now, but it still doesn't provide energy to up...

Doesn't provide energy up? Do you mean that it doesn't transfer energy up or that it isn't connecting up?

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

In the future I will add one model for all states - this is the electrical post element. Graphic connection doesn't interesting me - I only want to make this block connectable to up/down in "java" mean, to make it possible to provide power to up.

 

(I don't know how to describe it..)

Link to comment
Share on other sites

50 minutes ago, MrPablo2000 said:

to make it possible to provide power to up.

Provide your TileEntity that handles all the energy.

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

Join the conversation

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

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

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

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

×   Your previous content has been restored.   Clear editor

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

Announcements



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • Here is a tutorial; this is what I used. 1.20 Minecraft Forge Modding Tutorial - Packets
    • Corrected item registration code: (for the ModItems class) public static final RegistryObject<Item> LEMON_JUICE_BOTTLE = ITEMS.register("lemon_juice_bottle", () -> new HoneyBottleItem(new Item.Properties().stacksTo(1) .food((new FoodProperties.Builder()).nutrition(3).saturationMod(0.25F) .effect(() -> new MobEffectInstance(MobEffects.DAMAGE_RESISTANCE, 1500), 0.5f).build())));
    • Apologies for the late reply. You'll need to register the item in ModItems; if you're following those tutorials, that's the only place you should ever register items. Otherwise, the mod will fail to register them properly and you'll get all sorts of interesting errors. Looking back at the code snipped I posted, I think that actually has some errors. I'm adding a lemon juice bottle to my mod just to ensure that it works correctly, and I will reply when I have solved the problems.
    • I might have an idea why your original method was causing so much trouble. See this while loop? You're only incrementing the number of blocks you've corrupted if you find one that you can corrupt. What happens if you can't find any? The while loop will run forever (a long time). This could happen if, for instance, the feature generates inside a vein of blocks that aren't marked as STONE_ABERRANTABLE. There are two alternate strategies I'd recommend to fix this.  First, you could simply increment numBlockCorrupted regardless of whether you've actually corrupted the block. This is the simplest and quickest way, and it should ensure that the loop runs no more than numBlocksToCorrupt times.  Alternatively, you could add a "kill switch" that keeps track of how many times the loop runs, and then ends it after a certain limit of your choosing. That could look something like this:  // Keeps track of how many blocks have been checked so far. int numBlocksChecked = 0; // Check up to twice as many blocks as you actually want to corrupt. // This is a good compromise between speed and actually getting the number of blocks // that you want to corrupt. int numBlocksToCheck = numBlocksToCorrupt * 2; // Modified the while loop condition to end after a certain number of blocks are checked. while (numBlocksCorrupted < numBlocksToCorrupt && numBlocksChecked < numBlocksToCheck) {                 // Generate a random position within the area, using the offset origin                 BlockPos randomPos = offsetOrigin.offset(                         ctx.random().nextInt(2 * areaSizeX + 1) - areaSizeX, // between -areaSize and areaSize                         ctx.random().nextInt(2 * areaSizeY + 1) - areaSizeY,                         ctx.random().nextInt(2 * areaSizeZ + 1) - areaSizeZ                 );                 // If the block at the random position is in the IS_ORE_ABERRANTABLE tag, replace it                 if (world.getBlockState(randomPos).is(ModBlockTags.STONE_ABERRANTABLE)) {                     world.setBlock(randomPos, surroundingBlockState, 2);                     numBlocksCorrupted++;                 } // Increment the number of blocks that you've checked. numBlocksChecked++;             } Let me know if you're still running into lag problems or are confused by my explanation.
    • So I have been trying to open modded 1.12.2 minecraft but it crashes when it opens and it says Exit Code-1 Can somebody please help me. Here is the crash report:   --- Minecraft Crash Report ---- WARNING: coremods are present:   IELoadingPlugin (ImmersiveEngineering-core-0.12-98.jar)   LibrarianLib Plugin (librarianlib-1.12.2-4.22.jar)   MixinLoader (viaforge-mc1122-3.6.0.jar)   McLib core mod (mclib-2.4.2-1.12.2.jar)   EFFLL (LiteLoader ObjectHolder fix) (ExtraFoamForLiteLoader-1.0.0.jar)   MekanismCoremod (Mekanism-1.12.2-9.8.3.390.jar)   LogisticsPipesCoreLoader (logisticspipes-0.10.3.114.jar)   AppleCore (AppleCore-mc1.12.2-3.4.0.jar)   BiomeTweakerCore (BiomeTweakerCore-1.12.2-1.0.39.jar)   ObfuscatePlugin (obfuscate-0.4.2-1.12.2.jar)   Regeneration (Regeneration-3.0.3.jar)   UniDictCoreMod (UniDict-1.12.2-3.0.10.jar)   ReflectorsPlugin (EnderStorage-1.12.2-2.5.0.jar)   EntityCullingEarlyLoader (entityculling-1.12.2-1.6.3.jar)   Controllable (controllable-0.11.2-1.12.2.jar)   craftfallessentials (CraftfallEssentials-1.12.2-1.2.6.jar)   SecurityCraftLoadingPlugin ([1.12.2] SecurityCraft v1.9.9.jar)   LoadingPlugin (ResourceLoader-MC1.12.1-1.5.3.jar)   MalisisCorePlugin (malisiscore-1.12.2-6.5.1.jar)   pymtech (PymTech-1.12.2-1.0.2.jar)   IvToolkit (IvToolkit-1.3.3-1.12.jar)   JeiUtilitiesLoadingPlugin (JEI-Utilities-1.12.2-0.2.12.jar)   LoadingPlugin (RandomThings-MC1.12.2-4.2.7.4.jar)   SSLoadingPlugin (SereneSeasons-1.12.2-1.2.18-universal.jar)   Do not report to Forge! (If you haven't disabled the FoamFix coremod, try disabling it in the config! Note that this bit of text will still appear.) (foamfix-0.10.15-1.12.2.jar)   FTBUltimineASM (ftb-ultimine-1202.3.5.jar)   ForgelinPlugin (Forgelin-1.8.4.jar)   Backpacked (backpacked-1.4.3-1.12.2.jar)   ForgelinPlugin (Forgelin-Continuous-1.9.23.0.jar)   HCASM (HammerLib-1.12.2-12.2.50.jar)   LucraftCoreExtendedID (LucraftCoreIDExtender.jar)   NWRTweak (redstonepaste-mc1.12-1.7.5.jar)   CTMCorePlugin (CTM-MC1.12.2-1.0.2.31.jar)   LucraftCoreCoreMod (LucraftCore-1.12.2-2.4.17.jar)   EnderCorePlugin (EnderCore-1.12.2-0.5.78-core.jar)   TransformerLoader (OpenComputers-MC1.12.2-1.8.5+179e1c3.jar)   llibrary (llibrary-core-1.0.11-1.12.2.jar)   ShetiPhian-ASM (ShetiPhian-ASM-1.12.0.jar)   PhosphorFMLLoadingPlugin (phosphor-1.12.2-0.2.6+build50.jar)   MekanismTweaks (mekanismtweaks-1.1.jar)   ShutdownPatcher (mcef-1.12.2-1.11-coremod.jar)   TNTUtilities Core (tnt_utilities-mc1.12-1.2.3.jar) Contact their authors BEFORE contacting forge // Shall we play a game? Time: 5/9/24 7:21 PM Description: Initializing game java.lang.NullPointerException: Initializing game     at net.minecraft.client.gui.GuiMainMenu.handler$zca000$hookViaForgeButton(GuiMainMenu.java:686)     at net.minecraft.client.gui.GuiMainMenu.func_73866_w_(GuiMainMenu.java:218)     at net.minecraft.client.gui.GuiScreen.func_146280_a(GuiScreen.java:478)     at net.minecraft.client.Minecraft.func_147108_a(Minecraft.java:1018)     at net.minecraft.client.Minecraft.func_71384_a(Minecraft.java:545)     at net.minecraft.client.Minecraft.func_99999_d(Minecraft.java:378)     at net.minecraft.client.main.Main.main(SourceFile:123)     at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)     at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)     at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)     at java.lang.reflect.Method.invoke(Method.java:497)     at net.minecraft.launchwrapper.Launch.launch(Launch.java:135)     at net.minecraft.launchwrapper.Launch.main(Launch.java:28)     at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)     at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)     at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)     at java.lang.reflect.Method.invoke(Method.java:497)     at gg.essential.loader.stage2.relaunch.Relaunch.relaunch(Relaunch.java:124)     at gg.essential.loader.stage2.EssentialLoader.preloadEssential(EssentialLoader.java:328)     at gg.essential.loader.stage2.EssentialLoader.loadPlatform(EssentialLoader.java:116)     at gg.essential.loader.stage2.EssentialLoaderBase.load(EssentialLoaderBase.java:148)     at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)     at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)     at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)     at java.lang.reflect.Method.invoke(Method.java:497)     at gg.essential.loader.stage1.EssentialLoaderBase.load(EssentialLoaderBase.java:293)     at gg.essential.loader.stage1.EssentialSetupTweaker.<init>(EssentialSetupTweaker.java:44)     at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)     at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)     at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)     at java.lang.reflect.Constructor.newInstance(Constructor.java:422)     at gg.essential.loader.stage0.EssentialSetupTweaker.loadStage1(EssentialSetupTweaker.java:53)     at gg.essential.loader.stage0.EssentialSetupTweaker.<init>(EssentialSetupTweaker.java:26)     at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)     at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)     at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)     at java.lang.reflect.Constructor.newInstance(Constructor.java:422)     at java.lang.Class.newInstance(Class.java:442)     at net.minecraft.launchwrapper.Launch.launch(Launch.java:98)     at net.minecraft.launchwrapper.Launch.main(Launch.java:28) A detailed walkthrough of the error, its code path and all known details is as follows: --------------------------------------------------------------------------------------- -- Head -- Thread: Client thread Stacktrace:     at net.minecraft.client.gui.GuiMainMenu.handler$zca000$hookViaForgeButton(GuiMainMenu.java:686)     at net.minecraft.client.gui.GuiMainMenu.func_73866_w_(GuiMainMenu.java:218)     at net.minecraft.client.gui.GuiScreen.func_146280_a(GuiScreen.java:478)     at net.minecraft.client.Minecraft.func_147108_a(Minecraft.java:1018)     at net.minecraft.client.Minecraft.func_71384_a(Minecraft.java:545) -- Initialization -- Details: Stacktrace:     at net.minecraft.client.Minecraft.func_99999_d(Minecraft.java:378)     at net.minecraft.client.main.Main.main(SourceFile:123)     at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)     at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)     at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)     at java.lang.reflect.Method.invoke(Method.java:497)     at net.minecraft.launchwrapper.Launch.launch(Launch.java:135)     at net.minecraft.launchwrapper.Launch.main(Launch.java:28)     at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)     at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)     at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)     at java.lang.reflect.Method.invoke(Method.java:497)     at gg.essential.loader.stage2.relaunch.Relaunch.relaunch(Relaunch.java:124)     at gg.essential.loader.stage2.EssentialLoader.preloadEssential(EssentialLoader.java:328)     at gg.essential.loader.stage2.EssentialLoader.loadPlatform(EssentialLoader.java:116)     at gg.essential.loader.stage2.EssentialLoaderBase.load(EssentialLoaderBase.java:148)     at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)     at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)     at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)     at java.lang.reflect.Method.invoke(Method.java:497)     at gg.essential.loader.stage1.EssentialLoaderBase.load(EssentialLoaderBase.java:293)     at gg.essential.loader.stage1.EssentialSetupTweaker.<init>(EssentialSetupTweaker.java:44)     at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)     at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)     at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)     at java.lang.reflect.Constructor.newInstance(Constructor.java:422)     at gg.essential.loader.stage0.EssentialSetupTweaker.loadStage1(EssentialSetupTweaker.java:53)     at gg.essential.loader.stage0.EssentialSetupTweaker.<init>(EssentialSetupTweaker.java:26)     at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)     at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)     at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)     at java.lang.reflect.Constructor.newInstance(Constructor.java:422)     at java.lang.Class.newInstance(Class.java:442)     at net.minecraft.launchwrapper.Launch.launch(Launch.java:98)     at net.minecraft.launchwrapper.Launch.main(Launch.java:28) -- System Details -- Details:     Minecraft Version: 1.12.2     Operating System: Windows 10 (amd64) version 10.0     Java Version: 1.8.0_51, Oracle Corporation     Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation     Memory: 912338720 bytes (870 MB) / 3868721152 bytes (3689 MB) up to 11542724608 bytes (11008 MB)     JVM Flags: 3 total; -XX:HeapDumpPath=MojangTricksIntelDriversForPerformance_javaw.exe_minecraft.exe.heapdump -Xmx12384m -Xms256m     IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0     FML: MCP 9.42 Powered by Forge 14.23.5.2860 380 mods loaded, 0 mods active     States: 'U' = Unloaded 'L' = Loaded 'C' = Constructed 'H' = Pre-initialized 'I' = Initialized 'J' = Post-initialized 'A' = Available 'D' = Disabled 'E' = Errored     | State | ID                                | Version                         | Source                                             | Signature                                |     |:----- |:--------------------------------- |:------------------------------- |:-------------------------------------------------- |:---------------------------------------- |     |       | minecraft                         | 1.12.2                          | minecraft.jar                                      | None                                     |     |       | mcp                               | 9.42                            | minecraft.jar                                      | None                                     |     |       | FML                               | 8.0.99.99                       | forge-1.12.2-14.23.5.2860.jar                      | e3c3d50c7c986df74c645c0ac54639741c90a557 |     |       | forge                             | 14.23.5.2860                    | forge-1.12.2-14.23.5.2860.jar                      | e3c3d50c7c986df74c645c0ac54639741c90a557 |     |       | ivtoolkit                         | 1.3.3-1.12                      | minecraft.jar                                      | None                                     |     |       | controllable                      | 0.11.2                          | controllable-0.11.2-1.12.2.jar                     | None                                     |     |       | mclib_core                        | 2.4.2                           | minecraft.jar                                      | None                                     |     |       | backpacked                        | 1.4.2                           | backpacked-1.4.3-1.12.2.jar                        | None                                     |     |       | biometweakercore                  | 1.0.39                          | minecraft.jar                                      | None                                     |     |       | foamfixcore                       | 7.7.4                           | minecraft.jar                                      | None                                     |     |       | obfuscate                         | 0.4.2                           | minecraft.jar                                      | None                                     |     |       | opencomputers|core                | 1.8.5                           | minecraft.jar                                      | None                                     |     |       | tnt_utilities_core                | 1.2.3                           | minecraft.jar                                      | None                                     |     |       | essential                         | 1.0.0                           | Essential (forge_1.12.2).processed.jar             | None                                     |     |       | skinlayers3d                      | 1.2.0                           | 3dSkinLayers-forge-mc1.12.2-1.2.0.jar              | None                                     |     |       | servercountryflags                | 1.8.1                           | servercountryflags-1.8.1-1.12.2-FORGE.jar          | None                                     |     |       | securitycraft                     | v1.9.9                          | [1.12.2] SecurityCraft v1.9.9.jar                  | None                                     |     |       | acheads                           | 2.1.1                           | AbyssalCraft Heads-1.12.2-2.1.1.jar                | None                                     |     |       | acintegration                     | 1.11.3                          | AbyssalCraft Integration-1.12.2-1.11.3.jar         | None                                     |     |       | abyssalcraft                      | 1.10.5                          | AbyssalCraft-1.12.2-1.10.5.jar                     | None                                     |     |       | actuallyadditions                 | 1.12.2-r152                     | ActuallyAdditions-1.12.2-r152.jar                  | None                                     |     |       | actuallycomputers                 | @Version@                       | actuallycomputers-2.2.0.jar                        | None                                     |     |       | additionalpipes                   | 6.0.0.8                         | additionalpipes-6.0.0.8.jar                        | None                                     |     |       | advancementbook                   | 1.0.3                           | Advancement_Book-1.12-1.0.3.jar                    | None                                     |     |       | aether_legacy_addon               | 1.12.2-v1.3.0                   | Aether Continuation v1.3.0.jar                     | None                                     |     |       | aether_legacy                     | 1.5.3.2                         | aether-1.12.2-v1.5.4.0.jar                         | None                                     |     |       | aether                            | 0.3.0                           | aether_ii-1.12.2-0.3.0+build411-universal.jar      | None                                     |     |       | flyringbaublemod                  | 0.3.1_1.12-d4e654e              | angelRingToBauble-1.12-0.3.1.50+d4e654e.jar        | None                                     |     |       | applecore                         | 3.4.0                           | AppleCore-mc1.12.2-3.4.0.jar                       | None                                     |     |       | appleskin                         | 1.0.14                          | AppleSkin-mc1.12-1.0.14.jar                        | None                                     |     |       | appliedenergistics2               | rv6-stable-7                    | appliedenergistics2-rv6-stable-7.jar               | None                                     |     |       | ate                               | 1.0.0                           | ATE-1.5.jar                                        | None                                     |     |       | autopackager                      | 1.12                            | autopackager-1.12.jar                              | None                                     |     |       | autoreglib                        | 1.3-32                          | AutoRegLib-1.3-32.jar                              | None                                     |     |       | avaritia                          | 3.3.0                           | Avaritia-1.12.2-3.3.0.37-universal.jar             | None                                     |     |       | avaritiaddons                     | 1.12.2-1.9                      | Avaritiaddons-1.12.2-1.9.jar                       | None                                     |     |       | avaritiaio                        | @VERSION@                       | avaritiaio-1.4.jar                                 | None                                     |     |       | avaritiarecipemaker               | 1.0.0                           | avaritiarecipemaker-1.0.0.jar                      | None                                     |     |       | avaritiatweaks                    | 1.12.2-1.3.1                    | AvaritiaTweaks-1.12.2-1.3.1.jar                    | None                                     |     |       | avatarmod                         | 1.6.2                           | avatarmod-1.6.2.jar                                | None                                     |     |       | gorecore                          | 1.12.2-0.4.5                    | avatarmod-1.6.2.jar                                | None                                     |     |       | base                              | 3.14.0                          | base-1.12.2-3.14.0.jar                             | None                                     |     |       | baubles                           | 1.5.2                           | Baubles-1.12-1.5.2.jar                             | None                                     |     |       | bdlib                             | 1.14.4.1                        | bdlib-1.14.4.1-mc1.12.2.jar                        | None                                     |     |       | bedbugs                           | @VERSION@                       | BedBugs-1.12-1.0.1.jar                             | None                                     |     |       | betterbuilderswands               | 0.11.1                          | BetterBuildersWands-1.12-0.11.1.245+69d0d70.jar    | None                                     |     |       | betterquesting                    | 3.5.329                         | BetterQuesting-3.5.329.jar                         | None                                     |     |       | betterthanbunnies                 | 1.12.1-1.1.0                    | BetterThanBunnies-1.12.1-1.1.0.jar                 | None                                     |     |       | bibliocraft                       | 2.4.6                           | BiblioCraft[v2.4.6][MC1.12.2].jar                  | None                                     |     |       | bibliotheca                       | 1.3.6-1.12.2                    | bibliotheca-1.3.6-1.12.2.jar                       | None                                     |     |       | balancedorespawnores              | 1.0.0                           | Bifröst(V9).jar                                    | None                                     |     |       | biolib                            | 1.1.3                           | biolib-1.1.3.jar                                   | None                                     |     |       | biometweaker                      | 3.2.369                         | BiomeTweaker-1.12.2-3.2.369.jar                    | None                                     |     |       | blockdrops                        | 1.4.0                           | blockdrops-1.12.2-1.4.0.jar                        | None                                     |     |       | bloodmagic                        | 1.12.2-2.4.3-105                | BloodMagic-1.12.2-2.4.3-105.jar                    | None                                     |     |       | bookshelf                         | 2.3.590                         | Bookshelf-1.12.2-2.3.590.jar                       | None                                     |     |       | bookworm                          | 1.12.2-2.5.2.1                  | bookworm-1.12.2-2.5.2.1.jar                        | None                                     |     |       | botania                           | r1.10-364                       | Botania r1.10-364.4.jar                            | None                                     |     |       | brandonscore                      | 2.4.20                          | BrandonsCore-1.12.2-2.4.20.162-universal.jar       | None                                     |     |       | buildcraftcompat                  | 7.99.24.8                       | buildcraft-all-7.99.24.8.jar                       | None                                     |     |       | buildcraftbuilders                | 7.99.24.8                       | buildcraft-all-7.99.24.8.jar                       | None                                     |     |       | buildcraftcore                    | 7.99.24.8                       | buildcraft-all-7.99.24.8.jar                       | None                                     |     |       | buildcraftenergy                  | 7.99.24.8                       | buildcraft-all-7.99.24.8.jar                       | None                                     |     |       | buildcraftfactory                 | 7.99.24.8                       | buildcraft-all-7.99.24.8.jar                       | None                                     |     |       | buildcraftlib                     | 7.99.24.8                       | buildcraft-all-7.99.24.8.jar                       | None                                     |     |       | buildcraftrobotics                | 7.99.24.8                       | buildcraft-all-7.99.24.8.jar                       | None                                     |     |       | buildcraftsilicon                 | 7.99.24.8                       | buildcraft-all-7.99.24.8.jar                       | None                                     |     |       | buildcrafttransport               | 7.99.24.8                       | buildcraft-all-7.99.24.8.jar                       | None                                     |     |       | btg                               | 1.1.1                           | By The Gods-1.12.2-1.1.1.jar                       | None                                     |     |       | camera                            | 1.0.10                          | camera-1.0.10.jar                                  | None                                     |     |       | cctweaked                         | 1.89.2                          | cc-tweaked-1.12.2-1.89.2.jar                       | None                                     |     |       | computercraft                     | 1.89.2                          | cc-tweaked-1.12.2-1.89.2.jar                       | None                                     |     |       | ceramics                          | 1.12-1.3.7b                     | Ceramics-1.12-1.3.7b.jar                           | None                                     |     |       | chameleon                         | 1.12-4.1.3                      | Chameleon-1.12-4.1.3.jar                           | None                                     |     |       | chameleon_morph                   | 1.2.2                           | chameleon-1.2.2.jar                                | None                                     |     |       | chancecubes                       | 1.12.2-5.0.2.385                | ChanceCubes-1.12.2-5.0.2.385.jar                   | None                                     |     |       | charset                           | 0.5.6.6                         | Charset-Lib-0.5.6.6.jar                            | None                                     |     |       | chesttransporter                  | 2.8.8                           | ChestTransporter-1.12.2-2.8.8.jar                  | None                                     |     |       | chickenchunks                     | 2.4.2.74                        | ChickenChunks-1.12.2-2.4.2.74-universal.jar        | None                                     |     |       | chickens                          | 6.0.4                           | chickens-6.0.4.jar                                 | None                                     |     |       | chisel                            | MC1.12.2-1.0.2.45               | Chisel-MC1.12.2-1.0.2.45.jar                       | None                                     |     |       | chiseled_me                       | 1.12-3.0.0.0-git-e5ce416        | chiseled-me-1.12-3.0.0.0-git-e5ce416.jar           | None                                     |     |       | chiseledadditions                 | @Version@                       | ChiseledAdditions-1.0.0.jar                        | None                                     |     |       | chiselsandbits                    | 14.33                           | chiselsandbits-14.33.jar                           | None                                     |     |       | cjcm                              | 1.0                             | cjcm-1.0.jar                                       | None                                     |     |       | clienttweaks                      | 3.1.11                          | ClientTweaks_1.12.2-3.1.11.jar                     | None                                     |     |       | clipboard                         | @VERSION@                       | Clipboard-1.12-1.3.0.jar                           | None                                     |     |       | clumps                            | 3.1.2                           | Clumps-3.1.2.jar                                   | None                                     |     |       | codechickenlib                    | 3.2.3.358                       | CodeChickenLib-1.12.2-3.2.3.358-universal.jar      | None                                     |     |       | colossalchests                    | 1.7.3                           | ColossalChests-1.12.2-1.7.3.jar                    | None                                     |     |       | comforts                          | 1.4.1.3                         | comforts-1.12.2-1.4.1.3.jar                        | None                                     |     |       | commoncapabilities                | 2.4.8                           | CommonCapabilities-1.12.2-2.4.8.jar                | None                                     |     |       | controlling                       | 3.0.10                          | Controlling-3.0.12.3.jar                           | None                                     |     |       | cookingforblockheads              | 6.5.0                           | CookingForBlockheads_1.12.2-6.5.0.jar              | None                                     |     |       | craftfallessentials               | 1.2.6                           | CraftfallEssentials-1.12.2-1.2.6.jar               | None                                     |     |       | ctgui                             | 1.0.0                           | CraftTweaker2-1.12-4.1.20.698.jar                  | None                                     |     |       | crafttweaker                      | 4.1.20                          | CraftTweaker2-1.12-4.1.20.698.jar                  | None                                     |     |       | crafttweakerjei                   | 2.0.3                           | CraftTweaker2-1.12-4.1.20.698.jar                  | None                                     |     |       | ctm                               | MC1.12.2-1.0.2.31               | CTM-MC1.12.2-1.0.2.31.jar                          | None                                     |     |       | cucumber                          | 1.1.3                           | Cucumber-1.12.2-1.1.3.jar                          | None                                     |     |       | custommainmenu                    | 2.0.9.1                         | CustomMainMenu-MC1.12.2-2.0.9.1.jar                | None                                     |     |       | cyclopscore                       | 1.6.7                           | CyclopsCore-1.12.2-1.6.7.jar                       | None                                     |     |       | darknesslib                       | 1.1.2                           | DarknessLib-1.12.2-1.1.2.jar                       | None                                     |     |       | darkutils                         | 1.8.230                         | DarkUtils-1.12.2-1.8.230.jar                       | None                                     |     |       | props                             | 2.6.3.7                         | Decocraft-2.6.3.7_1.12.2.jar                       | None                                     |     |       | deepresonance                     | 1.8.0                           | deepresonance-1.12-1.8.0.jar                       | None                                     |     |       | defaultoptions                    | 9.2.8                           | DefaultOptions_1.12.2-9.2.8.jar                    | None                                     |     |       | draconicadditions                 | 1.17.0                          | Draconic-Additions-1.12.2-1.17.0.45-universal.jar  | None                                     |     |       | draconicevolution                 | 2.3.28                          | Draconic-Evolution-1.12.2-2.3.28.354-universal.jar | None                                     |     |       | draconicalchemy                   | 0.2                             | draconicalchemy-0.2.jar                            | None                                     |     |       | maia_draconic_edition             | 1.0.0                           | DraconicEvolution_MAIA_1.0.0.jar                   | None                                     |     |       | eleccoreloader                    | 1.9.453                         | ElecCore-1.12.2-1.9.453.jar                        | None                                     |     |       | eleccore                          | 1.9.453                         | ElecCore-1.12.2-1.9.453.jar                        | None                                     |     |       | ebwizardry                        | 4.3.13                          | ElectroblobsWizardry-4.3.13.jar                    | None                                     |     |       | endercore                         | 1.12.2-0.5.78                   | EnderCore-1.12.2-0.5.78.jar                        | None                                     |     |       | enderio                           | 5.3.72                          | EnderIO-1.12.2-5.3.72.jar                          | None                                     |     |       | enderiobase                       | 5.3.72                          | EnderIO-1.12.2-5.3.72.jar                          | None                                     |     |       | enderioconduitsappliedenergistics | 5.3.72                          | EnderIO-1.12.2-5.3.72.jar                          | None                                     |     |       | enderioconduitsopencomputers      | 5.3.72                          | EnderIO-1.12.2-5.3.72.jar                          | None                                     |     |       | enderioconduitsrefinedstorage     | 5.3.72                          | EnderIO-1.12.2-5.3.72.jar                          | None                                     |     |       | enderioconduits                   | 5.3.72                          | EnderIO-1.12.2-5.3.72.jar                          | None                                     |     |       | enderiointegrationforestry        | 5.3.72                          | EnderIO-1.12.2-5.3.72.jar                          | None                                     |     |       | enderiointegrationtic             | 5.3.72                          | EnderIO-1.12.2-5.3.72.jar                          | None                                     |     |       | enderiointegrationticlate         | 5.3.72                          | EnderIO-1.12.2-5.3.72.jar                          | None                                     |     |       | enderioinvpanel                   | 5.3.72                          | EnderIO-1.12.2-5.3.72.jar                          | None                                     |     |       | enderiomachines                   | 5.3.72                          | EnderIO-1.12.2-5.3.72.jar                          | None                                     |     |       | enderiopowertools                 | 5.3.72                          | EnderIO-1.12.2-5.3.72.jar                          | None                                     |     |       | gasconduits                       | 5.3.72                          | EnderIO-conduits-mekanism-1.12.2-5.3.72.jar        | None                                     |     |       | enderioendergy                    | 5.3.72                          | EnderIO-endergy-1.12.2-5.3.72.jar                  | None                                     |     |       | enderiozoo                        | 5.3.72                          | EnderIO-zoo-1.12.2-5.3.72.jar                      | None                                     |     |       | endermail                         | 1.1.3                           | EnderMail-1.12.2-1.1.3.jar                         | None                                     |     |       | enderstorage                      | 2.4.6.137                       | EnderStorage-1.12.2-2.4.6.137-universal.jar        | None                                     |     |       | enderstorage                      | 2.5.0                           | EnderStorage-1.12.2-2.5.0.jar                      | None                                     |     |       | endertweaker                      | 1.2.3                           | EnderTweaker-1.12.2-1.2.3.jar                      | None                                     |     |       | energyconverters                  | 1.3.7.30                        | energyconverters_1.12.2-1.3.7.30.jar               | None                                     |     |       | engineersworkshop                 | 1.4.0-1.12.2                    | EngineersWorkshop-1.4.0-1.12.2.jar                 | None                                     |     |       | entityculling                     | @VER@                           | entityculling-1.12.2-1.6.3.jar                     | None                                     |     |       | environmentaltech                 | 1.12.2-2.0.20.1                 | environmentaltech-1.12.2-2.0.20.1.jar              | None                                     |     |       | etlunar                           | 1.12.2-2.0.20.1                 | etlunar-1.12.2-2.0.20.1.jar                        | None                                     |     |       | motnt                             | 1.0.1                           | EvenMoreTNT-1.0.1.jar                              | None                                     |     |       | excompressum                      | 3.0.32                          | ExCompressum_1.12.2-3.0.32.jar                     | None                                     |     |       | exnihilocreatio                   | 1.12.2-0.4.7.2                  | exnihilocreatio-1.12.2-0.4.7.2.jar                 | None                                     |     |       | exnihiloomnia                     | 1.0                             | exnihiloomnia_1.12.2-0.0.2.jar                     | None                                     |     |       | expandableinventory               | 1.4.0                           | ExpandableInventory-1.12.2-1.4.0.jar               | None                                     |     |       | extrabitmanipulation              | 1.12.2-3.4.1                    | ExtraBitManipulation-1.12.2-3.4.1.jar              | None                                     |     |       | extra_spells                      | 1.2.0                           | ExtraSpells-1.12.2-1.2.0.jar                       | None                                     |     |       | extrautils2                       | 1.0                             | extrautils2-1.12-1.9.9.jar                         | None                                     |     |       | bigreactors                       | 1.12.2-0.4.5.68                 | ExtremeReactors-1.12.2-0.4.5.68.jar                | None                                     |     |       | fairylights                       | 2.1.10                          | fairylights-2.2.0-1.12.2.jar                       | None                                     |     |       | farmingforblockheads              | 3.1.28                          | FarmingForBlockheads_1.12.2-3.1.28.jar             | None                                     |     |       | fenceoverhaul                     | 1.3.4                           | FenceOverhaul-1.3.4.jar                            | None                                     |     |       | examplemod                        | 1.0                             | flatcolorblock-hexfinder.jar                       | None                                     |     |       | flatcoloredblocks                 | mc1.12-6.8                      | flatcoloredblocks-mc1.12-6.8.jar                   | None                                     |     |       | fluxnetworks                      | 4.1.0                           | FluxNetworks-1.12.2-4.1.1.34.jar                   | None                                     |     |       | foamfix                           | @VERSION@                       | foamfix-0.10.15-1.12.2.jar                         | None                                     |     |       | forestry                          | 5.8.2.387                       | forestry_1.12.2-5.8.2.387.jar                      | None                                     |     |       | forgelin                          | 1.8.4                           | Forgelin-1.8.4.jar                                 | None                                     |     |       | forgelin_continuous               | 1.9.23.0                        | Forgelin-Continuous-1.9.23.0.jar                   | None                                     |     |       | microblockcbe                     | 2.6.2.83                        | ForgeMultipart-1.12.2-2.6.2.83-universal.jar       | None                                     |     |       | forgemultipartcbe                 | 2.6.2.83                        | ForgeMultipart-1.12.2-2.6.2.83-universal.jar       | None                                     |     |       | minecraftmultipartcbe             | 2.6.2.83                        | ForgeMultipart-1.12.2-2.6.2.83-universal.jar       | None                                     |     |       | ftbultimine                       | 1202.3.5                        | ftb-ultimine-1202.3.5.jar                          | None                                     |     |       | ftbbackups                        | 1.1.0.1                         | FTBBackups-1.1.0.1.jar                             | None                                     |     |       | ftblib                            | 5.4.7.2                         | FTBLib-5.4.7.2.jar                                 | None                                     |     |       | ftbmoney                          | 1.2.0.47                        | FTBMoney-1.2.0.47.jar                              | None                                     |     |       | ftbquests                         | 1202.9.0.15                     | FTBQuests-1202.9.0.15.jar                          | None                                     |     |       | ftbutilities                      | 5.4.1.131                       | FTBUtilities-5.4.1.131.jar                         | None                                     |     |       | fw                                | 1.6.0                           | FullscreenWindowed-1.12-1.6.0.jar                  | None                                     |     |       | funtnt                            | 1.12.2.0                        | funtnt-1.12.2.0.jar                                | None                                     |     |       | cfm                               | 6.3.0                           | furniture-6.3.2-1.12.2.jar                         | None                                     |     |       | gardenofglass                     | sqrt(-1)                        | GardenOfGlass.jar                                  | None                                     |     |       | geckolib3                         | 3.0.30                          | geckolib-forge-1.12.2-3.0.31.jar                   | None                                     |     |       | advgenerators                     | 0.9.20.12                       | generators-0.9.20.12-mc1.12.2.jar                  | None                                     |     |       | googlyeyes                        | 7.1.1                           | GooglyEyes-1.12.2-7.1.1.jar                        | None                                     |     |       | grapplemod                        | 1.12.2-v13                      | grappling_hook_mod-1.12.2-v13.jar                  | None                                     |     |       | gravestone                        | 1.10.3                          | gravestone-1.10.3.jar                              | None                                     |     |       | gravitygun                        | 7.1.0                           | GravityGun-1.12.2-7.1.0.jar                        | None                                     |     |       | grue                              | 1.8.1                           | Grue-1.12.2-1.8.1.jar                              | None                                     |     |       | guideapi                          | 1.12-2.1.8-63                   | Guide-API-1.12-2.1.8-63.jar                        | None                                     |     |       | gunpowderlib                      | 1.12.2-1.1                      | GunpowderLib-1.12.2-1.1.jar                        | None                                     |     |       | cgm                               | 0.15.3                          | guns-0.15.3-1.12.2.jar                             | None                                     |     |       | gyth                              | 2.1.38                          | Gyth-1.12.2-2.1.38.jar                             | None                                     |     |       | hammercore                        | 12.2.50                         | HammerLib-1.12.2-12.2.50.jar                       | None                                     |     |       | harvest                           | 1.12-1.2.8-25                   | Harvest-1.12-1.2.8-25.jar                          | None                                     |     |       | hatchery                          | 2.2.2                           | hatchery-1.12.2-2.2.2.jar                          | None                                     |     |       | headcrumbs                        | 2.0.4                           | Headcrumbs-1.12.2-2.0.5.17.jar                     | None                                     |     |       | heroesexpansion                   | 1.12.2-1.3.5                    | HeroesExpansion-1.12.2-1.3.5.jar                   | None                                     |     |       | hopperducts                       | 1.5                             | hopperducts-mc1.12-1.5.jar                         | None                                     |     |       | waila                             | 1.8.26                          | Hwyla-1.8.26-B41_1.12.2.jar                        | None                                     |     |       | hydrogel                          | 1.1.0                           | HydroGel-1.12.2-1.1.0.jar                          | None                                     |     |       | icbmclassic                       | 6.0.0                           | ICBM-classic-1.12.2-6.0.0-preview.1.jar            | None                                     |     |       | icbmcc                            | 1.0.2                           | ICBM-classic-cc-addon-1.12.2-1.0.2.jar             | None                                     |     |       | ichunutil                         | 7.2.2                           | iChunUtil-1.12.2-7.2.2.jar                         | None                                     |     |       | igi|bloodmagicintegration         | 1.2                             | IGI-BloodMagic-1.2.jar                             | None                                     |     |       | igi|deepresonanceintegration      | 1.1                             | IGI-DeepResonance-1.1.jar                          | None                                     |     |       | igi|rftoolsintegration            | 1.2                             | IGI-RFTools-1.2.jar                                | None                                     |     |       | igi|thaumcraft                    | 1.0a                            | IGI-Thaumcraft-1.0a.jar                            | None                                     |     |       | igisereneseasons                  | 1.0.0.1                         | igisereneseasons-1.0.0.1.jar                       | None                                     |     |       | immersivepetroleum                | 1.1.10                          | immersivepetroleum-1.12.2-1.1.10.jar               | None                                     |     |       | industrialupgrade                 | 3.1.3                           | IndustrialUpgrade-1.12.2-3.1.3.jar                 | None                                     |     |       | ingameinfoxml                     | 2.8.2.94                        | InGameInfoXML-1.12.2-2.8.2.94-universal.jar        | None                                     |     |       | initialinventory                  | 2.0.2                           | InitialInventory-3.0.0.jar                         | None                                     |     |       | integrateddynamics                | 1.1.11                          | IntegratedDynamics-1.12.2-1.1.11.jar               | None                                     |     |       | integrateddynamicscompat          | 1.0.0                           | IntegratedDynamics-1.12.2-1.1.11.jar               | None                                     |     |       | integratedtunnels                 | 1.6.14                          | IntegratedTunnels-1.12.2-1.6.14.jar                | None                                     |     |       | integratedtunnelscompat           | 1.0.0                           | IntegratedTunnels-1.12.2-1.6.14.jar                | None                                     |     |       | inventorypets                     | 2.0.15                          | inventorypets-1.12-2.0.15.jar                      | None                                     |     |       | inventorysorter                   | 1.13.3+57                       | inventorysorter-1.12.2-1.13.3+57.jar               | None                                     |     |       | ironchest                         | 1.12.2-7.0.67.844               | ironchest-1.12.2-7.0.72.847.jar                    | None                                     |     |       | ironjetpacks                      | 1.1.0                           | IronJetpacks-1.12-2-1.1.0.jar                      | None                                     |     |       | ironman                           | Beta-1.12.2-1.2.6               | IronMan-1.12.2-Beta-1.12.2-1.2.6.jar               | None                                     |     |       | itemfilters                       | 1.0.4.2                         | ItemFilters-1.0.4.2.jar                            | None                                     |     |       | jeiutilities                      | 0.2.12                          | JEI-Utilities-1.12.2-0.2.12.jar                    | None                                     |     |       | jei                               | 4.16.1.301                      | jei_1.12.2-4.16.1.301.jar                          | None                                     |     |       | jeiintegration                    | 1.6.0                           | jeiintegration_1.12.2-1.6.0.jar                    | None                                     |     |       | journeymap                        | 1.12.2-5.7.1p2                  | journeymap-1.12.2-5.7.1p2.jar                      | None                                     |     |       | kleeslabs                         | 5.4.12                          | KleeSlabs_1.12.2-5.4.12.jar                        | None                                     |     |       | librarianliblate                  | 4.22                            | librarianlib-1.12.2-4.22.jar                       | None                                     |     |       | librarianlib                      | 4.22                            | librarianlib-1.12.2-4.22.jar                       | None                                     |     |       | literalascension                  | 1.12.2-1.0.2.2                  | literalascension-1.12.2-2.0.0.0.jar                | None                                     |     |       | logisticspipes                    | 0.10.3.114                      | logisticspipes-0.10.3.114.jar                      | None                                     |     |       | longfallboots                     | 1.2.1a                          | longfallboots-1.2.1b.jar                           | None                                     |     |       | lootbags                          | 2.5.8.5                         | LootBags-1.12.2-2.5.8.5.jar                        | None                                     |     |       | lost_aether                       | 1.0.2                           | lost-aether-content-1.12.2-1.0.2.jar               | None                                     |     |       | lostinfinity                      | 1.15.4                          | lostinfinity-1.16.0.jar                            | None                                     |     |       | luckynuke                         | 1.0.0                           | Lucky (1).jar                                      | None                                     |     |       | lucraftcore                       | 1.12.2-2.4.16                   | LucraftCore-1.12.2-2.4.17.jar                      | None                                     |     |       | lucraftcoreidextender             | 1.0.1                           | LucraftCoreIDExtender.jar                          | None                                     |     |       | lunatriuscore                     | 1.2.0.42                        | LunatriusCore-1.12.2-1.2.0.42-universal.jar        | None                                     |     |       | magiccraftadventure               | v1.10                           | MagicCraftAdventure v1.10.jar                      | None                                     |     |       | malisiscore                       | 1.12.2-6.5.1-SNAPSHOT           | malisiscore-1.12.2-6.5.1.jar                       | None                                     |     |       | malisisdoors                      | 1.12.2-7.3.0                    | malisisdoors-1.12.2-7.3.0.jar                      | None                                     |     |       | mantle                            | 1.12-1.3.3.55                   | Mantle-1.12-1.3.3.55.jar                           | None                                     |     |       | matc                              | 1.0.1-hotfix                    | matc-1.0.1-hotfix.jar                              | None                                     |     |       | mcef                              | 1.11                            | mcef-1.12.2-1.11.jar                               | None                                     |     |       | mcjtylib_ng                       | 3.5.4                           | mcjtylib-1.12-3.5.4.jar                            | None                                     |     |       | mclib                             | 2.4.2                           | mclib-2.4.2-1.12.2.jar                             | None                                     |     |       | mcmultipart                       | 2.5.3                           | MCMultiPart-2.5.3.jar                              | None                                     |     |       | mekanism                          | 1.12.2-9.8.3.390                | Mekanism-1.12.2-9.8.3.390.jar                      | None                                     |     |       | mekanismgenerators                | 1.12.2-9.8.3.390                | MekanismGenerators-1.12.2-9.8.3.390.jar            | None                                     |     |       | mekanismtools                     | 1.12.2-9.8.3.390                | MekanismTools-1.12.2-9.8.3.390.jar                 | None                                     |     |       | mercurius                         | 1.0.6                           | Mercurius-1.12.2.jar                               | None                                     |     |       | metamorph                         | 1.3.1                           | metamorph-1.3.1-1.12.2.jar                         | None                                     |     |       | metamorphmax                      | 0.13 - MC 1.12.2                | metamorphmax-0.13.jar                              | None                                     |     |       | minemenu                          | 1.6.11                          | MineMenu-1.12.2-1.6.11-universal.jar               | None                                     |     |       | minicoal                          | 1.0                             | minicoal-1.12.2-1.0.jar                            | None                                     |     |       | missing_pieces                    | 4.3.0                           | missing_pieces-1.12.2-4.3.0.jar                    | None                                     |     |       | moarsigns                         | 6.0.0.11                        | MoarSigns-1.12.2-6.0.0.11.jar                      | None                                     |     |       | moartinkers                       | 0.6.0                           | moartinkers-0.6.0.jar                              | None                                     |     |       | mob_grinding_utils                | 0.3.13                          | MobGrindingUtils-0.3.13.jar                        | None                                     |     |       | modnametooltip                    | 1.10.1                          | modnametooltip_1.12.2-1.10.1.jar                   | None                                     |     |       | modtweaker                        | 4.0.19                          | modtweaker-4.0.20.11.jar                           | None                                     |     |       | moreavaritia                      | 3.5                             | moreavaritia-mc1.12.2-v1.5.jar                     | None                                     |     |       | morechickens                      | 3.1.0                           | morechickens-1.12.2-3.1.0.jar                      | None                                     |     |       | shear                             | 1.1.2                           | MoreShearables1.3.1-1.12.2.jar                     | None                                     |     |       | morpheus                          | 1.12.2-3.5.106                  | Morpheus-1.12.2-3.5.106.jar                        | None                                     |     |       | mousetweaks                       | 2.10                            | MouseTweaks-2.10-mc1.12.2.jar                      | None                                     |     |       | mowziesmobs                       | 1.5.8                           | mowziesmobs-1.5.8.jar                              | None                                     |     |       | mpbasic                           | 1.4.7                           | mpbasic-1.12.2-1.4.11.jar                          | None                                     |     |       | mputils                           | 1.5.6                           | MPUtils-1.12.2-1.5.7.jar                           | None                                     |     |       | mtlib                             | 3.0.7                           | MTLib-3.0.7.jar                                    | None                                     |     |       | mysticalagradditions              | 1.3.2                           | MysticalAgradditions-1.12.2-1.3.2.jar              | None                                     |     |       | mysticalagriculture               | 1.7.5                           | MysticalAgriculture-1.12.2-1.7.5.jar               | None                                     |     |       | mysticallib                       | 1.12.2-1.13.0                   | mysticallib-1.12.2-1.13.0.jar                      | None                                     |     |       | natura                            | 1.12.2-4.3.2.69                 | natura-1.12.2-4.3.2.69.jar                         | None                                     |     |       | neat                              | 1.4-17                          | Neat 1.4-17.jar                                    | None                                     |     |       | nice                              | 0.4.0                           | nice-1.12-0.4.0.jar                                | None                                     |     |       | nei                               | 2.4.3                           | NotEnoughItems-1.12.2-2.4.3.245-universal.jar      | None                                     |     |       | notenoughwands                    | 1.8.1                           | notenoughwands-1.12-1.8.1.jar                      | None                                     |     |       | hbm                               | NTM-Extended-1.12.2-2.0.2       | NTM-Extended-1.12.2-2.0.2.jar                      | None                                     |     |       | openablewindows                   | 0.0.1                           | openablewindows-1.0.jar                            | None                                     |     |       | opencomputers                     | 1.8.5                           | OpenComputers-MC1.12.2-1.8.5+179e1c3.jar           | None                                     |     |       | eternalsoap.icbm.opencomputers    | 1.0                             | OpenComputersICBMAddon-1.3.jar                     | None                                     |     |       | oreexcavation                     | 1.4.150                         | OreExcavation-1.4.150.jar                          | None                                     |     |       | orespawn                          | 3.3.1                           | OreSpawn-1.12-3.3.1.179.jar                        | None                                     |     |       | packingtape                       | 0.7.6                           | PackingTape-1.12.2-0.7.6.jar                       | None                                     |     |       | harvestcraft                      | 1.12.2zb                        | Pam's HarvestCraft 1.12.2zg.jar                    | None                                     |     |       | pamsimpleharvest                  | 2.0.0                           | pamsimpleharvest-2.0.0.jar                         | None                                     |     |       | patchouli                         | 1.0-23.6                        | Patchouli-1.0-23.6.jar                             | None                                     |     |       | placebo                           | 1.6.0                           | Placebo-1.12.2-1.6.1.jar                           | None                                     |     |       | platforms                         | 1.4.6                           | platforms-1.12.0-1.4.6.jar                         | None                                     |     |       | portalgun                         | 7.1.0                           | PortalGun-1.12.2-7.1.0.jar                         | None                                     |     |       | powerutils                        | 1.5.3                           | Power+Utilities.jar                                | None                                     |     |       | projecte                          | 1.12.2-PE1.4.1                  | ProjectE-1.12.2-PE1.4.1.jar                        | None                                     |     |       | projectex                         | 1.2.0.40                        | ProjectEX-1.2.0.40.jar                             | None                                     |     |       | projectintelligence               | 1.0.9                           | ProjectIntelligence-1.12.2-1.0.9.28-universal.jar  | None                                     |     |       | psi                               | r1.1-78                         | Psi-r1.1-78.2.jar                                  | None                                     |     |       | ptrmodellib                       | 1.0.5                           | PTRLib-1.0.5.jar                                   | None                                     |     |       | pymtech                           | 1.12.2-1.0.2                    | PymTech-1.12.2-1.0.2.jar                           | None                                     |     |       | quantum_generators                | 1.3.1                           | Quantum_Generators.jar                             | None                                     |     |       | quantumflux                       | 2.0.18                          | quantumflux-1.12.2-2.0.18.jar                      | None                                     |     |       | quantumstorage                    | 4.7.0                           | QuantumStorage-1.12-4.7.0.jar                      | None                                     |     |       | questbook                         | 3.1.1-1.12                      | questbook-3.1.1-1.12.jar                           | None                                     |     |       | randomthings                      | 4.2.7.4                         | RandomThings-MC1.12.2-4.2.7.4.jar                  | None                                     |     |       | rangedpumps                       | 0.5                             | rangedpumps-0.5.jar                                | None                                     |     |       | reborncore                        | 3.19.5                          | RebornCore-1.12.2-3.19.5-universal.jar             | None                                     |     |       | rebornstorage                     | 1.0.0                           | RebornStorage-1.12.2-3.3.4.1.jar                   | None                                     |     |       | reccomplex                        | 1.4.8.5                         | RecurrentComplex-1.4.8.5.jar                       | None                                     |     |       | redstoneflux                      | 2.1.1                           | RedstoneFlux-1.12-2.1.1.1-universal.jar            | None                                     |     |       | redstonepaste                     | 1.7.5                           | redstonepaste-mc1.12-1.7.5.jar                     | None                                     |     |       | refined_avaritia                  | 2.6                             | refined_avaritia-1.12.2-2.6.jar                    | None                                     |     |       | refinedstorage                    | 1.6.16                          | refinedstorage-1.6.16.jar                          | None                                     |     |       | refinedstorageaddons              | 0.4.5                           | refinedstorageaddons-0.4.5.jar                     | None                                     |     |       | refinedstoragerequestify          | ${version}                      | refinedstoragerequestify-1.12.2-1.0.2-3.jar        | None                                     |     |       | regeneration                      | 3.0.3                           | Regeneration-3.0.3.jar                             | None                                     |     |       | resourceloader                    | 1.5.3                           | ResourceLoader-MC1.12.1-1.5.3.jar                  | None                                     |     |       | rftdimtweak                       | 1.1                             | RFTDimTweak-1.12.2-1.1.jar                         | None                                     |     |       | rftools                           | 7.73                            | rftools-1.12-7.73.jar                              | None                                     |     |       | rftoolscontrol                    | 2.0.2                           | rftoolsctrl-1.12-2.0.2.jar                         | None                                     |     |       | rftoolsdim                        | 5.71                            | rftoolsdim-1.12-5.71.jar                           | None                                     |     |       | rftoolspower                      | 1.2.0                           | rftoolspower-1.12-1.2.0.jar                        | None                                     |     |       | rftpwroc                          | 0.1                             | rftpwr_oc-0.2.jar                                  | None                                     |     |       | roots                             | 1.12.2-3.1.9.2                  | Roots-1.12.2-3.1.9.2.jar                           | None                                     |     |       | rslargepatterns                   | 1.12.2-1.0.0.0                  | RSLargePatterns-1.12.2-1.0.0.1.jar                 | None                                     |     |       | woodenshears                      | @MAJOR@.@MINOR@.@REVIS@.@BUILD@ | SBM-WoodenShears-1.12-0.0.1b8.jar                  | None                                     |     |       | scanner                           | 1.6.12                          | scanner-1.6.12.jar                                 | None                                     |     |       | secureenderstorage                | 1.12.2-1.2.0                    | SecureEnderStorage-1.12.2-1.2.0.jar                | None                                     |     |       | sereneseasons                     | 1.2.18                          | SereneSeasons-1.12.2-1.2.18-universal.jar          | None                                     |     |       | shadowmc                          | 3.8.0                           | ShadowMC-1.12-3.8.0.jar                            | None                                     |     |       | shearmadness                      | 1.12.2                          | shearmadness-1.12.2-1.7.2.4.jar                    | None                                     |     |       | simple-rpc                        | 1.0                             | simple-rpc-1.12.2-3.1.1.jar                        | None                                     |     |       | simplecorn                        | 2.5.12                          | SimpleCorn1.12-2.5.12.jar                          | None                                     |     |       | simplegenerators                  | 1.12.2-2.0.20.2                 | simplegenerators-1.12.2-2.0.20.2.jar               | None                                     |     |       | simplyquarries                    | 1.6.2                           | Simply+Quarries.jar                                | None                                     |     |       | simplyjetpacks                    | 1.12.2-2.2.20.0                 | SimplyJetpacks2-1.12.2-2.2.20.0.jar                | None                                     |     |       | snad                              | 1.12.1-1.7.09.16a               | Snad-1.12.1-1.7.09.16a.jar                         | None                                     |     |       | solarflux                         | 12.4.11                         | SolarFluxReborn-1.12.2-12.4.11.jar                 | None                                     |     |       | sonarcore                         | 5.0.19                          | sonarcore-1.12.2-5.0.19-20.jar                     | None                                     |     |       | speedsterheroes                   | 1.12.2-2.2.1                    | SpeedsterHeroes-1.12.2-2.2.1.jar                   | None                                     |     |       | statues                           | 0.8.10                          | statues-1.12.2-0.8.11.jar                          | None                                     |     |       | stellarfluidconduits              | 1.12.2-1.0.0                    | stellarfluidconduit-1.12.2-1.0.3.jar               | None                                     |     |       | stevescarts                       | 2.4.32.137                      | StevesCarts-1.12.2-2.4.32.137.jar                  | None                                     |     |       | storagedrawers                    | 5.5.0                           | StorageDrawers-1.12.2-5.5.0.jar                    | None                                     |     |       | tabula                            | 7.1.0                           | Tabula-1.12.2-7.1.0.jar                            | None                                     |     |       | taiga                             | 1.12.2-1.3.3                    | taiga-1.12.2-1.3.4.jar                             | None                                     |     |       | tardis                            | 0.1.4A                          | tardis-0.1.4A.jar                                  | None                                     |     |       | tconstruct                        | 1.12.2-2.13.0.183               | TConstruct-1.12.2-2.13.0.183.jar                   | None                                     |     |       | thaumcraft                        | 6.1.BETA26                      | Thaumcraft-1.12.2-6.1.BETA26.jar                   | None                                     |     |       | thaumicjei                        | 1.6.0                           | ThaumicJEI-1.12.2-1.6.0-27.jar                     | None                                     |     |       | beneath                           | 1.7.1                           | The Beneath-1.12.2-1.7.1.jar                       | None                                     |     |       | the-fifth-world                   | 0.5                             | the-fifth-world-0.5.1.jar                          | None                                     |     |       | tabulathreecoreexporter           | 1.12.2-1.0.0                    | ThreeCoreModelExporter-1.12.2-1.0.0.jar            | None                                     |     |       | tinkersaddons                     | 1.0.7                           | Tinkers' Addons-1.12.1-1.0.7.jar                   | None                                     |     |       | tinkers_reforged                  | 1.5.6                           | tinkers_reforged-1.5.6.jar                         | None                                     |     |       | tinkers_reforged_preload          | 1.5.6                           | tinkers_reforged-1.5.6.jar                         | None                                     |     |       | tinkersaether                     | 1.4.1                           | tinkersaether-1.4.1.jar                            | None                                     |     |       | tcomplement                       | 1.12.2-0.4.3                    | TinkersComplement-1.12.2-0.4.3.jar                 | None                                     |     |       | tinkersjei                        | 1.2                             | tinkersjei-1.2.jar                                 | None                                     |     |       | tinkersoc                         | 0.6                             | tinkersoc-0.6.jar                                  | None                                     |     |       | tinkertoolleveling                | 1.12.2-1.1.0.DEV.b23e769        | TinkerToolLeveling-1.12.2-1.1.0.jar                | None                                     |     |       | tp                                | 3.2.34                          | tinyprogressions-1.12.2-3.3.34-Release.jar         | None                                     |     |       | tnt_craft                         | 1.0.0                           | tnt-craft-1.12.2-V-1.1.0.jar                       | None                                     |     |       | tnt_utilities                     | 1.2.3                           | tnt_utilities-mc1.12-1.2.3.jar                     | None                                     |     |       | torchmaster                       | 1.8.5.0                         | torchmaster_1.12.2-1.8.5.0.jar                     | None                                     |     |       | translocators                     | 2.5.2.81                        | Translocators-1.12.2-2.5.2.81-universal.jar        | None                                     |     |       | ts2k16                            | 1.2.10                          | TS2K16-1.2.10.jar                                  | None                                     |     |       | twitchcrumbs                      | 3.0.4                           | Twitchcrumbs_1.12.2-3.0.4.jar                      | None                                     |     |       | unidict                           | 1.12.2-3.0.10                   | UniDict-1.12.2-3.0.10.jar                          | None                                     |     |       | universalmodifiers                | 1.12.2-1.0.16.1                 | valkyrielib-1.12.2-2.0.20.1.jar                    | None                                     |     |       | valkyrielib                       | 1.12.2-2.0.20.1                 | valkyrielib-1.12.2-2.0.20.1.jar                    | None                                     |     |       | vehicle                           | 0.44.1                          | vehicle-mod-0.44.1-1.12.2.jar                      | None                                     |     |       | viaforge                          | 3.6.0                           | viaforge-mc1122-3.6.0.jar                          | None                                     |     |       | voicechat                         | 1.12.2-2.5.13                   | voicechat-forge-1.12.2-2.5.13.jar                  | None                                     |     |       | waddles                           | 0.6.0                           | Waddles-1.12.2-0.6.0.jar                           | None                                     |     |       | wanionlib                         | 1.12.2-2.91                     | WanionLib-1.12.2-2.91.jar                          | None                                     |     |       | warpbook                          | 1.12.2-3.3.4                    | Warpbook-1.12.2-3.3.4.jar                          | None                                     |     |       | wawla                             | 2.6.275                         | Wawla-1.12.2-2.6.275.jar                           | None                                     |     |       | waystones                         | 4.1.0                           | Waystones_1.12.2-4.1.0.jar                         | None                                     |     |       | webdisplays                       | 1.1                             | webdisplaysremastered-1.12.2-1.2.jar               | None                                     |     |       | wintertagva                       | 1.12.2-1.0.0                    | WinterTAGVA-1.12.2-1.0.0.jar                       | None                                     |     |       | withercrumbs                      | @version@                       | witherCrumbs-1.12.2-0.11.jar                       | None                                     |     |       | zerocore                          | 1.12.2-0.1.2.9                  | zerocore-1.12.2-0.1.2.9.jar                        | None                                     |     |       | orbis-lib                         | 0.2.0                           | orbis-lib-1.12.2-0.2.0+build411.jar                | None                                     |     |       | phosphor-lighting                 | 1.12.2-0.2.6                    | phosphor-1.12.2-0.2.6+build50.jar                  | None                                     |     |       | immersiveengineering              | 0.12-98                         | ImmersiveEngineering-0.12-98.jar                   | None                                     |     |       | k9                                | 1.12.2-1.3.3.0                  | k9-1.12.2-1.3.3.0.jar                              | None                                     |     |       | llibrary                          | 1.7.20                          | llibrary-1.7.20-1.12.2.jar                         | None                                     |     |       | shetiphiancore                    | 3.5.9                           | shetiphiancore-1.12.0-3.5.9.jar                    | None                                     |     |       | structurize                       | 1.12.2-0.10.277-RELEASE         | structurize-1.12.2-0.10.277-RELEASE.jar            | None                                     |     |       | weeping-angels                    | 1.12.2-46                       | weeping-angels-46.jar                              | None                                     |     Loaded coremods (and transformers):  IELoadingPlugin (ImmersiveEngineering-core-0.12-98.jar)   blusunrize.immersiveengineering.common.asm.IEClassTransformer LibrarianLib Plugin (librarianlib-1.12.2-4.22.jar)   com.teamwizardry.librarianlib.asm.LibLibTransformer MixinLoader (viaforge-mc1122-3.6.0.jar)    McLib core mod (mclib-2.4.2-1.12.2.jar)   mchorse.mclib.core.McLibCMClassTransformer EFFLL (LiteLoader ObjectHolder fix) (ExtraFoamForLiteLoader-1.0.0.jar)   pl.asie.extrafoamforliteloader.EFFLLTransformer MekanismCoremod (Mekanism-1.12.2-9.8.3.390.jar)   mekanism.coremod.KeybindingMigrationHelper LogisticsPipesCoreLoader (logisticspipes-0.10.3.114.jar)   logisticspipes.asm.LogisticsClassTransformer AppleCore (AppleCore-mc1.12.2-3.4.0.jar)   squeek.applecore.asm.TransformerModuleHandler BiomeTweakerCore (BiomeTweakerCore-1.12.2-1.0.39.jar)   me.superckl.biometweakercore.BiomeTweakerASMTransformer ObfuscatePlugin (obfuscate-0.4.2-1.12.2.jar)   com.mrcrayfish.obfuscate.asm.ObfuscateTransformer Regeneration (Regeneration-3.0.3.jar)   me.suff.mc.regen.asm.RegenClassTransformer UniDictCoreMod (UniDict-1.12.2-3.0.10.jar)   wanion.unidict.core.UniDictCoreModTransformer ReflectorsPlugin (EnderStorage-1.12.2-2.5.0.jar)   codechicken.enderstorage.reflection.ReflectorsPlugin EntityCullingEarlyLoader (entityculling-1.12.2-1.6.3.jar)    Controllable (controllable-0.11.2-1.12.2.jar)    craftfallessentials (CraftfallEssentials-1.12.2-1.2.6.jar)   com.hydrosimp.craftfallessentials.core.CEClassTransformer SecurityCraftLoadingPlugin ([1.12.2] SecurityCraft v1.9.9.jar)    LoadingPlugin (ResourceLoader-MC1.12.1-1.5.3.jar)   lumien.resourceloader.asm.ClassTransformer MalisisCorePlugin (malisiscore-1.12.2-6.5.1.jar)    pymtech (PymTech-1.12.2-1.0.2.jar)   lucraft.mods.pymtech.core.PymTechClassTransformer IvToolkit (IvToolkit-1.3.3-1.12.jar)    JeiUtilitiesLoadingPlugin (JEI-Utilities-1.12.2-0.2.12.jar)   com.github.vfyjxf.jeiutilities.asm.JeiUtilitiesClassTransformer LoadingPlugin (RandomThings-MC1.12.2-4.2.7.4.jar)   lumien.randomthings.asm.ClassTransformer SSLoadingPlugin (SereneSeasons-1.12.2-1.2.18-universal.jar)   sereneseasons.asm.transformer.EntityRendererTransformer   sereneseasons.asm.transformer.WorldTransformer Do not report to Forge! (If you haven't disabled the FoamFix coremod, try disabling it in the config! Note that this bit of text will still appear.) (foamfix-0.10.15-1.12.2.jar)   pl.asie.foamfix.coremod.FoamFixTransformer FTBUltimineASM (ftb-ultimine-1202.3.5.jar)    ForgelinPlugin (Forgelin-1.8.4.jar)    Backpacked (backpacked-1.4.3-1.12.2.jar)   com.mrcrayfish.backpacked.asm.BackpackedTransformer ForgelinPlugin (Forgelin-Continuous-1.9.23.0.jar)    HCASM (HammerLib-1.12.2-12.2.50.jar)   com.zeitheron.hammercore.asm.HammerCoreTransformer LucraftCoreExtendedID (LucraftCoreIDExtender.jar)    NWRTweak (redstonepaste-mc1.12-1.7.5.jar)   net.fybertech.nwr.NWRTransformer CTMCorePlugin (CTM-MC1.12.2-1.0.2.31.jar)   team.chisel.ctm.client.asm.CTMTransformer LucraftCoreCoreMod (LucraftCore-1.12.2-2.4.17.jar)   lucraft.mods.lucraftcore.core.LCTransformer EnderCorePlugin (EnderCore-1.12.2-0.5.78-core.jar)   com.enderio.core.common.transform.EnderCoreTransformer   com.enderio.core.common.transform.SimpleMixinPatcher TransformerLoader (OpenComputers-MC1.12.2-1.8.5+179e1c3.jar)   li.cil.oc.common.asm.ClassTransformer llibrary (llibrary-core-1.0.11-1.12.2.jar)   net.ilexiconn.llibrary.server.core.plugin.LLibraryTransformer   net.ilexiconn.llibrary.server.core.patcher.LLibraryRuntimePatcher ShetiPhian-ASM (ShetiPhian-ASM-1.12.0.jar)   shetiphian.asm.ClassTransformer PhosphorFMLLoadingPlugin (phosphor-1.12.2-0.2.6+build50.jar)    MekanismTweaks (mekanismtweaks-1.1.jar)    ShutdownPatcher (mcef-1.12.2-1.11-coremod.jar)   net.montoyo.mcef.coremod.ShutdownPatcher TNTUtilities Core (tnt_utilities-mc1.12-1.2.3.jar)   ljfa.tntutils.asm.ExplosionTransformer     GL info: ' Vendor: 'Intel' Version: '4.6.0 - Build 32.0.101.5428' Renderer: 'Intel(R) Iris(R) Xe Graphics'     Launched Version: forge-14.23.5.2860     LWJGL: 2.9.4     OpenGL: Intel(R) Iris(R) Xe Graphics GL version 4.6.0 - Build 32.0.101.5428, Intel     GL Caps: Using GL 1.3 multitexturing. Using GL 1.3 texture combiners. Using framebuffer objects because OpenGL 3.0 is supported and separate blending is supported. Shaders are available because OpenGL 2.1 is supported. VBOs are available because OpenGL 1.5 is supported.     Using VBOs: Yes     Is Modded: Definitely; Client brand changed to 'fml,forge'     Type: Client (map_client.txt)     Resource Packs:      Current Language: English (US)     Profiler Position: N/A (disabled)     CPU: 8x 11th Gen Intel(R) Core(TM) i5-1135G7 @ 2.40GHz
  • Topics

×
×
  • Create New...

Important Information

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