Jump to content

[SOLVED] Trouble With Creating Block Similar To Minecraft Torch


Recommended Posts

Posted (edited)

I am learning JAVA(from maybe a month now) so i am totally new to all forge things. So, I wanted to ask how do you get some properties, namely the minecraft torch property of different textures when placed on side of blocks and the one in which it pops off when the block it is placed on is broken. I tried copying some code which i thought was relavent to the property of placing on side of blocks, the one using enumfacing, but my game used to crash saying that enum is never used and is not in blockstate container i am currently on my phone so can't attach the files but will do so if requiered. Please do tell me if there is something i am doing stupidly wrong. i also tried adding all the torch code ,without the block properties and stuff of course, but it did not render the model tgis time. the enumfacing worked though. Any help will be greatly appreciated

[EDIT]

I forgot to mention that i am making a custom model block named 'Lantern'. Also, I wanted it to be placeble on the downside of blocks, which cannot be done with minecraft torch

Edited by Spacejet
forgot to write something important
Posted

Its usually customary to post your code and any errors you get, because we're not psychic.

I mean, you might be and won't need those things from people you're helping...

But we're not.

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.

Posted

My Apologies. Here is the code i mentioned. everything except the texture is working just fine.

Spoiler

package com.spacejet.starwars.blocks;

import java.util.Random;

import javax.annotation.Nullable;

import com.google.common.base.Predicate;

import net.minecraft.block.Block;
import net.minecraft.block.material.Material;
import net.minecraft.block.properties.IProperty;
import net.minecraft.block.properties.PropertyDirection;
import net.minecraft.block.state.BlockFaceShape;
import net.minecraft.block.state.BlockStateContainer;
import net.minecraft.block.state.IBlockState;
import net.minecraft.creativetab.CreativeTabs;
import net.minecraft.entity.EntityLivingBase;
import net.minecraft.util.BlockRenderLayer;
import net.minecraft.util.EnumFacing;
import net.minecraft.util.EnumParticleTypes;
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.world.IBlockAccess;
import net.minecraft.world.World;
import net.minecraftforge.fml.relauncher.Side;
import net.minecraftforge.fml.relauncher.SideOnly;

public class Lantern extends BlockBase{
    
    public static final PropertyDirection FACING = PropertyDirection.create("facing", new Predicate<EnumFacing>()
    {
        public boolean apply(@Nullable EnumFacing p_apply_1_)
        {
            return p_apply_1_ != EnumFacing.DOWN;
        }
    });
    
    public static final AxisAlignedBB LANTERN_BB = new AxisAlignedBB(0.3125D, 0, 0.3125D, 0.6875D, 0.555D,0.6875D);
    public static final AxisAlignedBB LANTERN_WALL_BB = new AxisAlignedBB(0.3125D, 0, 0.3125D, 0.6875D, 0.555D,0.6875D);

    public Lantern(String name, Material material) {
        super(name, material);
        setLightLevel(1.0f);
        setResistance(8.0f);
        setHardness(2.0f);
        setCreativeTab(CreativeTabs.DECORATIONS);
    }
    
    @Override
    public boolean isOpaqueCube(IBlockState state) {
        return false;
    }
    
    @Override
    public boolean isFullCube(IBlockState state) {
        return false;
    }
    
    public AxisAlignedBB getBoundingBox(IBlockState state, IBlockAccess source, BlockPos pos)
    {
        switch ((EnumFacing)state.getValue(FACING))
        {
            case EAST:
                return LANTERN_WALL_BB;
            case WEST:
                return LANTERN_WALL_BB;
            case SOUTH:
                return LANTERN_WALL_BB;
            case NORTH:
                return LANTERN_WALL_BB;
            default:
                return LANTERN_BB;
        }
    }
    
    @Nullable
    public AxisAlignedBB getCollisionBoundingBox(IBlockState blockState, IBlockAccess worldIn, BlockPos pos)
    {
        return NULL_AABB;
    }

 

    private boolean canPlaceOn(World worldIn, BlockPos pos)
    {
        IBlockState state = worldIn.getBlockState(pos);
        return state.getBlock().canPlaceTorchOnTop(state, worldIn, pos);
    }

    
    public boolean canPlaceBlockAt(World worldIn, BlockPos pos)
    {
        for (EnumFacing enumfacing : FACING.getAllowedValues())
        {
            if (this.canPlaceAt(worldIn, pos, enumfacing))
            {
                return true;
            }
        }

        return false;
    }

    private boolean canPlaceAt(World worldIn, BlockPos pos, EnumFacing facing)
    {
        BlockPos blockpos = pos.offset(facing.getOpposite());
        IBlockState iblockstate = worldIn.getBlockState(blockpos);
        Block block = iblockstate.getBlock();
        BlockFaceShape blockfaceshape = iblockstate.getBlockFaceShape(worldIn, blockpos, facing);

        if (facing.equals(EnumFacing.UP) && this.canPlaceOn(worldIn, blockpos))
        {
            return true;
        }
        else if (facing != EnumFacing.UP && facing != EnumFacing.DOWN)
        {
            return !isExceptBlockForAttachWithPiston(block) && blockfaceshape == BlockFaceShape.SOLID;
        }
        else
        {
            return false;
        }
    }

   
    public IBlockState getStateForPlacement(World worldIn, BlockPos pos, EnumFacing facing, float hitX, float hitY, float hitZ, int meta, EntityLivingBase placer)
    {
        if (this.canPlaceAt(worldIn, pos, facing))
        {
            return this.getDefaultState().withProperty(FACING, facing);
        }
        else
        {
            for (EnumFacing enumfacing : EnumFacing.Plane.HORIZONTAL)
            {
                if (this.canPlaceAt(worldIn, pos, enumfacing))
                {
                    return this.getDefaultState().withProperty(FACING, enumfacing);
                }
            }

            return this.getDefaultState();
        }
    }

   
    public void onBlockAdded(World worldIn, BlockPos pos, IBlockState state)
    {
        this.checkForDrop(worldIn, pos, state);
    }

   
    public void neighborChanged(IBlockState state, World worldIn, BlockPos pos, Block blockIn, BlockPos fromPos)
    {
        this.onNeighborChangeInternal(worldIn, pos, state);
    }

    protected boolean onNeighborChangeInternal(World worldIn, BlockPos pos, IBlockState state)
    {
        if (!this.checkForDrop(worldIn, pos, state))
        {
            return true;
        }
        else
        {
            EnumFacing enumfacing = (EnumFacing)state.getValue(FACING);
            EnumFacing.Axis enumfacing$axis = enumfacing.getAxis();
            EnumFacing enumfacing1 = enumfacing.getOpposite();
            BlockPos blockpos = pos.offset(enumfacing1);
            boolean flag = false;

            if (enumfacing$axis.isHorizontal() && worldIn.getBlockState(blockpos).getBlockFaceShape(worldIn, blockpos, enumfacing) != BlockFaceShape.SOLID)
            {
                flag = true;
            }
            else if (enumfacing$axis.isVertical() && !this.canPlaceOn(worldIn, blockpos))
            {
                flag = true;
            }

            if (flag)
            {
                this.dropBlockAsItem(worldIn, pos, state, 0);
                worldIn.setBlockToAir(pos);
                return true;
            }
            else
            {
                return false;
            }
        }
    }

    protected boolean checkForDrop(World worldIn, BlockPos pos, IBlockState state)
    {
        if (state.getBlock() == this && this.canPlaceAt(worldIn, pos, (EnumFacing)state.getValue(FACING)))
        {
            return true;
        }
        else
        {
            if (worldIn.getBlockState(pos).getBlock() == this)
            {
                this.dropBlockAsItem(worldIn, pos, state, 0);
                worldIn.setBlockToAir(pos);
            }

            return false;
        }
    }

    @SideOnly(Side.CLIENT)
    public void randomDisplayTick(IBlockState stateIn, World worldIn, BlockPos pos, Random rand)
    {
        EnumFacing enumfacing = (EnumFacing)stateIn.getValue(FACING);
        double d0 = (double)pos.getX() + 0.5D;
        double d1 = (double)pos.getY() + 0.7D;
        double d2 = (double)pos.getZ() + 0.5D;
        double d3 = 0.22D;
        double d4 = 0.27D;

        if (enumfacing.getAxis().isHorizontal())
        {
            EnumFacing enumfacing1 = enumfacing.getOpposite();
            worldIn.spawnParticle(EnumParticleTypes.SMOKE_NORMAL, d0 + 0.27D * (double)enumfacing1.getFrontOffsetX(), d1 + 0.22D, d2 + 0.27D * (double)enumfacing1.getFrontOffsetZ(), 0.0D, 0.0D, 0.0D);
            worldIn.spawnParticle(EnumParticleTypes.FLAME, d0 + 0.27D * (double)enumfacing1.getFrontOffsetX(), d1 + 0.22D, d2 + 0.27D * (double)enumfacing1.getFrontOffsetZ(), 0.0D, 0.0D, 0.0D);
        }
        else
        {
            worldIn.spawnParticle(EnumParticleTypes.SMOKE_NORMAL, d0, d1, d2, 0.0D, 0.0D, 0.0D);
            worldIn.spawnParticle(EnumParticleTypes.FLAME, d0, d1, d2, 0.0D, 0.0D, 0.0D);
        }
    }

   
    public IBlockState getStateFromMeta(int meta)
    {
        IBlockState iblockstate = this.getDefaultState();

        switch (meta)
        {
            case 1:
                iblockstate = iblockstate.withProperty(FACING, EnumFacing.EAST);
                break;
            case 2:
                iblockstate = iblockstate.withProperty(FACING, EnumFacing.WEST);
                break;
            case 3:
                iblockstate = iblockstate.withProperty(FACING, EnumFacing.SOUTH);
                break;
            case 4:
                iblockstate = iblockstate.withProperty(FACING, EnumFacing.NORTH);
                break;
            case 5:
            default:
                iblockstate = iblockstate.withProperty(FACING, EnumFacing.UP);
        }

        return iblockstate;
    }

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

    
    public int getMetaFromState(IBlockState state)
    {
        int i = 0;

        switch ((EnumFacing)state.getValue(FACING))
        {
            case EAST:
                i = i | 1;
                break;
            case WEST:
                i = i | 2;
                break;
            case SOUTH:
                i = i | 3;
                break;
            case NORTH:
                i = i | 4;
                break;
            case DOWN:
            case UP:
            default:
                i = i | 5;
        }

        return i;
    }

    
    public IBlockState withRotation(IBlockState state, Rotation rot)
    {
        return state.withProperty(FACING, rot.rotate((EnumFacing)state.getValue(FACING)));
    }

   
    public IBlockState withMirror(IBlockState state, Mirror mirrorIn)
    {
        return state.withRotation(mirrorIn.toRotation((EnumFacing)state.getValue(FACING)));
    }

    protected BlockStateContainer createBlockState()
    {
        return new BlockStateContainer(this, new IProperty[] {FACING});
    }

   
    public BlockFaceShape getBlockFaceShape(IBlockAccess worldIn, IBlockState state, BlockPos pos, EnumFacing face)
    {
        return BlockFaceShape.UNDEFINED;
    }
}
 

This is the blockstates json file:

Spoiler

{
    "variants": {
        "facing=up": { "model": "lantern" },
        "facing=east": { "model": "lantern_wall" },
        "facing=south": { "model": "lantern_wall", "y": 90 },
        "facing=west": { "model": "lantern_wall", "y": 180 },
        "facing=north": { "model": "lantern_wall", "y": 270 }
    }
}
 

And this is the model file for lantern:

Spoiler

{
    "credit": "Made by Spacejet",
    "textures": {
        "0": "(modid):blocks/fire",
        "1": "(modid):blocks/fire2",
        "2": "(modid):blocks/fire3",
        "3": "(modid):blocks/fire4",
        "4": "(modid):blocks/lantern",
        "5": "(modid):blocks/lantern_2",
        "6": "(modid):blocks/lantern_sides",
        "particle":"(modid):blocks/lantern_2"
    },
    "elements": [
        {
            "name": "cube",
            "from": [9.5, 1.75, 6.000000000000001],
            "to": [9.75, 7.25, 6.250000000000001],
            "faces": {
                "north": {"uv": [0, 0, 0.25, 5.5], "texture": "#6"},
                "east": {"uv": [0, 0, 0.25, 5.5], "texture": "#6"},
                "south": {"uv": [0, 0, 0.25, 5.5], "texture": "#6"},
                "west": {"uv": [0, 0, 0.25, 5.5], "texture": "#6"},
                "up": {"uv": [0, 0, 0.25, 0.25], "texture": "#6"},
                "down": {"uv": [0, 0, 0.25, 0.25], "texture": "#6"}
            },
            "type": "cube"
        },
        {
            "name": "cube",
            "from": [6, 1.75, 6.250000000000001],
            "to": [6.25, 7.25, 6.500000000000001],
            "faces": {
                "north": {"uv": [0, 0, 0.25, 5.5], "texture": "#6"},
                "east": {"uv": [0, 0, 0.25, 5.5], "texture": "#6"},
                "south": {"uv": [0, 0, 0.25, 5.5], "texture": "#6"},
                "west": {"uv": [0, 0, 0.25, 5.5], "texture": "#6"},
                "up": {"uv": [0, 0, 0.25, 0.25], "texture": "#6"},
                "down": {"uv": [0, 0, 0.25, 0.25], "texture": "#6"}
            },
            "type": "cube"
        },
        {
            "name": "cube",
            "from": [9.75, 1.75, 6.250000000000001],
            "to": [10, 7.25, 6.500000000000001],
            "faces": {
                "north": {"uv": [0, 0, 0.25, 5.5], "texture": "#6"},
                "east": {"uv": [0, 0, 0.25, 5.5], "texture": "#6"},
                "south": {"uv": [0, 0, 0.25, 5.5], "texture": "#6"},
                "west": {"uv": [0, 0, 0.25, 5.5], "texture": "#6"},
                "up": {"uv": [0, 0, 0.25, 0.25], "texture": "#6"},
                "down": {"uv": [0, 0, 0.25, 0.25], "texture": "#6"}
            },
            "type": "cube"
        },
        {
            "name": "cube",
            "from": [6.25, 1.75, 6.000000000000001],
            "to": [6.5, 7.25, 6.250000000000001],
            "faces": {
                "north": {"uv": [0, 0, 0.25, 5.5], "texture": "#6"},
                "east": {"uv": [0, 0, 0.25, 5.5], "texture": "#6"},
                "south": {"uv": [0, 0, 0.25, 5.5], "texture": "#6"},
                "west": {"uv": [0, 0, 0.25, 5.5], "texture": "#6"},
                "up": {"uv": [0, 0, 0.25, 0.25], "texture": "#6"},
                "down": {"uv": [0, 0, 0.25, 0.25], "texture": "#6"}
            },
            "type": "cube"
        },
        {
            "name": "cube",
            "from": [9.75, 1.75, 9.5],
            "to": [10, 7.25, 9.75],
            "faces": {
                "north": {"uv": [0, 0, 0.25, 5.5], "texture": "#6"},
                "east": {"uv": [0, 0, 0.25, 5.5], "texture": "#6"},
                "south": {"uv": [0, 0, 0.25, 5.5], "texture": "#6"},
                "west": {"uv": [0, 0, 0.25, 5.5], "texture": "#6"},
                "up": {"uv": [0, 0, 0.25, 0.25], "texture": "#6"},
                "down": {"uv": [0, 0, 0.25, 0.25], "texture": "#6"}
            },
            "type": "cube"
        },
        {
            "name": "cube",
            "from": [9.5, 1.75, 9.75],
            "to": [9.75, 7.25, 10],
            "faces": {
                "north": {"uv": [0, 0, 0.25, 5.5], "texture": "#6"},
                "east": {"uv": [0, 0, 0.25, 5.5], "texture": "#6"},
                "south": {"uv": [0, 0, 0.25, 5.5], "texture": "#6"},
                "west": {"uv": [0, 0, 0.25, 5.5], "texture": "#6"},
                "up": {"uv": [0, 0, 0.25, 0.25], "texture": "#6"},
                "down": {"uv": [0, 0, 0.25, 0.25], "texture": "#6"}
            },
            "type": "cube"
        },
        {
            "name": "cube",
            "from": [6.25, 1.75, 10],
            "to": [6.5, 7.25, 10.25],
            "faces": {
                "north": {"uv": [0, 0, 0.25, 5.5], "texture": "#6"},
                "east": {"uv": [0, 0, 0.25, 5.5], "texture": "#6"},
                "south": {"uv": [0, 0, 0.25, 5.5], "texture": "#6"},
                "west": {"uv": [0, 0, 0.25, 5.5], "texture": "#6"},
                "up": {"uv": [0, 0, 0.25, 0.25], "texture": "#6"},
                "down": {"uv": [0, 0, 0.25, 0.25], "texture": "#6"}
            },
            "type": "cube"
        },
        {
            "name": "cube",
            "from": [6, 1.75, 9.75],
            "to": [6.25, 7.25, 10],
            "faces": {
                "north": {"uv": [0, 0, 0.25, 5.5], "texture": "#6"},
                "east": {"uv": [0, 0, 0.25, 5.5], "texture": "#6"},
                "south": {"uv": [0, 0, 0.25, 5.5], "texture": "#6"},
                "west": {"uv": [0, 0, 0.25, 5.5], "texture": "#6"},
                "up": {"uv": [0, 0, 0.25, 0.25], "texture": "#6"},
                "down": {"uv": [0, 0, 0.25, 0.25], "texture": "#6"}
            },
            "type": "cube"
        },
        {
            "name": "cube",
            "from": [9.75, 1.75, 6.000000000000001],
            "to": [10, 7.25, 6.250000000000001],
            "faces": {
                "north": {"uv": [0, 0, 0.25, 5.5], "texture": "#6"},
                "east": {"uv": [0, 0, 0.25, 5.5], "texture": "#6"},
                "south": {"uv": [0, 0, 0.25, 5.5], "texture": "#6"},
                "west": {"uv": [0, 0, 0.25, 5.5], "texture": "#6"},
                "up": {"uv": [0, 0, 0.25, 0.25], "texture": "#6"},
                "down": {"uv": [0, 0, 0.25, 0.25], "texture": "#6"}
            },
            "type": "cube"
        },
        {
            "name": "cube",
            "from": [9.75, 1.75, 9.75],
            "to": [10, 7.25, 10],
            "faces": {
                "north": {"uv": [0, 0, 0.25, 5.5], "texture": "#6"},
                "east": {"uv": [0, 0, 0.25, 5.5], "texture": "#6"},
                "south": {"uv": [0, 0, 0.25, 5.5], "texture": "#6"},
                "west": {"uv": [0, 0, 0.25, 5.5], "texture": "#6"},
                "up": {"uv": [0, 0, 0.25, 0.25], "texture": "#6"},
                "down": {"uv": [0, 0, 0.25, 0.25], "texture": "#6"}
            },
            "type": "cube"
        },
        {
            "name": "cube",
            "from": [6, 1.75, 10],
            "to": [6.25, 7.25, 10.25],
            "faces": {
                "north": {"uv": [0, 0, 0.25, 5.5], "texture": "#6"},
                "east": {"uv": [0, 0, 0.25, 5.5], "texture": "#6"},
                "south": {"uv": [0, 0, 0.25, 5.5], "texture": "#6"},
                "west": {"uv": [0, 0, 0.25, 5.5], "texture": "#6"},
                "up": {"uv": [0, 0, 0.25, 0.25], "texture": "#6"},
                "down": {"uv": [0, 0, 0.25, 0.25], "texture": "#6"}
            },
            "type": "cube"
        },
        {
            "name": "cube",
            "from": [6, 1.75, 6.000000000000001],
            "to": [6.25, 7.25, 6.250000000000001],
            "faces": {
                "north": {"uv": [0, 0, 0.25, 5.5], "texture": "#6"},
                "east": {"uv": [0, 0, 0.25, 5.5], "texture": "#6"},
                "south": {"uv": [0, 0, 0.25, 5.5], "texture": "#6"},
                "west": {"uv": [0, 0, 0.25, 5.5], "texture": "#6"},
                "up": {"uv": [0, 0, 0.25, 0.25], "texture": "#6"},
                "down": {"uv": [0, 0, 0.25, 0.25], "texture": "#6"}
            },
            "type": "cube"
        },
        {
            "name": "middle",
            "from": [5.5, 7.75, 5.5],
            "to": [10.5, 8.5, 10.5],
            "faces": {
                "north": {"uv": [0, 0, 5, 0.75], "texture": "#5"},
                "east": {"uv": [0, 0, 5, 0.75], "texture": "#5"},
                "south": {"uv": [0, 0, 5, 0.75], "texture": "#5"},
                "west": {"uv": [0, 0, 5, 0.75], "texture": "#5"},
                "up": {"uv": [0, 0, 5, 5], "texture": "#5"},
                "down": {"uv": [0, 0, 5, 5], "texture": "#5"}
            },
            "type": "cube"
        },
        {
            "name": "top",
            "from": [6.5, 8.5, 6.5],
            "to": [9.5, 9, 9.5],
            "faces": {
                "north": {"uv": [7, 15, 10, 15.5], "texture": "#4"},
                "east": {"uv": [13, 15, 16, 15.5], "texture": "#4"},
                "south": {"uv": [6, 15, 9, 15.5], "texture": "#4"},
                "west": {"uv": [0, 15, 3, 15.5], "texture": "#4"},
                "up": {"uv": [6, 0, 9, 3], "texture": "#4"},
                "down": {"uv": [6, 13, 9, 16], "texture": "#4"}
            },
            "type": "cube"
        },
        {
            "name": "down",
            "from": [5, 7.25, 5],
            "to": [11, 8, 11],
            "faces": {
                "north": {"uv": [0, 0, 6, 0.75], "texture": "#4"},
                "east": {"uv": [0, 0, 6, 0.75], "texture": "#4"},
                "south": {"uv": [0, 0, 6, 0.75], "texture": "#4"},
                "west": {"uv": [0, 0, 6, 0.75], "texture": "#4"},
                "up": {"uv": [0, 0, 6, 6], "texture": "#4"},
                "down": {"uv": [0, 0, 6, 6], "texture": "#4"}
            },
            "rotation": {
                "origin": [7.5, 11.75, 9.5],
                "axis": "y",
                "angle": 0
            },
            "type": "cube"
        },
        {
            "name": "top",
            "from": [5, 1, 5],
            "to": [11, 1.75, 11],
            "faces": {
                "north": {"uv": [0, 0, 6, 0.75], "texture": "#4"},
                "east": {"uv": [0, 0, 6, 0.75], "texture": "#4"},
                "south": {"uv": [0, 0, 6, 0.75], "texture": "#4"},
                "west": {"uv": [0, 0, 6, 0.75], "texture": "#4"},
                "up": {"uv": [0, 0, 6, 6], "texture": "#4"},
                "down": {"uv": [0, 0, 6, 6], "texture": "#4"}
            },
            "rotation": {
                "origin": [8.5, 7, 14.5],
                "axis": "y",
                "angle": 0
            },
            "type": "cube"
        },
        {
            "name": "middle",
            "from": [5.5, 0.5, 5.5],
            "to": [10.5, 1, 10.5],
            "faces": {
                "north": {"uv": [0, 0, 5, 0.5], "texture": "#5"},
                "east": {"uv": [0, 0, 5, 0.5], "texture": "#5"},
                "south": {"uv": [0, 0, 5, 0.5], "texture": "#5"},
                "west": {"uv": [0, 0, 5, 0.5], "texture": "#5"},
                "up": {"uv": [0, 0, 5, 5], "texture": "#5"},
                "down": {"uv": [0, 0, 5, 5], "texture": "#5"}
            },
            "type": "cube"
        },
        {
            "name": "down",
            "from": [6.5, 0, 6.5],
            "to": [9.5, 0.5, 9.5],
            "faces": {
                "north": {"uv": [7, 15, 10, 15.5], "texture": "#4"},
                "east": {"uv": [13, 15, 16, 15.5], "texture": "#4"},
                "south": {"uv": [6, 15, 9, 15.5], "texture": "#4"},
                "west": {"uv": [0, 15, 3, 15.5], "texture": "#4"},
                "up": {"uv": [6, 0, 9, 3], "texture": "#4"},
                "down": {"uv": [6, 13, 9, 16], "texture": "#4"}
            },
            "type": "cube"
        },
        {
            "name": "main bar",
            "from": [7.5, 1.75, 7.5],
            "to": [8.5, 7.25, 8.5],
            "faces": {
                "north": {"uv": [0, 0, 1, 5.5], "texture": "#2"},
                "east": {"uv": [0, 0, 1, 5.5], "texture": "#2"},
                "south": {"uv": [0, 0, 1, 5.5], "texture": "#2"},
                "west": {"uv": [0, 0, 1, 5.5], "texture": "#2"},
                "up": {"uv": [0, 0, 1, 1], "texture": "#2"},
                "down": {"uv": [0, 0, 1, 1], "texture": "#2"}
            },
            "type": "cube"
        },
        {
            "name": "side middle west",
            "from": [6.75, 4, 7.5],
            "to": [7.5, 5, 8.5],
            "faces": {
                "north": {"uv": [0, 0, 0.75, 1], "texture": "#3"},
                "east": {"uv": [0, 0, 1, 1], "texture": "#3"},
                "south": {"uv": [0, 0, 0.75, 1], "texture": "#3"},
                "west": {"uv": [0, 0, 1, 1], "texture": "#3"},
                "up": {"uv": [0, 0, 0.75, 1], "texture": "#3"},
                "down": {"uv": [0, 0, 0.75, 1], "texture": "#3"}
            },
            "type": "cube"
        },
        {
            "name": "side middle north",
            "from": [7.5, 4, 6.75],
            "to": [8.5, 5, 7.5],
            "faces": {
                "north": {"uv": [0, 0, 1, 1], "texture": "#3"},
                "east": {"uv": [0, 0, 0.75, 1], "texture": "#3"},
                "south": {"uv": [0, 0, 1, 1], "texture": "#3"},
                "west": {"uv": [0, 0, 0.75, 1], "texture": "#3"},
                "up": {"uv": [0, 0, 1, 0.75], "texture": "#3"},
                "down": {"uv": [0, 0, 1, 0.75], "texture": "#3"}
            },
            "type": "cube"
        },
        {
            "name": "side middle south",
            "from": [7.5, 4, 8.5],
            "to": [8.5, 5, 9.25],
            "faces": {
                "north": {"uv": [0, 0, 1, 1], "texture": "#3"},
                "east": {"uv": [0, 0, 0.75, 1], "texture": "#3"},
                "south": {"uv": [0, 0, 1, 1], "texture": "#3"},
                "west": {"uv": [0, 0, 0.75, 1], "texture": "#3"},
                "up": {"uv": [0, 0, 1, 0.75], "texture": "#3"},
                "down": {"uv": [0, 0, 1, 0.75], "texture": "#3"}
            },
            "type": "cube"
        },
        {
            "name": "side middle east",
            "from": [8.5, 4, 7.5],
            "to": [9.25, 5, 8.5],
            "faces": {
                "north": {"uv": [0, 0, 0.75, 1], "texture": "#3"},
                "east": {"uv": [0, 0, 1, 1], "texture": "#3"},
                "south": {"uv": [0, 0, 0.75, 1], "texture": "#3"},
                "west": {"uv": [0, 0, 1, 1], "texture": "#3"},
                "up": {"uv": [0, 0, 0.75, 1], "texture": "#3"},
                "down": {"uv": [0, 0, 0.75, 1], "texture": "#3"}
            },
            "type": "cube"
        },
        {
            "name": "side middle east",
            "from": [8.5, 3.25, 7.5],
            "to": [9, 4, 8.5],
            "faces": {
                "north": {"uv": [0, 0, 0.5, 0.75], "texture": "#1"},
                "east": {"uv": [0, 0, 1, 0.75], "texture": "#1"},
                "south": {"uv": [0, 0, 0.5, 0.75], "texture": "#1"},
                "west": {"uv": [0, 0, 1, 0.75], "texture": "#1"},
                "up": {"uv": [0, 0, 0.5, 1], "texture": "#1"},
                "down": {"uv": [0, 0, 0.5, 1], "texture": "#1"}
            },
            "type": "cube"
        },
        {
            "name": "side middle south",
            "from": [7.5, 3.25, 8.5],
            "to": [8.5, 4, 9],
            "faces": {
                "north": {"uv": [0, 0, 1, 0.75], "texture": "#1"},
                "east": {"uv": [0, 0, 0.5, 0.75], "texture": "#1"},
                "south": {"uv": [0, 0, 1, 0.75], "texture": "#1"},
                "west": {"uv": [0, 0, 0.5, 0.75], "texture": "#1"},
                "up": {"uv": [0, 0, 1, 0.5], "texture": "#1"},
                "down": {"uv": [0, 0, 1, 0.5], "texture": "#1"}
            },
            "type": "cube"
        },
        {
            "name": "side middle west",
            "from": [7, 3.25, 7.5],
            "to": [7.5, 4, 8.5],
            "faces": {
                "north": {"uv": [0, 0, 0.5, 0.75], "texture": "#1"},
                "east": {"uv": [0, 0, 1, 0.75], "texture": "#1"},
                "south": {"uv": [0, 0, 0.5, 0.75], "texture": "#1"},
                "west": {"uv": [0, 0, 1, 0.75], "texture": "#1"},
                "up": {"uv": [0, 0, 0.5, 1], "texture": "#1"},
                "down": {"uv": [0, 0, 0.5, 1], "texture": "#1"}
            },
            "type": "cube"
        },
        {
            "name": "side middle south",
            "from": [7.5, 5, 8.5],
            "to": [8.5, 5.75, 9],
            "faces": {
                "north": {"uv": [0, 0, 1, 0.75], "texture": "#1"},
                "east": {"uv": [0, 0, 0.5, 0.75], "texture": "#1"},
                "south": {"uv": [0, 0, 1, 0.75], "texture": "#1"},
                "west": {"uv": [0, 0, 0.5, 0.75], "texture": "#1"},
                "up": {"uv": [0, 0, 1, 0.5], "texture": "#1"},
                "down": {"uv": [0, 0, 1, 0.5], "texture": "#1"}
            },
            "type": "cube"
        },
        {
            "name": "side middle west",
            "from": [7, 5, 7.5],
            "to": [7.5, 5.75, 8.5],
            "faces": {
                "north": {"uv": [0, 0, 0.5, 0.75], "texture": "#1"},
                "east": {"uv": [0, 0, 1, 0.75], "texture": "#1"},
                "south": {"uv": [0, 0, 0.5, 0.75], "texture": "#1"},
                "west": {"uv": [0, 0, 1, 0.75], "texture": "#1"},
                "up": {"uv": [0, 0, 0.5, 1], "texture": "#1"},
                "down": {"uv": [0, 0, 0.5, 1], "texture": "#1"}
            },
            "type": "cube"
        },
        {
            "name": "side middle east",
            "from": [8.5, 5, 7.5],
            "to": [9, 5.75, 8.5],
            "faces": {
                "north": {"uv": [0, 0, 0.5, 0.75], "texture": "#1"},
                "east": {"uv": [0, 0, 1, 0.75], "texture": "#1"},
                "south": {"uv": [0, 0, 0.5, 0.75], "texture": "#1"},
                "west": {"uv": [0, 0, 1, 0.75], "texture": "#1"},
                "up": {"uv": [0, 0, 0.5, 1], "texture": "#1"},
                "down": {"uv": [0, 0, 0.5, 1], "texture": "#1"}
            },
            "type": "cube"
        },
        {
            "name": "side middle south",
            "from": [7.5, 5, 7],
            "to": [8.5, 5.75, 7.5],
            "faces": {
                "north": {"uv": [0, 0, 1, 0.75], "texture": "#1"},
                "east": {"uv": [0, 0, 0.5, 0.75], "texture": "#1"},
                "south": {"uv": [0, 0, 1, 0.75], "texture": "#1"},
                "west": {"uv": [0, 0, 0.5, 0.75], "texture": "#1"},
                "up": {"uv": [0, 0, 1, 0.5], "texture": "#1"},
                "down": {"uv": [0, 0, 1, 0.5], "texture": "#1"}
            },
            "type": "cube"
        },
        {
            "name": "side middle east",
            "from": [8.5, 2.5, 7.5],
            "to": [8.75, 3.25, 8.5],
            "faces": {
                "north": {
                    "uv": [0, 0, 0.25, 0.75],
                    "texture": "#0"
                },
                "east": {"uv": [0, 0, 1, 0.75], "texture": "#0"},
                "south": {
                    "uv": [0, 0, 0.25, 0.75],
                    "texture": "#0"
                },
                "west": {"uv": [0, 0, 1, 0.75], "texture": "#0"},
                "up": {"uv": [0, 0, 0.25, 1], "texture": "#0"},
                "down": {"uv": [0, 0, 0.25, 1], "texture": "#0"}
            },
            "type": "cube"
        },
        {
            "name": "side middle east",
            "from": [7.25, 2.5, 7.5],
            "to": [7.5, 3.25, 8.5],
            "faces": {
                "north": {
                    "uv": [0, 0, 0.25, 0.75],
                    "texture": "#0"
                },
                "east": {"uv": [0, 0, 1, 0.75], "texture": "#0"},
                "south": {
                    "uv": [0, 0, 0.25, 0.75],
                    "texture": "#0"
                },
                "west": {"uv": [0, 0, 1, 0.75], "texture": "#0"},
                "up": {"uv": [0, 0, 0.25, 1], "texture": "#0"},
                "down": {"uv": [0, 0, 0.25, 1], "texture": "#0"}
            },
            "type": "cube"
        },
        {
            "name": "side middle south",
            "from": [7.5, 2.5, 8.5],
            "to": [8.5, 3.25, 8.75],
            "faces": {
                "north": {"uv": [0, 0, 1, 0.75], "texture": "#0"},
                "east": {"uv": [0, 0, 0.25, 0.75], "texture": "#0"},
                "south": {"uv": [0, 0, 1, 0.75], "texture": "#0"},
                "west": {"uv": [0, 0, 0.25, 0.75], "texture": "#0"},
                "up": {"uv": [0, 0, 1, 0.25], "texture": "#0"},
                "down": {"uv": [0, 0, 1, 0.25], "texture": "#0"}
            },
            "type": "cube"
        },
        {
            "name": "side middle south",
            "from": [7.5, 2.5, 7.25],
            "to": [8.5, 3.25, 7.5],
            "faces": {
                "north": {"uv": [0, 0, 1, 0.75], "texture": "#0"},
                "east": {"uv": [0, 0, 0.25, 0.75], "texture": "#0"},
                "south": {"uv": [0, 0, 1, 0.75], "texture": "#0"},
                "west": {"uv": [0, 0, 0.25, 0.75], "texture": "#0"},
                "up": {"uv": [0, 0, 1, 0.25], "texture": "#0"},
                "down": {"uv": [0, 0, 1, 0.25], "texture": "#0"}
            },
            "type": "cube"
        },
        {
            "name": "side middle south",
            "from": [7.5, 5.75, 7.25],
            "to": [8.5, 6.5, 7.5],
            "faces": {
                "north": {"uv": [0, 0, 1, 0.75], "texture": "#0"},
                "east": {"uv": [0, 0, 0.25, 0.75], "texture": "#0"},
                "south": {"uv": [0, 0, 1, 0.75], "texture": "#0"},
                "west": {"uv": [0, 0, 0.25, 0.75], "texture": "#0"},
                "up": {"uv": [0, 0, 1, 0.25], "texture": "#0"},
                "down": {"uv": [0, 0, 1, 0.25], "texture": "#0"}
            },
            "type": "cube"
        },
        {
            "name": "side middle east",
            "from": [8.5, 5.75, 7.5],
            "to": [8.75, 6.5, 8.5],
            "faces": {
                "north": {
                    "uv": [0, 0, 0.25, 0.75],
                    "texture": "#0"
                },
                "east": {"uv": [0, 0, 1, 0.75], "texture": "#0"},
                "south": {
                    "uv": [0, 0, 0.25, 0.75],
                    "texture": "#0"
                },
                "west": {"uv": [0, 0, 1, 0.75], "texture": "#0"},
                "up": {"uv": [0, 0, 0.25, 1], "texture": "#0"},
                "down": {"uv": [0, 0, 0.25, 1], "texture": "#0"}
            },
            "type": "cube"
        },
        {
            "name": "side middle south",
            "from": [7.5, 5.75, 8.5],
            "to": [8.5, 6.5, 8.75],
            "faces": {
                "north": {"uv": [0, 0, 1, 0.75], "texture": "#0"},
                "east": {"uv": [0, 0, 0.25, 0.75], "texture": "#0"},
                "south": {"uv": [0, 0, 1, 0.75], "texture": "#0"},
                "west": {"uv": [0, 0, 0.25, 0.75], "texture": "#0"},
                "up": {"uv": [0, 0, 1, 0.25], "texture": "#0"},
                "down": {"uv": [0, 0, 1, 0.25], "texture": "#0"}
            },
            "type": "cube"
        },
        {
            "name": "side middle east",
            "from": [7.25, 5.75, 7.5],
            "to": [7.5, 6.5, 8.5],
            "faces": {
                "north": {
                    "uv": [0, 0, 0.25, 0.75],
                    "texture": "#0"
                },
                "east": {"uv": [0, 0, 1, 0.75], "texture": "#0"},
                "south": {
                    "uv": [0, 0, 0.25, 0.75],
                    "texture": "#0"
                },
                "west": {"uv": [0, 0, 1, 0.75], "texture": "#0"},
                "up": {"uv": [0, 0, 0.25, 1], "texture": "#0"},
                "down": {"uv": [0, 0, 0.25, 1], "texture": "#0"}
            },
            "type": "cube"
        },
        {
            "name": "side middle south",
            "from": [7.5, 3.25, 7],
            "to": [8.5, 4, 7.5],
            "faces": {
                "north": {"uv": [0, 0, 1, 0.75], "texture": "#1"},
                "east": {"uv": [0, 0, 0.5, 0.75], "texture": "#1"},
                "south": {"uv": [0, 0, 1, 0.75], "texture": "#1"},
                "west": {"uv": [0, 0, 0.5, 0.75], "texture": "#1"},
                "up": {"uv": [0, 0, 1, 0.5], "texture": "#1"},
                "down": {"uv": [0, 0, 1, 0.5], "texture": "#1"}
            },
            "type": "cube"
        }
    ],
    "groups": [
        {
            "name": "all",
            "isOpen": true,
            "display": {"visibility": true, "autouv": true},
            "children": [
                {
                    "name": "side bars",
                    "isOpen": false,
                    "display": {"visibility": true, "autouv": true},
                    "children": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11]
                },
                {
                    "name": "top",
                    "isOpen": true,
                    "display": {"visibility": true, "autouv": true},
                    "children": [12, 13, 14]
                },
                {
                    "name": "bottom",
                    "isOpen": true,
                    "display": {"visibility": true, "autouv": true},
                    "children": [15, 16, 17]
                },
                {
                    "name": "_&/3%6-7A",
                    "isOpen": false,
                    "display": {"visibility": true, "autouv": true},
                    "children": [
                        {
                            "name": "group",
                            "isOpen": true,
                            "display": {"visibility": true, "autouv": true},
                            "children": [
                                18,
                                19,
                                20,
                                21,
                                22,
                                23,
                                24,
                                25,
                                26,
                                27,
                                28,
                                29,
                                30,
                                31,
                                32,
                                33,
                                34,
                                35,
                                36,
                                37,
                                38
                            ]
                        }
                    ]
                }
            ]
        }
    ],
    "display": {
        "thirdperson_righthand": {
            "rotation": [18, 45, 0],
            "translation": [0, 3, 0],
            "scale": [0.4, 0.4, 0.4]
        },
        "thirdperson_lefthand": {
            "scale": [0.4, 0.4, 0.4],
            "rotation": [18, 45, 0],
            "translation": [0, 3, 0]
        },
        "gui": {
            "scale": [0.625, 0.625, 0.625],
            "rotation": [30, 225, 0],
            "translation": [0, 0, 0]
        }
    }
}

And this for lantern_wall

Spoiler

{
    "credit": "Made with Blockbench, a free, modern block model editor by JannisX11",
    "textures": {
        "0": "blocks/fire",
        "1": "blocks/fire2",
        "2": "blocks/fire3",
        "3": "blocks/fire4",
        "4": "blocks/lantern",
        "5": "blocks/lantern_2",
        "6": "blocks/lantern_sides",
        "7": "blocks/lantern_hang_ring",
        "particle": "blocks/lantern_2"
    },
    "elements": [
        {
            "name": "cube",
            "from": [6.25, 1.75, 6.000000000000001],
            "to": [6.5, 7.25, 6.250000000000001],
            "faces": {
                "north": {"uv": [0, 0, 0.25, 5.5], "texture": "#6"},
                "east": {"uv": [0, 0, 0.25, 5.5], "texture": "#6"},
                "south": {"uv": [0, 0, 0.25, 5.5], "texture": "#6"},
                "west": {"uv": [0, 0, 0.25, 5.5], "texture": "#6"},
                "up": {"uv": [0, 0, 0.25, 0.25], "texture": "#6"},
                "down": {"uv": [0, 0, 0.25, 0.25], "texture": "#6"}
            },
            "type": "cube"
        },
        {
            "name": "cube",
            "from": [2.75, 1.75, 6.250000000000001],
            "to": [3, 7.25, 6.500000000000001],
            "faces": {
                "north": {"uv": [0, 0, 0.25, 5.5], "texture": "#6"},
                "east": {"uv": [0, 0, 0.25, 5.5], "texture": "#6"},
                "south": {"uv": [0, 0, 0.25, 5.5], "texture": "#6"},
                "west": {"uv": [0, 0, 0.25, 5.5], "texture": "#6"},
                "up": {"uv": [0, 0, 0.25, 0.25], "texture": "#6"},
                "down": {"uv": [0, 0, 0.25, 0.25], "texture": "#6"}
            },
            "type": "cube"
        },
        {
            "name": "cube",
            "from": [6.5, 1.75, 6.250000000000001],
            "to": [6.75, 7.25, 6.500000000000001],
            "faces": {
                "north": {"uv": [0, 0, 0.25, 5.5], "texture": "#6"},
                "east": {"uv": [0, 0, 0.25, 5.5], "texture": "#6"},
                "south": {"uv": [0, 0, 0.25, 5.5], "texture": "#6"},
                "west": {"uv": [0, 0, 0.25, 5.5], "texture": "#6"},
                "up": {"uv": [0, 0, 0.25, 0.25], "texture": "#6"},
                "down": {"uv": [0, 0, 0.25, 0.25], "texture": "#6"}
            },
            "type": "cube"
        },
        {
            "name": "cube",
            "from": [3, 1.75, 6.000000000000001],
            "to": [3.25, 7.25, 6.250000000000001],
            "faces": {
                "north": {"uv": [0, 0, 0.25, 5.5], "texture": "#6"},
                "east": {"uv": [0, 0, 0.25, 5.5], "texture": "#6"},
                "south": {"uv": [0, 0, 0.25, 5.5], "texture": "#6"},
                "west": {"uv": [0, 0, 0.25, 5.5], "texture": "#6"},
                "up": {"uv": [0, 0, 0.25, 0.25], "texture": "#6"},
                "down": {"uv": [0, 0, 0.25, 0.25], "texture": "#6"}
            },
            "type": "cube"
        },
        {
            "name": "cube",
            "from": [6.5, 1.75, 9.5],
            "to": [6.75, 7.25, 9.75],
            "faces": {
                "north": {"uv": [0, 0, 0.25, 5.5], "texture": "#6"},
                "east": {"uv": [0, 0, 0.25, 5.5], "texture": "#6"},
                "south": {"uv": [0, 0, 0.25, 5.5], "texture": "#6"},
                "west": {"uv": [0, 0, 0.25, 5.5], "texture": "#6"},
                "up": {"uv": [0, 0, 0.25, 0.25], "texture": "#6"},
                "down": {"uv": [0, 0, 0.25, 0.25], "texture": "#6"}
            },
            "type": "cube"
        },
        {
            "name": "cube",
            "from": [6.25, 1.75, 9.75],
            "to": [6.5, 7.25, 10],
            "faces": {
                "north": {"uv": [0, 0, 0.25, 5.5], "texture": "#6"},
                "east": {"uv": [0, 0, 0.25, 5.5], "texture": "#6"},
                "south": {"uv": [0, 0, 0.25, 5.5], "texture": "#6"},
                "west": {"uv": [0, 0, 0.25, 5.5], "texture": "#6"},
                "up": {"uv": [0, 0, 0.25, 0.25], "texture": "#6"},
                "down": {"uv": [0, 0, 0.25, 0.25], "texture": "#6"}
            },
            "type": "cube"
        },
        {
            "name": "cube",
            "from": [3, 1.75, 10],
            "to": [3.25, 7.25, 10.25],
            "faces": {
                "north": {"uv": [0, 0, 0.25, 5.5], "texture": "#6"},
                "east": {"uv": [0, 0, 0.25, 5.5], "texture": "#6"},
                "south": {"uv": [0, 0, 0.25, 5.5], "texture": "#6"},
                "west": {"uv": [0, 0, 0.25, 5.5], "texture": "#6"},
                "up": {"uv": [0, 0, 0.25, 0.25], "texture": "#6"},
                "down": {"uv": [0, 0, 0.25, 0.25], "texture": "#6"}
            },
            "type": "cube"
        },
        {
            "name": "cube",
            "from": [2.75, 1.75, 9.75],
            "to": [3, 7.25, 10],
            "faces": {
                "north": {"uv": [0, 0, 0.25, 5.5], "texture": "#6"},
                "east": {"uv": [0, 0, 0.25, 5.5], "texture": "#6"},
                "south": {"uv": [0, 0, 0.25, 5.5], "texture": "#6"},
                "west": {"uv": [0, 0, 0.25, 5.5], "texture": "#6"},
                "up": {"uv": [0, 0, 0.25, 0.25], "texture": "#6"},
                "down": {"uv": [0, 0, 0.25, 0.25], "texture": "#6"}
            },
            "type": "cube"
        },
        {
            "name": "cube",
            "from": [6.5, 1.75, 6.000000000000001],
            "to": [6.75, 7.25, 6.250000000000001],
            "faces": {
                "north": {"uv": [0, 0, 0.25, 5.5], "texture": "#6"},
                "east": {"uv": [0, 0, 0.25, 5.5], "texture": "#6"},
                "south": {"uv": [0, 0, 0.25, 5.5], "texture": "#6"},
                "west": {"uv": [0, 0, 0.25, 5.5], "texture": "#6"},
                "up": {"uv": [0, 0, 0.25, 0.25], "texture": "#6"},
                "down": {"uv": [0, 0, 0.25, 0.25], "texture": "#6"}
            },
            "type": "cube"
        },
        {
            "name": "cube",
            "from": [6.5, 1.75, 9.75],
            "to": [6.75, 7.25, 10],
            "faces": {
                "north": {"uv": [0, 0, 0.25, 5.5], "texture": "#6"},
                "east": {"uv": [0, 0, 0.25, 5.5], "texture": "#6"},
                "south": {"uv": [0, 0, 0.25, 5.5], "texture": "#6"},
                "west": {"uv": [0, 0, 0.25, 5.5], "texture": "#6"},
                "up": {"uv": [0, 0, 0.25, 0.25], "texture": "#6"},
                "down": {"uv": [0, 0, 0.25, 0.25], "texture": "#6"}
            },
            "type": "cube"
        },
        {
            "name": "cube",
            "from": [2.75, 1.75, 10],
            "to": [3, 7.25, 10.25],
            "faces": {
                "north": {"uv": [0, 0, 0.25, 5.5], "texture": "#6"},
                "east": {"uv": [0, 0, 0.25, 5.5], "texture": "#6"},
                "south": {"uv": [0, 0, 0.25, 5.5], "texture": "#6"},
                "west": {"uv": [0, 0, 0.25, 5.5], "texture": "#6"},
                "up": {"uv": [0, 0, 0.25, 0.25], "texture": "#6"},
                "down": {"uv": [0, 0, 0.25, 0.25], "texture": "#6"}
            },
            "type": "cube"
        },
        {
            "name": "cube",
            "from": [2.75, 1.75, 6.000000000000001],
            "to": [3, 7.25, 6.250000000000001],
            "faces": {
                "north": {"uv": [0, 0, 0.25, 5.5], "texture": "#6"},
                "east": {"uv": [0, 0, 0.25, 5.5], "texture": "#6"},
                "south": {"uv": [0, 0, 0.25, 5.5], "texture": "#6"},
                "west": {"uv": [0, 0, 0.25, 5.5], "texture": "#6"},
                "up": {"uv": [0, 0, 0.25, 0.25], "texture": "#6"},
                "down": {"uv": [0, 0, 0.25, 0.25], "texture": "#6"}
            },
            "type": "cube"
        },
        {
            "name": "middle",
            "from": [2.25, 7.75, 5.5],
            "to": [7.25, 8.5, 10.5],
            "faces": {
                "north": {"uv": [0, 0, 5, 0.75], "texture": "#5"},
                "east": {"uv": [0, 0, 5, 0.75], "texture": "#5"},
                "south": {"uv": [0, 0, 5, 0.75], "texture": "#5"},
                "west": {"uv": [0, 0, 5, 0.75], "texture": "#5"},
                "up": {"uv": [0, 0, 5, 5], "texture": "#5"},
                "down": {"uv": [0, 0, 5, 5], "texture": "#5"}
            },
            "type": "cube"
        },
        {
            "name": "top",
            "from": [3.25, 8.5, 6.5],
            "to": [6.25, 9, 9.5],
            "faces": {
                "north": {"uv": [7, 15, 10, 15.5], "texture": "#4"},
                "east": {"uv": [13, 15, 16, 15.5], "texture": "#4"},
                "south": {"uv": [6, 15, 9, 15.5], "texture": "#4"},
                "west": {"uv": [0, 15, 3, 15.5], "texture": "#4"},
                "up": {"uv": [6, 0, 9, 3], "texture": "#4"},
                "down": {"uv": [6, 13, 9, 16], "texture": "#4"}
            },
            "type": "cube"
        },
        {
            "name": "down",
            "from": [1.75, 7.25, 5],
            "to": [7.75, 8, 11],
            "faces": {
                "north": {"uv": [0, 0, 6, 0.75], "texture": "#4"},
                "east": {"uv": [0, 0, 6, 0.75], "texture": "#4"},
                "south": {"uv": [0, 0, 6, 0.75], "texture": "#4"},
                "west": {"uv": [0, 0, 6, 0.75], "texture": "#4"},
                "up": {"uv": [0, 0, 6, 6], "texture": "#4"},
                "down": {"uv": [0, 0, 6, 6], "texture": "#4"}
            },
            "rotation": {
                "origin": [4.25, 11.75, 9.5],
                "axis": "y",
                "angle": 0
            },
            "type": "cube"
        },
        {
            "name": "top",
            "from": [1.75, 1, 5],
            "to": [7.75, 1.75, 11],
            "faces": {
                "north": {"uv": [0, 0, 6, 0.75], "texture": "#4"},
                "east": {"uv": [0, 0, 6, 0.75], "texture": "#4"},
                "south": {"uv": [0, 0, 6, 0.75], "texture": "#4"},
                "west": {"uv": [0, 0, 6, 0.75], "texture": "#4"},
                "up": {"uv": [0, 0, 6, 6], "texture": "#4"},
                "down": {"uv": [0, 0, 6, 6], "texture": "#4"}
            },
            "rotation": {
                "origin": [5.25, 7, 14.5],
                "axis": "y",
                "angle": 0
            },
            "type": "cube"
        },
        {
            "name": "middle",
            "from": [2.25, 0.5, 5.5],
            "to": [7.25, 1, 10.5],
            "faces": {
                "north": {"uv": [0, 0, 5, 0.5], "texture": "#5"},
                "east": {"uv": [0, 0, 5, 0.5], "texture": "#5"},
                "south": {"uv": [0, 0, 5, 0.5], "texture": "#5"},
                "west": {"uv": [0, 0, 5, 0.5], "texture": "#5"},
                "up": {"uv": [0, 0, 5, 5], "texture": "#5"},
                "down": {"uv": [0, 0, 5, 5], "texture": "#5"}
            },
            "type": "cube"
        },
        {
            "name": "down",
            "from": [3.25, 0, 6.5],
            "to": [6.25, 0.5, 9.5],
            "faces": {
                "north": {"uv": [7, 15, 10, 15.5], "texture": "#4"},
                "east": {"uv": [13, 15, 16, 15.5], "texture": "#4"},
                "south": {"uv": [6, 15, 9, 15.5], "texture": "#4"},
                "west": {"uv": [0, 15, 3, 15.5], "texture": "#4"},
                "up": {"uv": [6, 0, 9, 3], "texture": "#4"},
                "down": {"uv": [6, 13, 9, 16], "texture": "#4"}
            },
            "type": "cube"
        },
        {
            "name": "side middle south",
            "from": [4.25, 3.25, 7],
            "to": [5.25, 4, 7.5],
            "faces": {
                "north": {"uv": [0, 0, 1, 0.75], "texture": "#1"},
                "east": {"uv": [0, 0, 0.5, 0.75], "texture": "#1"},
                "south": {"uv": [0, 0, 1, 0.75], "texture": "#1"},
                "west": {"uv": [0, 0, 0.5, 0.75], "texture": "#1"},
                "up": {"uv": [0, 0, 1, 0.5], "texture": "#1"},
                "down": {"uv": [0, 0, 1, 0.5], "texture": "#1"}
            },
            "_loading": false,
            "type": "cube"
        },
        {
            "name": "side middle west",
            "from": [3.5, 4, 7.5],
            "to": [4.25, 5, 8.5],
            "faces": {
                "north": {"uv": [0, 0, 0.75, 1], "texture": "#3"},
                "east": {"uv": [0, 0, 1, 1], "texture": "#3"},
                "south": {"uv": [0, 0, 0.75, 1], "texture": "#3"},
                "west": {"uv": [0, 0, 1, 1], "texture": "#3"},
                "up": {"uv": [0, 0, 0.75, 1], "texture": "#3"},
                "down": {"uv": [0, 0, 0.75, 1], "texture": "#3"}
            },
            "type": "cube"
        },
        {
            "name": "side middle north",
            "from": [4.25, 4, 6.75],
            "to": [5.25, 5, 7.5],
            "faces": {
                "north": {"uv": [0, 0, 1, 1], "texture": "#3"},
                "east": {"uv": [0, 0, 0.75, 1], "texture": "#3"},
                "south": {"uv": [0, 0, 1, 1], "texture": "#3"},
                "west": {"uv": [0, 0, 0.75, 1], "texture": "#3"},
                "up": {"uv": [0, 0, 1, 0.75], "texture": "#3"},
                "down": {"uv": [0, 0, 1, 0.75], "texture": "#3"}
            },
            "type": "cube"
        },
        {
            "name": "side middle south",
            "from": [4.25, 4, 8.5],
            "to": [5.25, 5, 9.25],
            "faces": {
                "north": {"uv": [0, 0, 1, 1], "texture": "#3"},
                "east": {"uv": [0, 0, 0.75, 1], "texture": "#3"},
                "south": {"uv": [0, 0, 1, 1], "texture": "#3"},
                "west": {"uv": [0, 0, 0.75, 1], "texture": "#3"},
                "up": {"uv": [0, 0, 1, 0.75], "texture": "#3"},
                "down": {"uv": [0, 0, 1, 0.75], "texture": "#3"}
            },
            "type": "cube"
        },
        {
            "name": "side middle east",
            "from": [5.25, 4, 7.5],
            "to": [6, 5, 8.5],
            "faces": {
                "north": {"uv": [0, 0, 0.75, 1], "texture": "#3"},
                "east": {"uv": [0, 0, 1, 1], "texture": "#3"},
                "south": {"uv": [0, 0, 0.75, 1], "texture": "#3"},
                "west": {"uv": [0, 0, 1, 1], "texture": "#3"},
                "up": {"uv": [0, 0, 0.75, 1], "texture": "#3"},
                "down": {"uv": [0, 0, 0.75, 1], "texture": "#3"}
            },
            "type": "cube"
        },
        {
            "name": "side middle east",
            "from": [5.25, 3.25, 7.5],
            "to": [5.75, 4, 8.5],
            "faces": {
                "north": {"uv": [0, 0, 0.5, 0.75], "texture": "#1"},
                "east": {"uv": [0, 0, 1, 0.75], "texture": "#1"},
                "south": {"uv": [0, 0, 0.5, 0.75], "texture": "#1"},
                "west": {"uv": [0, 0, 1, 0.75], "texture": "#1"},
                "up": {"uv": [0, 0, 0.5, 1], "texture": "#1"},
                "down": {"uv": [0, 0, 0.5, 1], "texture": "#1"}
            },
            "type": "cube"
        },
        {
            "name": "side middle south",
            "from": [4.25, 3.25, 8.5],
            "to": [5.25, 4, 9],
            "faces": {
                "north": {"uv": [0, 0, 1, 0.75], "texture": "#1"},
                "east": {"uv": [0, 0, 0.5, 0.75], "texture": "#1"},
                "south": {"uv": [0, 0, 1, 0.75], "texture": "#1"},
                "west": {"uv": [0, 0, 0.5, 0.75], "texture": "#1"},
                "up": {"uv": [0, 0, 1, 0.5], "texture": "#1"},
                "down": {"uv": [0, 0, 1, 0.5], "texture": "#1"}
            },
            "type": "cube"
        },
        {
            "name": "side middle west",
            "from": [3.75, 3.25, 7.5],
            "to": [4.25, 4, 8.5],
            "faces": {
                "north": {"uv": [0, 0, 0.5, 0.75], "texture": "#1"},
                "east": {"uv": [0, 0, 1, 0.75], "texture": "#1"},
                "south": {"uv": [0, 0, 0.5, 0.75], "texture": "#1"},
                "west": {"uv": [0, 0, 1, 0.75], "texture": "#1"},
                "up": {"uv": [0, 0, 0.5, 1], "texture": "#1"},
                "down": {"uv": [0, 0, 0.5, 1], "texture": "#1"}
            },
            "type": "cube"
        },
        {
            "name": "side middle south",
            "from": [4.25, 5, 8.5],
            "to": [5.25, 5.75, 9],
            "faces": {
                "north": {"uv": [0, 0, 1, 0.75], "texture": "#1"},
                "east": {"uv": [0, 0, 0.5, 0.75], "texture": "#1"},
                "south": {"uv": [0, 0, 1, 0.75], "texture": "#1"},
                "west": {"uv": [0, 0, 0.5, 0.75], "texture": "#1"},
                "up": {"uv": [0, 0, 1, 0.5], "texture": "#1"},
                "down": {"uv": [0, 0, 1, 0.5], "texture": "#1"}
            },
            "type": "cube"
        },
        {
            "name": "side middle west",
            "from": [3.75, 5, 7.5],
            "to": [4.25, 5.75, 8.5],
            "faces": {
                "north": {"uv": [0, 0, 0.5, 0.75], "texture": "#1"},
                "east": {"uv": [0, 0, 1, 0.75], "texture": "#1"},
                "south": {"uv": [0, 0, 0.5, 0.75], "texture": "#1"},
                "west": {"uv": [0, 0, 1, 0.75], "texture": "#1"},
                "up": {"uv": [0, 0, 0.5, 1], "texture": "#1"},
                "down": {"uv": [0, 0, 0.5, 1], "texture": "#1"}
            },
            "type": "cube"
        },
        {
            "name": "side middle east",
            "from": [5.25, 5, 7.5],
            "to": [5.75, 5.75, 8.5],
            "faces": {
                "north": {"uv": [0, 0, 0.5, 0.75], "texture": "#1"},
                "east": {"uv": [0, 0, 1, 0.75], "texture": "#1"},
                "south": {"uv": [0, 0, 0.5, 0.75], "texture": "#1"},
                "west": {"uv": [0, 0, 1, 0.75], "texture": "#1"},
                "up": {"uv": [0, 0, 0.5, 1], "texture": "#1"},
                "down": {"uv": [0, 0, 0.5, 1], "texture": "#1"}
            },
            "type": "cube"
        },
        {
            "name": "side middle south",
            "from": [4.25, 5, 7],
            "to": [5.25, 5.75, 7.5],
            "faces": {
                "north": {"uv": [0, 0, 1, 0.75], "texture": "#1"},
                "east": {"uv": [0, 0, 0.5, 0.75], "texture": "#1"},
                "south": {"uv": [0, 0, 1, 0.75], "texture": "#1"},
                "west": {"uv": [0, 0, 0.5, 0.75], "texture": "#1"},
                "up": {"uv": [0, 0, 1, 0.5], "texture": "#1"},
                "down": {"uv": [0, 0, 1, 0.5], "texture": "#1"}
            },
            "type": "cube"
        },
        {
            "name": "side middle east",
            "from": [5.25, 2.5, 7.5],
            "to": [5.5, 3.25, 8.5],
            "faces": {
                "north": {
                    "uv": [0, 0, 0.25, 0.75],
                    "texture": "#0"
                },
                "east": {"uv": [0, 0, 1, 0.75], "texture": "#0"},
                "south": {
                    "uv": [0, 0, 0.25, 0.75],
                    "texture": "#0"
                },
                "west": {"uv": [0, 0, 1, 0.75], "texture": "#0"},
                "up": {"uv": [0, 0, 0.25, 1], "texture": "#0"},
                "down": {"uv": [0, 0, 0.25, 1], "texture": "#0"}
            },
            "type": "cube"
        },
        {
            "name": "side middle east",
            "from": [4, 2.5, 7.5],
            "to": [4.25, 3.25, 8.5],
            "faces": {
                "north": {
                    "uv": [0, 0, 0.25, 0.75],
                    "texture": "#0"
                },
                "east": {"uv": [0, 0, 1, 0.75], "texture": "#0"},
                "south": {
                    "uv": [0, 0, 0.25, 0.75],
                    "texture": "#0"
                },
                "west": {"uv": [0, 0, 1, 0.75], "texture": "#0"},
                "up": {"uv": [0, 0, 0.25, 1], "texture": "#0"},
                "down": {"uv": [0, 0, 0.25, 1], "texture": "#0"}
            },
            "type": "cube"
        },
        {
            "name": "side middle south",
            "from": [4.25, 2.5, 8.5],
            "to": [5.25, 3.25, 8.75],
            "faces": {
                "north": {"uv": [0, 0, 1, 0.75], "texture": "#0"},
                "east": {"uv": [0, 0, 0.25, 0.75], "texture": "#0"},
                "south": {"uv": [0, 0, 1, 0.75], "texture": "#0"},
                "west": {"uv": [0, 0, 0.25, 0.75], "texture": "#0"},
                "up": {"uv": [0, 0, 1, 0.25], "texture": "#0"},
                "down": {"uv": [0, 0, 1, 0.25], "texture": "#0"}
            },
            "type": "cube"
        },
        {
            "name": "side middle south",
            "from": [4.25, 2.5, 7.25],
            "to": [5.25, 3.25, 7.5],
            "faces": {
                "north": {"uv": [0, 0, 1, 0.75], "texture": "#0"},
                "east": {"uv": [0, 0, 0.25, 0.75], "texture": "#0"},
                "south": {"uv": [0, 0, 1, 0.75], "texture": "#0"},
                "west": {"uv": [0, 0, 0.25, 0.75], "texture": "#0"},
                "up": {"uv": [0, 0, 1, 0.25], "texture": "#0"},
                "down": {"uv": [0, 0, 1, 0.25], "texture": "#0"}
            },
            "type": "cube"
        },
        {
            "name": "side middle south",
            "from": [4.25, 5.75, 7.25],
            "to": [5.25, 6.5, 7.5],
            "faces": {
                "north": {"uv": [0, 0, 1, 0.75], "texture": "#0"},
                "east": {"uv": [0, 0, 0.25, 0.75], "texture": "#0"},
                "south": {"uv": [0, 0, 1, 0.75], "texture": "#0"},
                "west": {"uv": [0, 0, 0.25, 0.75], "texture": "#0"},
                "up": {"uv": [0, 0, 1, 0.25], "texture": "#0"},
                "down": {"uv": [0, 0, 1, 0.25], "texture": "#0"}
            },
            "type": "cube"
        },
        {
            "name": "side middle east",
            "from": [5.25, 5.75, 7.5],
            "to": [5.5, 6.5, 8.5],
            "faces": {
                "north": {
                    "uv": [0, 0, 0.25, 0.75],
                    "texture": "#0"
                },
                "east": {"uv": [0, 0, 1, 0.75], "texture": "#0"},
                "south": {
                    "uv": [0, 0, 0.25, 0.75],
                    "texture": "#0"
                },
                "west": {"uv": [0, 0, 1, 0.75], "texture": "#0"},
                "up": {"uv": [0, 0, 0.25, 1], "texture": "#0"},
                "down": {"uv": [0, 0, 0.25, 1], "texture": "#0"}
            },
            "type": "cube"
        },
        {
            "name": "side middle south",
            "from": [4.25, 5.75, 8.5],
            "to": [5.25, 6.5, 8.75],
            "faces": {
                "north": {"uv": [0, 0, 1, 0.75], "texture": "#0"},
                "east": {"uv": [0, 0, 0.25, 0.75], "texture": "#0"},
                "south": {"uv": [0, 0, 1, 0.75], "texture": "#0"},
                "west": {"uv": [0, 0, 0.25, 0.75], "texture": "#0"},
                "up": {"uv": [0, 0, 1, 0.25], "texture": "#0"},
                "down": {"uv": [0, 0, 1, 0.25], "texture": "#0"}
            },
            "type": "cube"
        },
        {
            "name": "side middle east",
            "from": [4, 5.75, 7.5],
            "to": [4.25, 6.5, 8.5],
            "faces": {
                "north": {
                    "uv": [0, 0, 0.25, 0.75],
                    "texture": "#0"
                },
                "east": {"uv": [0, 0, 1, 0.75], "texture": "#0"},
                "south": {
                    "uv": [0, 0, 0.25, 0.75],
                    "texture": "#0"
                },
                "west": {"uv": [0, 0, 1, 0.75], "texture": "#0"},
                "up": {"uv": [0, 0, 0.25, 1], "texture": "#0"},
                "down": {"uv": [0, 0, 0.25, 1], "texture": "#0"}
            },
            "type": "cube"
        },
        {
            "name": "main bar",
            "from": [4.25, 1.75, 7.5],
            "to": [5.25, 7.25, 8.5],
            "faces": {
                "north": {"uv": [0, 0, 1, 5.5], "texture": "#2"},
                "east": {"uv": [0, 0, 1, 5.5], "texture": "#2"},
                "south": {"uv": [0, 0, 1, 5.5], "texture": "#2"},
                "west": {"uv": [0, 0, 1, 5.5], "texture": "#2"},
                "up": {"uv": [0, 0, 1, 1], "texture": "#2"},
                "down": {"uv": [0, 0, 1, 1], "texture": "#2"}
            },
            "type": "cube"
        },
        {
            "name": "bottom",
            "from": [0, 10.5, 6.5],
            "to": [0.5, 11, 9.5],
            "faces": {
                "north": {"uv": [0, 0, 0.5, 0.5], "texture": "#4"},
                "east": {"uv": [0, 0, 3, 0.5], "texture": "#4"},
                "south": {"uv": [0, 0, 0.5, 0.5], "texture": "#4"},
                "west": {"uv": [0, 0, 3, 0.5], "texture": "#4"},
                "up": {"uv": [0, 0, 0.5, 3], "texture": "#4"},
                "down": {"uv": [0, 0, 0.5, 3], "texture": "#4"}
            },
            "type": "cube"
        },
        {
            "name": "top",
            "from": [0, 13, 6.5],
            "to": [0.5, 13.5, 9.5],
            "faces": {
                "north": {"uv": [0, 0, 0.5, 0.5], "texture": "#4"},
                "east": {"uv": [0, 0, 3, 0.5], "texture": "#4"},
                "south": {"uv": [0, 0, 0.5, 0.5], "texture": "#4"},
                "west": {"uv": [0, 0, 3, 0.5], "texture": "#4"},
                "up": {"uv": [0, 0, 0.5, 3], "texture": "#4"},
                "down": {"uv": [0, 0, 0.5, 3], "texture": "#4"}
            },
            "type": "cube"
        },
        {
            "name": "right",
            "from": [0, 11, 6.5],
            "to": [0.5, 13, 7],
            "faces": {
                "north": {"uv": [0, 0, 0.5, 2], "texture": "#4"},
                "east": {"uv": [0, 0, 0.5, 2], "texture": "#4"},
                "south": {"uv": [0, 0, 0.5, 2], "texture": "#4"},
                "west": {"uv": [0, 0, 0.5, 2], "texture": "#4"},
                "up": {"uv": [0, 0, 0.5, 0.5], "texture": "#4"},
                "down": {"uv": [0, 0, 0.5, 0.5], "texture": "#4"}
            },
            "type": "cube"
        },
        {
            "name": "left",
            "from": [0, 11, 9],
            "to": [0.5, 13, 9.5],
            "faces": {
                "north": {"uv": [0, 0, 0.5, 2], "texture": "#4"},
                "east": {"uv": [0, 0, 0.5, 2], "texture": "#4"},
                "south": {"uv": [0, 0, 0.5, 2], "texture": "#4"},
                "west": {"uv": [0, 0, 0.5, 2], "texture": "#4"},
                "up": {"uv": [0, 0, 0.5, 0.5], "texture": "#4"},
                "down": {"uv": [0, 0, 0.5, 0.5], "texture": "#4"}
            },
            "type": "cube"
        },
        {
            "name": "cube",
            "from": [0, 8, 7],
            "to": [0.5, 10, 9],
            "faces": {
                "north": {"uv": [0, 0, 0.5, 2], "texture": "#7"},
                "east": {"uv": [0, 0, 2, 2], "texture": "#7"},
                "south": {"uv": [0, 0, 0.5, 2], "texture": "#7"},
                "west": {"uv": [0, 0, 2, 2], "texture": "#7"},
                "up": {"uv": [0, 0, 0.5, 2], "texture": "#7"},
                "down": {"uv": [0, 0, 0.5, 2], "texture": "#7"}
            },
            "rotation": {
                "origin": [8, 5, 8],
                "axis": "z",
                "angle": -22.5
            },
            "type": "cube"
        },
        {
            "name": "cube",
            "from": [-1.2499999999999996, 5.75, 7],
            "to": [-0.7499999999999996, 7.75, 9],
            "faces": {
                "north": {"uv": [0, 0, 0.5, 2], "texture": "#7"},
                "east": {"uv": [0, 0, 2, 2], "texture": "#7"},
                "south": {"uv": [0, 0, 0.5, 2], "texture": "#7"},
                "west": {"uv": [0, 0, 2, 2], "texture": "#7"},
                "up": {"uv": [0, 0, 0.5, 2], "texture": "#7"},
                "down": {"uv": [0, 0, 0.5, 2], "texture": "#7"}
            },
            "rotation": {
                "origin": [6.25, 2.75, 8],
                "axis": "z",
                "angle": -45
            },
            "type": "cube"
        },
        {
            "name": "cube",
            "from": [3.75, 9, 7],
            "to": [5.75, 9.25, 9],
            "faces": {
                "north": {"uv": [0, 0, 2, 0.25], "texture": "#7"},
                "east": {"uv": [0, 0, 2, 0.25], "texture": "#7"},
                "south": {"uv": [0, 0, 2, 0.25], "texture": "#7"},
                "west": {"uv": [0, 0, 2, 0.25], "texture": "#7"},
                "up": {"uv": [0, 0, 2, 2], "texture": "#7"},
                "down": {"uv": [0, 0, 2, 2], "texture": "#7"}
            },
            "type": "cube"
        }
    ],
    "groups": [
        {
            "name": "all",
            "isOpen": true,
            "display": {"visibility": true, "autouv": true},
            "children": [
                {
                    "name": "side bars",
                    "isOpen": true,
                    "display": {"visibility": true, "autouv": true},
                    "children": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11]
                },
                {
                    "name": "top",
                    "isOpen": true,
                    "display": {"visibility": true, "autouv": true},
                    "children": [12, 13, 14]
                },
                {
                    "name": "bottom",
                    "isOpen": true,
                    "display": {"visibility": true, "autouv": true},
                    "children": [15, 16, 17]
                },
                {
                    "name": "_&/3%6-7A",
                    "isOpen": true,
                    "display": {"visibility": true, "autouv": true},
                    "children": [
                        18,
                        19,
                        20,
                        21,
                        22,
                        23,
                        24,
                        25,
                        26,
                        27,
                        28,
                        29,
                        30,
                        31,
                        32,
                        33,
                        34,
                        35,
                        36,
                        37,
                        38
                    ]
                },
                {
                    "name": "overhang",
                    "isOpen": true,
                    "display": {"visibility": true, "autouv": true},
                    "children": [39, 40, 41, 42, 43, 44, 45]
                }
            ]
        }
    ],
    "display": {
        "thirdperson_righthand": {
            "rotation": [18, 45, 0],
            "translation": [0, 3, 0],
            "scale": [0.4, 0.4, 0.4]
        },
        "thirdperson_lefthand": {
            "scale": [0.4, 0.4, 0.4],
            "rotation": [18, 45, 0],
            "translation": [0, 3, 0]
        },
        "gui": {
            "scale": [0.625, 0.625, 0.625],
            "rotation": [30, 225, 0],
            "translation": [0, 0, 0]
        }
    }
}

even enumfacing is working fine, but the models are not

this is how they look:2018-02-20_15_34_59.thumb.png.3d24f334633f9691f2ac74dc735e49ce.png2018-02-20_15_35_15.thumb.png.b66e2ecc7c249ebb78f7af51fae324b8.png

 

The model was working fine before i tried to add the torch functionality. Then it has stayed broken, even though i reverted all my changes. Hope this was enough.

Posted

Your blockstate doesn't have a modid for the model locations and your lantern_wall model doesn't have modids for the texture locations.

 

Also, in your normal lantern model, there's no reason to mask your modid with (modid). It only makes it harder for us to help you (e.g. spot typos).

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

 

1.12 -> 1.13 primer by williewillus.

 

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

 

http://www.howoldisminecraft1710.today/

Posted

sorry. i don't know what i was thinking when i masked my modid because it is visible throughout the other files.:PxD

and yes i noticed after i posted that the modid was missing. i'll  change that and update you guys

Posted

Hi. So I Put in the modid but it is still not working. The texture is still as it was. I think it has something to do with me copying the code from BlockTorch.java . Any help is greatly appriciated. :)

Posted

These type of errors are usually do to typos. So the only way we can debug is for you to post your EXACT code. If you've edited it for modid then please re-post it.

 

Otherwise, are there errors in your console? Is it complaining about a missing model, a missing model for a variant, or a missing texture? Or does it complain about a malformed JSON?

 

Also, I noticed your model has a lot of cubes with repeated names. I'm not sure but maybe they need to be unique -- I know in the past tools like Techne would complain if you have duplicate names.

Check out my tutorials here: http://jabelarminecraft.blogspot.com/

Posted

it does not matter if you have cubes with same name, feom my ecperience. I actually have not looked at the console but i was also thinking that it must be something with the model. I thinkthe game is searching for the model in minecraft's models folder rather than mine. The items could be showing up because the parent is set to my model. I'll change the cubes and check the console and report back.

Posted

hi. so i looked at the console and it says:

 

Caused by: net.minecraftforge.client.model.ModelLoaderRegistry$LoaderException: Exception loading model minecraft:block/lantern with loader VanillaLoader.INSTANCE, skipping

 

so i checked my blockstates file and found that i had not put the modid. actually i had put the modid there, but then the next day i replaced all of my lantern's files from local history, so it is now working :).

 

I am trying things to make my block placeable under blocks, unlike torches. will update real soon

Posted

and i did it! it is literally 5 seconds after i posted the last comment and i did it!

 

I replaced 

On 2/20/2018 at 4:45 PM, Spacejet said:

public static final PropertyDirection FACING = PropertyDirection.create("facing", new Predicate<EnumFacing>()
    {
        public boolean apply(@Nullable EnumFacing p_apply_1_)
        {
            return p_apply_1_ != EnumFacing.DOWN;
        }
    });

with

public static final PropertyDirection FACING = BlockDirectional.FACING;

 

and added

 

 
        else if (facing.equals(EnumFacing.DOWN))
        {
            return true;

        {

 

to 

 

On 2/20/2018 at 4:45 PM, Spacejet said:

private boolean canPlaceAt(World worldIn, BlockPos pos, EnumFacing facing)
    {
        BlockPos blockpos = pos.offset(facing.getOpposite());
        IBlockState iblockstate = worldIn.getBlockState(blockpos);
        Block block = iblockstate.getBlock();
        BlockFaceShape blockfaceshape = iblockstate.getBlockFaceShape(worldIn, blockpos, facing);

        if (facing.equals(EnumFacing.UP) && this.canPlaceOn(worldIn, blockpos))
        {
            return true;
        }
        else if (facing != EnumFacing.UP && facing != EnumFacing.DOWN)
        {
            return !isExceptBlockForAttachWithPiston(block) && blockfaceshape == BlockFaceShape.SOLID;
        }
        else
        {
            return false;
        }
    }

 

right below 

 

else if (facing != EnumFacing.UP && facing != EnumFacing.DOWN)
        {
            return !isExceptBlockForAttachWithPiston(block) && blockfaceshape == BlockFaceShape.SOLID;
        }

here is the whole code for anyone in trouble like me:P

Spoiler

package com.spacejet.starwars.blocks;

import java.util.Random;

import javax.annotation.Nullable;

import com.google.common.base.Predicate;

import net.minecraft.block.Block;
import net.minecraft.block.BlockDirectional;
import net.minecraft.block.material.Material;
import net.minecraft.block.properties.IProperty;
import net.minecraft.block.properties.PropertyDirection;
import net.minecraft.block.state.BlockFaceShape;
import net.minecraft.block.state.BlockStateContainer;
import net.minecraft.block.state.IBlockState;
import net.minecraft.creativetab.CreativeTabs;
import net.minecraft.entity.EntityLivingBase;
import net.minecraft.util.BlockRenderLayer;
import net.minecraft.util.EnumFacing;
import net.minecraft.util.EnumParticleTypes;
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.world.IBlockAccess;
import net.minecraft.world.World;
import net.minecraftforge.fml.relauncher.Side;
import net.minecraftforge.fml.relauncher.SideOnly;

public class Lantern extends BlockBase{
    
    public static final PropertyDirection FACING = BlockDirectional.FACING;
   
    
    public static final AxisAlignedBB LANTERN_BB = new AxisAlignedBB(0.3125D, 0, 0.3125D, 0.6875D, 0.555D,0.6875D);
    public static final AxisAlignedBB LANTERN_WALL_BB = new AxisAlignedBB(0.3125D, 0, 0.3125D, 0.6875D, 0.555D,0.6875D);
    public static final AxisAlignedBB LANTERN_CELI_BB = new AxisAlignedBB(0.3125D, 0, 0.3125D, 0.6875D, 0.555D,0.6875D);

    public Lantern(String name, Material material) {
        super(name, material);
        setLightLevel(1.0f);
        setResistance(8.0f);
        setHardness(3.0f);
        setCreativeTab(CreativeTabs.DECORATIONS);
    }
    
    @Override
    public boolean isOpaqueCube(IBlockState state) {
        return false;
    }
    
    @Override
    public boolean isFullCube(IBlockState state) {
        return false;
    }
    
    public AxisAlignedBB getBoundingBox(IBlockState state, IBlockAccess source, BlockPos pos)
    {
        switch ((EnumFacing)state.getValue(FACING))
        {
            case EAST:
                return LANTERN_WALL_BB;
            case WEST:
                return LANTERN_WALL_BB;
            case SOUTH:
                return LANTERN_WALL_BB;
            case NORTH:
                return LANTERN_WALL_BB;
            case DOWN:
                return LANTERN_CELI_BB;    
            case UP:
            default:
                return LANTERN_BB;
        }
    }
    
    @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
     */
   

    private boolean canPlaceOn(World worldIn, BlockPos pos)
    {
        IBlockState state = worldIn.getBlockState(pos);
        return state.getBlock().canPlaceTorchOnTop(state, worldIn, pos);
    }

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

        return false;
    }

    private boolean canPlaceAt(World worldIn, BlockPos pos, EnumFacing facing)
    {
        BlockPos blockpos = pos.offset(facing.getOpposite());
        IBlockState iblockstate = worldIn.getBlockState(blockpos);
        Block block = iblockstate.getBlock();
        BlockFaceShape blockfaceshape = iblockstate.getBlockFaceShape(worldIn, blockpos, facing);

        if (facing.equals(EnumFacing.UP) && this.canPlaceOn(worldIn, blockpos))
        {
            return true;
        }
        else if (facing != EnumFacing.UP && facing != EnumFacing.DOWN)
        {
            return !isExceptBlockForAttachWithPiston(block) && blockfaceshape == BlockFaceShape.SOLID;
        }
        else if (facing.equals(EnumFacing.DOWN))
        {
            return true;
        }
        else
        {
            return false;
        }
    }

    /**
     * Called by ItemBlocks just before a block is actually set in the world, to allow for adjustments to the
     * IBlockstate
     */
    public IBlockState getStateForPlacement(World worldIn, BlockPos pos, EnumFacing facing, float hitX, float hitY, float hitZ, int meta, EntityLivingBase placer)
    {
        if (this.canPlaceAt(worldIn, pos, facing))
        {
            return this.getDefaultState().withProperty(FACING, facing);
        }
        else
        {
            for (EnumFacing enumfacing : EnumFacing.Plane.HORIZONTAL)
            {
                if (this.canPlaceAt(worldIn, pos, enumfacing))
                {
                    return this.getDefaultState().withProperty(FACING, enumfacing);
                }
            }

            return this.getDefaultState();
        }
    }

    /**
     * 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)
    {
        this.checkForDrop(worldIn, pos, state);
    }

    /**
     * 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)
    {
        this.onNeighborChangeInternal(worldIn, pos, state);
    }

    protected boolean onNeighborChangeInternal(World worldIn, BlockPos pos, IBlockState state)
    {
        if (!this.checkForDrop(worldIn, pos, state))
        {
            return true;
        }
        else
        {
            EnumFacing enumfacing = (EnumFacing)state.getValue(FACING);
            EnumFacing.Axis enumfacing$axis = enumfacing.getAxis();
            EnumFacing enumfacing1 = enumfacing.getOpposite();
            BlockPos blockpos = pos.offset(enumfacing1);
            boolean flag = false;

            if (enumfacing$axis.isHorizontal() && worldIn.getBlockState(blockpos).getBlockFaceShape(worldIn, blockpos, enumfacing) != BlockFaceShape.SOLID)
            {
                flag = true;
            }
            else if (enumfacing$axis.isVertical() && !this.canPlaceOn(worldIn, blockpos))
            {
                flag = true;
            }

            if (flag)
            {
                this.dropBlockAsItem(worldIn, pos, state, 0);
                worldIn.setBlockToAir(pos);
                return true;
            }
            else
            {
                return false;
            }
        }
    }

    protected boolean checkForDrop(World worldIn, BlockPos pos, IBlockState state)
    {
        if (state.getBlock() == this && this.canPlaceAt(worldIn, pos, (EnumFacing)state.getValue(FACING)))
        {
            return true;
        }
        else
        {
            if (worldIn.getBlockState(pos).getBlock() == this)
            {
                this.dropBlockAsItem(worldIn, pos, state, 0);
                worldIn.setBlockToAir(pos);
            }

            return false;
        }
    }

    @SideOnly(Side.CLIENT)
    public void randomDisplayTick(IBlockState stateIn, World worldIn, BlockPos pos, Random rand)
    {
        EnumFacing enumfacing = (EnumFacing)stateIn.getValue(FACING);
        double d0 = (double)pos.getX() + 0.5D;
        double d1 = (double)pos.getY() + 0.7D;
        double d2 = (double)pos.getZ() + 0.5D;
        double d3 = 0.22D;
        double d4 = 0.27D;

        if (enumfacing.getAxis().isHorizontal())
        {
            EnumFacing enumfacing1 = enumfacing.getOpposite();
            worldIn.spawnParticle(EnumParticleTypes.SMOKE_NORMAL, d0 + 0.27D * (double)enumfacing1.getFrontOffsetX(), d1 + 0.22D, d2 + 0.27D * (double)enumfacing1.getFrontOffsetZ(), 0.0D, 0.0D, 0.0D);
            worldIn.spawnParticle(EnumParticleTypes.FLAME, d0 + 0.27D * (double)enumfacing1.getFrontOffsetX(), d1 + 0.22D, d2 + 0.27D * (double)enumfacing1.getFrontOffsetZ(), 0.0D, 0.0D, 0.0D);
        }
        else
        {
            worldIn.spawnParticle(EnumParticleTypes.SMOKE_NORMAL, d0, d1, d2, 0.0D, 0.0D, 0.0D);
            worldIn.spawnParticle(EnumParticleTypes.FLAME, d0, d1, d2, 0.0D, 0.0D, 0.0D);
        }
    }

    /**
     * Convert the given metadata into a BlockState for this Block
     */
    public IBlockState getStateFromMeta(int meta)
    {
        IBlockState iblockstate = this.getDefaultState();

        switch (meta)
        {
            case 1:
                iblockstate = iblockstate.withProperty(FACING, EnumFacing.EAST);
                break;
            case 2:
                iblockstate = iblockstate.withProperty(FACING, EnumFacing.WEST);
                break;
            case 3:
                iblockstate = iblockstate.withProperty(FACING, EnumFacing.SOUTH);
                break;
            case 4:
                iblockstate = iblockstate.withProperty(FACING, EnumFacing.NORTH);
                break;
            case 5:
                iblockstate = iblockstate.withProperty(FACING, EnumFacing.DOWN);
                break;
            case 6:    
            default:
                iblockstate = iblockstate.withProperty(FACING, EnumFacing.UP);
        }

        return iblockstate;
    }

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

    /**
     * Convert the BlockState into the correct metadata value
     */
    public int getMetaFromState(IBlockState state)
    {
        int i = 0;

        switch ((EnumFacing)state.getValue(FACING))
        {
            case EAST:
                i = i | 1;
                break;
            case WEST:
                i = i | 2;
                break;
            case SOUTH:
                i = i | 3;
                break;
            case NORTH:
                i = i | 4;
                break;
            case DOWN:
                i = i | 5;
                break;
            case UP:
            default:
                i = i | 6;
        }

        return i;
    }

    /**
     * Returns the blockstate with the given rotation from the passed blockstate. If inapplicable, returns the passed
     * blockstate.
     */
    public IBlockState withRotation(IBlockState state, Rotation rot)
    {
        return state.withProperty(FACING, rot.rotate((EnumFacing)state.getValue(FACING)));
    }

    /**
     * Returns the blockstate with the given mirror of the passed blockstate. If inapplicable, returns the passed
     * blockstate.
     */
    public IBlockState withMirror(IBlockState state, Mirror mirrorIn)
    {
        return state.withRotation(mirrorIn.toRotation((EnumFacing)state.getValue(FACING)));
    }

    protected BlockStateContainer createBlockState()
    {
        return new BlockStateContainer(this, new IProperty[] {FACING});
    }

    /**
     * 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;
    }
}
 

i have not set the correct values for axisalignedbb yet, but you wont need it anyway. the rotation was possible due to draco18s. Thanks a lot. in a different thread, he said

On 11/1/2017 at 0:31 PM, Draco18s said:

2) Dispensers don't use horizontal facing, they use omnidirectional facing: that is, they can face UP and DOWN too.

so i went to blockdispenser.java and got BlockDirectional.FACING;

 

Thanks a lot everybody. This means a lot to me!

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

    • https://paste.ee/e/LCimXJdh/0   Using the TechnicLauncher and the official Pixelmon Reforged modpack. Only thing I changed was added Litematica and MaLiLib to it. Everytime I leave a server it crashes.
    • Extra virgin olive oil, not like regular oil, isn't always constantly processed thoroughly, so it keeps extra nutrients, antioxidants and nutrients that are important for our frame. Does olive oil reduce cholesterol  and guide heart health? Its normal consumption can reduce the risk of cardiovascular ailment because of the excess content of monounsaturated fats.
    • I've been playing on this single player modded world for about a month probably it's been working perfectly fine until this morning when i was playing, it crashed and said "invalid player id"  since this every subsequent attempt to rejoin the world results in that. all the other worlds i've made are still playable and i can create new worlds as well and they play fine. this is the latest [08:55:51] [main/INFO]: ModLauncher running: args [--username, Callousedbeans, --version, forge-47.3.0, --gameDir, C:\Users\14313\curseforge\minecraft\Instances\Cobblemon, --assetsDir, C:\Users\14313\curseforge\minecraft\Install\assets, --assetIndex, 5, --uuid, 8006a7731afc4cdcb0a5c5f57edf6e02, --accessToken, ????????, --clientId, MzM4ZGY1MTYtZTAzOC00OTQ3LWEwMjktMjRlZDMwM2I4NGZi, --xuid, 2535451237089590, --userType, msa, --versionType, release, --width, 854, --height, 480, --quickPlayPath, C:\Users\14313\curseforge\minecraft\Install\quickPlay\java\1736952947979.json, --launchTarget, forgeclient, --fml.forgeVersion, 47.3.0, --fml.mcVersion, 1.20.1, --fml.forgeGroup, net.minecraftforge, --fml.mcpVersion, 20230612.114412] [08:55:51] [main/INFO]: ModLauncher 10.0.9+10.0.9+main.dcd20f30 starting: java version 17.0.8 by Microsoft; OS Windows 10 arch amd64 version 10.0 [08:55:53] [main/INFO]: Loading ImmediateWindowProvider fmlearlywindow [08:55:53] [main/INFO]: Trying GL version 4.6 [08:55:53] [main/INFO]: Requested GL version 4.6 got version 4.6 [08:55:54] [main/INFO]: SpongePowered MIXIN Subsystem Version=0.8.5 Source=union:/C:/Users/14313/curseforge/minecraft/Install/libraries/org/spongepowered/mixin/0.8.5/mixin-0.8.5.jar%23100!/ Service=ModLauncher Env=CLIENT [08:55:54] [pool-2-thread-1/INFO]: GL info: Intel(R) UHD Graphics GL version 4.6.0 - Build 27.20.100.8476, Intel [08:55:54] [main/INFO]: Found mod file AdditionalStructures-1.20.x-(v.4.2.2).jar of type MOD with provider {mods folder locator at C:\Users\14313\curseforge\minecraft\Instances\Cobblemon\mods} [08:55:54] [main/INFO]: Found mod file amendments-1.20-1.2.14.jar of type MOD with provider {mods folder locator at C:\Users\14313\curseforge\minecraft\Instances\Cobblemon\mods} [08:55:54] [main/INFO]: Found mod file BiomesOPlenty-1.20.1-18.0.0.592.jar of type MOD with provider {mods folder locator at C:\Users\14313\curseforge\minecraft\Instances\Cobblemon\mods} [08:55:54] [main/INFO]: Found mod file cobbledex-1.20.1-forge-1.1.0.jar of type MOD with provider {mods folder locator at C:\Users\14313\curseforge\minecraft\Instances\Cobblemon\mods} [08:55:54] [main/INFO]: Found mod file Cobblemon O' Plenty 1.20.1 B.2.0.jar of type MOD with provider {mods folder locator at C:\Users\14313\curseforge\minecraft\Instances\Cobblemon\mods} [08:55:54] [main/INFO]: Found mod file cobblemon-counter-1.5-forge-1.2.0.jar of type MOD with provider {mods folder locator at C:\Users\14313\curseforge\minecraft\Instances\Cobblemon\mods} [08:55:54] [main/INFO]: Found mod file Cobblemon-forge-1.5.2+1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\14313\curseforge\minecraft\Instances\Cobblemon\mods} [08:55:54] [main/INFO]: Found mod file cobblemon-spawn-notification-1.5-forge-1.2.0.jar of type MOD with provider {mods folder locator at C:\Users\14313\curseforge\minecraft\Instances\Cobblemon\mods} [08:55:54] [main/INFO]: Found mod file cobblemon-unchained-1.5-forge-1.0.1.jar of type MOD with provider {mods folder locator at C:\Users\14313\curseforge\minecraft\Instances\Cobblemon\mods} [08:55:54] [main/INFO]: Found mod file cobblemonoutbreaks-1.1.4-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\14313\curseforge\minecraft\Instances\Cobblemon\mods} [08:55:54] [main/INFO]: Found mod file cobblemonrider-1.2.4.jar of type MOD with provider {mods folder locator at C:\Users\14313\curseforge\minecraft\Instances\Cobblemon\mods} [08:55:54] [main/INFO]: Found mod file Cobblepedia-Forge-0.6.8.jar of type MOD with provider {mods folder locator at C:\Users\14313\curseforge\minecraft\Instances\Cobblemon\mods} [08:55:54] [main/INFO]: Found mod file comforts-forge-6.4.0+1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\14313\curseforge\minecraft\Instances\Cobblemon\mods} [08:55:54] [main/INFO]: Found mod file cristellib-1.1.6-forge.jar of type MOD with provider {mods folder locator at C:\Users\14313\curseforge\minecraft\Instances\Cobblemon\mods} [08:55:54] [main/INFO]: Found mod file decorative_blocks-forge-1.20.1-4.1.3.jar of type MOD with provider {mods folder locator at C:\Users\14313\curseforge\minecraft\Instances\Cobblemon\mods} [08:55:54] [main/INFO]: Found mod file journeymap-1.20.1-5.10.3-forge.jar of type MOD with provider {mods folder locator at C:\Users\14313\curseforge\minecraft\Instances\Cobblemon\mods} [08:55:54] [main/INFO]: Found mod file kotlinforforge-4.11.0-all.jar of type LIBRARY with provider {mods folder locator at C:\Users\14313\curseforge\minecraft\Instances\Cobblemon\mods} [08:55:54] [main/INFO]: Found mod file mcw-doors-1.1.1forge-mc1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\14313\curseforge\minecraft\Instances\Cobblemon\mods} [08:55:54] [main/INFO]: Found mod file mcw-furniture-3.3.0-mc1.20.1forge.jar of type MOD with provider {mods folder locator at C:\Users\14313\curseforge\minecraft\Instances\Cobblemon\mods} [08:55:54] [main/INFO]: Found mod file modernfix-forge-5.20.0+mc1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\14313\curseforge\minecraft\Instances\Cobblemon\mods} [08:55:54] [main/INFO]: Found mod file moonlight-1.20-2.13.49-forge.jar of type MOD with provider {mods folder locator at C:\Users\14313\curseforge\minecraft\Instances\Cobblemon\mods} [08:55:54] [main/INFO]: Found mod file MouseTweaks-forge-mc1.20.1-2.25.1.jar of type MOD with provider {mods folder locator at C:\Users\14313\curseforge\minecraft\Instances\Cobblemon\mods} [08:55:54] [main/INFO]: Found mod file mvs-4.1.4-1.20-forge.jar of type MOD with provider {mods folder locator at C:\Users\14313\curseforge\minecraft\Instances\Cobblemon\mods} [08:55:54] [main/INFO]: Found mod file packetfixer-forge-1.4.3-1.19-to-1.20.1.jar of type MOD with provider {mods folder locator at C:\Users\14313\curseforge\minecraft\Instances\Cobblemon\mods} [08:55:54] [main/INFO]: Found mod file Patchouli-1.20.1-84-FORGE.jar of type MOD with provider {mods folder locator at C:\Users\14313\curseforge\minecraft\Instances\Cobblemon\mods} [08:55:54] [main/INFO]: Found mod file polytone-1.20-2.3.3.jar of type MOD with provider {mods folder locator at C:\Users\14313\curseforge\minecraft\Instances\Cobblemon\mods} [08:55:54] [main/INFO]: Found mod file repurposed_structures-7.1.15+1.20.1-forge.jar of type MOD with provider {mods folder locator at C:\Users\14313\curseforge\minecraft\Instances\Cobblemon\mods} [08:55:54] [main/INFO]: Found mod file sophisticatedbackpacks-1.20.1-3.22.2.1172.jar of type MOD with provider {mods folder locator at C:\Users\14313\curseforge\minecraft\Instances\Cobblemon\mods} [08:55:54] [main/INFO]: Found mod file sophisticatedcore-1.20.1-1.1.3.835.jar of type MOD with provider {mods folder locator at C:\Users\14313\curseforge\minecraft\Instances\Cobblemon\mods} [08:55:54] [main/INFO]: Found mod file supplementaries-1.20-3.1.11.jar of type MOD with provider {mods folder locator at C:\Users\14313\curseforge\minecraft\Instances\Cobblemon\mods} [08:55:54] [main/INFO]: Found mod file TerraBlender-forge-1.20.1-3.0.1.7.jar of type MOD with provider {mods folder locator at C:\Users\14313\curseforge\minecraft\Instances\Cobblemon\mods} [08:55:54] [main/INFO]: Found mod file Towns-and-Towers-1.12-Fabric+Forge.jar of type MOD with provider {mods folder locator at C:\Users\14313\curseforge\minecraft\Instances\Cobblemon\mods} [08:55:55] [main/WARN]: Mod file C:\Users\14313\curseforge\minecraft\Install\libraries\net\minecraftforge\fmlcore\1.20.1-47.3.0\fmlcore-1.20.1-47.3.0.jar is missing mods.toml file [08:55:55] [main/WARN]: Mod file C:\Users\14313\curseforge\minecraft\Install\libraries\net\minecraftforge\javafmllanguage\1.20.1-47.3.0\javafmllanguage-1.20.1-47.3.0.jar is missing mods.toml file [08:55:55] [main/WARN]: Mod file C:\Users\14313\curseforge\minecraft\Install\libraries\net\minecraftforge\lowcodelanguage\1.20.1-47.3.0\lowcodelanguage-1.20.1-47.3.0.jar is missing mods.toml file [08:55:55] [main/WARN]: Mod file C:\Users\14313\curseforge\minecraft\Install\libraries\net\minecraftforge\mclanguage\1.20.1-47.3.0\mclanguage-1.20.1-47.3.0.jar is missing mods.toml file [08:55:55] [main/INFO]: Found mod file fmlcore-1.20.1-47.3.0.jar of type LIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.MinecraftLocator@64138b0c [08:55:55] [main/INFO]: Found mod file javafmllanguage-1.20.1-47.3.0.jar of type LANGPROVIDER with provider net.minecraftforge.fml.loading.moddiscovery.MinecraftLocator@64138b0c [08:55:55] [main/INFO]: Found mod file lowcodelanguage-1.20.1-47.3.0.jar of type LANGPROVIDER with provider net.minecraftforge.fml.loading.moddiscovery.MinecraftLocator@64138b0c [08:55:55] [main/INFO]: Found mod file mclanguage-1.20.1-47.3.0.jar of type LANGPROVIDER with provider net.minecraftforge.fml.loading.moddiscovery.MinecraftLocator@64138b0c [08:55:55] [main/INFO]: Found mod file client-1.20.1-20230612.114412-srg.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.MinecraftLocator@64138b0c [08:55:55] [main/INFO]: Found mod file forge-1.20.1-47.3.0-universal.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.MinecraftLocator@64138b0c [08:55:55] [main/WARN]: Attempted to select two dependency jars from JarJar which have the same identification: Mod File: and Mod File: . Using Mod File: [08:55:55] [main/INFO]: Found 10 dependencies adding them to mods collection [08:55:55] [main/INFO]: Found mod file MixinSquared-0.1.1.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@95bb2a2 [08:55:55] [main/INFO]: Found mod file mixinextras-forge-0.4.0.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@95bb2a2 [08:55:55] [main/INFO]: Found mod file kfflib-4.11.0.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@95bb2a2 [08:55:55] [main/INFO]: Found mod file kffmod-4.11.0.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@95bb2a2 [08:55:55] [main/INFO]: Found mod file exp4j-0.4.8.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@95bb2a2 [08:55:55] [main/INFO]: Found mod file MixinExtras-0.4.0.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@95bb2a2 [08:55:55] [main/INFO]: Found mod file jankson-1.2.3.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@95bb2a2 [08:55:55] [main/INFO]: Found mod file mixinsquared-forge-0.1.1.jar of type GAMELIBRARY with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@95bb2a2 [08:55:55] [main/INFO]: Found mod file kfflang-4.11.0.jar of type LANGPROVIDER with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@95bb2a2 [08:55:55] [main/INFO]: Found mod file spectrelib-forge-0.13.15+1.20.1.jar of type MOD with provider net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator@95bb2a2 [08:56:01] [main/INFO]: Compatibility level set to JAVA_17 [08:56:01] [main/INFO]: Launching target 'forgeclient' with arguments [--version, forge-47.3.0, --gameDir, C:\Users\14313\curseforge\minecraft\Instances\Cobblemon, --assetsDir, C:\Users\14313\curseforge\minecraft\Install\assets, --uuid, 8006a7731afc4cdcb0a5c5f57edf6e02, --username, Callousedbeans, --assetIndex, 5, --accessToken, ????????, --clientId, MzM4ZGY1MTYtZTAzOC00OTQ3LWEwMjktMjRlZDMwM2I4NGZi, --xuid, 2535451237089590, --userType, msa, --versionType, release, --width, 854, --height, 480, --quickPlayPath, C:\Users\14313\curseforge\minecraft\Install\quickPlay\java\1736952947979.json] [08:56:02] [main/INFO]: Loaded configuration file for ModernFix 5.20.0+mc1.20.1: 86 options available, 0 override(s) found [08:56:02] [main/INFO]: Applying Nashorn fix [08:56:02] [main/INFO]: Applied Forge config corruption patch [08:56:02] [main/WARN]: Reference map 'mvs-forge-refmap.json' for mvs-forge.mixins.json could not be read. If this is a development environment you can ignore this message [08:56:02] [main/WARN]: Reference map 'packetfixer-forge-forge-refmap.json' for packetfixer-forge.mixins.json could not be read. If this is a development environment you can ignore this message [08:56:02] [main/WARN]: Reference map 'cristellib-forge-refmap.json' for cristellib.mixins.json could not be read. If this is a development environment you can ignore this message [08:56:03] [main/WARN]: Error loading class: vectorwing/farmersdelight/client/renderer/HangingCanvasSignRenderer (java.lang.ClassNotFoundException: vectorwing.farmersdelight.client.renderer.HangingCanvasSignRenderer) [08:56:03] [main/WARN]: Error loading class: vectorwing/farmersdelight/client/renderer/CanvasSignRenderer (java.lang.ClassNotFoundException: vectorwing.farmersdelight.client.renderer.CanvasSignRenderer) [08:56:03] [main/ERROR]: Error occurred applying transform of coremod coremods/field_to_method.js function biome java.lang.IllegalStateException: Field f_47437_ is not private and an instance field at net.minecraftforge.coremod.api.ASMAPI.redirectFieldToMethod(ASMAPI.java:270) ~[coremods-5.1.6.jar:?] at org.openjdk.nashorn.internal.scripts.Script$Recompilation$21$292A$\^eval\_.initializeCoreMod#transformer(<eval>:11) ~[?:?] at org.openjdk.nashorn.internal.runtime.ScriptFunctionData.invoke(ScriptFunctionData.java:648) ~[nashorn-core-15.3.jar:?] at org.openjdk.nashorn.internal.runtime.ScriptFunction.invoke(ScriptFunction.java:513) ~[nashorn-core-15.3.jar:?] at org.openjdk.nashorn.internal.runtime.ScriptRuntime.apply(ScriptRuntime.java:520) ~[nashorn-core-15.3.jar:?] at org.openjdk.nashorn.api.scripting.ScriptObjectMirror.call(ScriptObjectMirror.java:111) ~[nashorn-core-15.3.jar:?] at net.minecraftforge.coremod.NashornFactory.lambda$getFunction$0(NashornFactory.java:22) ~[coremods-5.1.6.jar:5.1.6] at net.minecraftforge.coremod.transformer.CoreModClassTransformer.runCoremod(CoreModClassTransformer.java:22) ~[coremods-5.1.6.jar:?] at net.minecraftforge.coremod.transformer.CoreModClassTransformer.runCoremod(CoreModClassTransformer.java:14) ~[coremods-5.1.6.jar:?] at net.minecraftforge.coremod.transformer.CoreModBaseTransformer.transform(CoreModBaseTransformer.java:42) ~[coremods-5.1.6.jar:?] at cpw.mods.modlauncher.TransformerHolder.transform(TransformerHolder.java:41) ~[modlauncher-10.0.9.jar:?] at cpw.mods.modlauncher.ClassTransformer.performVote(ClassTransformer.java:179) ~[modlauncher-10.0.9.jar:?] at cpw.mods.modlauncher.ClassTransformer.transform(ClassTransformer.java:117) ~[modlauncher-10.0.9.jar:?] at cpw.mods.modlauncher.TransformingClassLoader.maybeTransformClassBytes(TransformingClassLoader.java:50) ~[modlauncher-10.0.9.jar:?] at cpw.mods.cl.ModuleClassLoader.getMaybeTransformedClassBytes(ModuleClassLoader.java:250) ~[securejarhandler-2.1.10.jar:?] at cpw.mods.modlauncher.TransformingClassLoader.buildTransformedClassNodeFor(TransformingClassLoader.java:58) ~[modlauncher-10.0.9.jar:?] at cpw.mods.modlauncher.LaunchPluginHandler.lambda$announceLaunch$10(LaunchPluginHandler.java:100) ~[modlauncher-10.0.9.jar:?] at org.spongepowered.asm.launch.MixinLaunchPluginLegacy.getClassNode(MixinLaunchPluginLegacy.java:222) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4] at org.spongepowered.asm.launch.MixinLaunchPluginLegacy.getClassNode(MixinLaunchPluginLegacy.java:207) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4] at org.spongepowered.asm.mixin.transformer.ClassInfo.forName(ClassInfo.java:2005) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4] at org.spongepowered.asm.mixin.transformer.MixinInfo.getTargetClass(MixinInfo.java:1017) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4] at org.spongepowered.asm.mixin.transformer.MixinInfo.readTargetClasses(MixinInfo.java:1007) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4] at org.spongepowered.asm.mixin.transformer.MixinInfo.parseTargets(MixinInfo.java:895) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4] at org.spongepowered.asm.mixin.transformer.MixinConfig.prepareMixins(MixinConfig.java:867) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4] at org.spongepowered.asm.mixin.transformer.MixinConfig.prepare(MixinConfig.java:775) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4] at org.spongepowered.asm.mixin.transformer.MixinProcessor.prepareConfigs(MixinProcessor.java:539) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4] at org.spongepowered.asm.mixin.transformer.MixinProcessor.select(MixinProcessor.java:462) ~[mixin-0.8.5.jar:0.8.5+Jenkins-b310.git-155314e6e91465dad727e621a569906a410cd6f4]... (109 KB left) this is the crash report [15Jan2025 09:18:53.804] [main/INFO] [cpw.mods.modlauncher.Launcher/MODLAUNCHER]: ModLauncher running: args [--username, Callousedbeans, --version, forge-47.3.0, --gameDir, C:\Users\14313\curseforge\minecraft\Instances\Cobblemon, --assetsDir, C:\Users\14313\curseforge\minecraft\Install\assets, --assetIndex, 5, --uuid, 8006a7731afc4cdcb0a5c5f57edf6e02, --accessToken, ????????, --clientId, MzM4ZGY1MTYtZTAzOC00OTQ3LWEwMjktMjRlZDMwM2I4NGZi, --xuid, 2535451237089590, --userType, msa, --versionType, release, --width, 854, --height, 480, --quickPlayPath, C:\Users\14313\curseforge\minecraft\Install\quickPlay\java\1736954330212.json, --launchTarget, forgeclient, --fml.forgeVersion, 47.3.0, --fml.mcVersion, 1.20.1, --fml.forgeGroup, net.minecraftforge, --fml.mcpVersion, 20230612.114412] [15Jan2025 09:18:53.811] [main/INFO] [cpw.mods.modlauncher.Launcher/MODLAUNCHER]: ModLauncher 10.0.9+10.0.9+main.dcd20f30 starting: java version 17.0.8 by Microsoft; OS Windows 10 arch amd64 version 10.0 [15Jan2025 09:18:53.844] [main/DEBUG] [cpw.mods.modlauncher.LaunchServiceHandler/MODLAUNCHER]: Found launch services [fmlclientdev,forgeclient,minecraft,forgegametestserverdev,fmlserveruserdev,fmlclient,fmldatauserdev,forgeserverdev,forgeserveruserdev,forgeclientdev,forgeclientuserdev,forgeserver,forgedatadev,fmlserver,fmlclientuserdev,fmlserverdev,forgedatauserdev,testharness,forgegametestserveruserdev] [15Jan2025 09:18:53.862] [main/DEBUG] [cpw.mods.modlauncher.NameMappingServiceHandler/MODLAUNCHER]: Found naming services : [srgtomcp] [15Jan2025 09:18:53.882] [main/DEBUG] [cpw.mods.modlauncher.LaunchPluginHandler/MODLAUNCHER]: Found launch plugins: [mixin,eventbus,slf4jfixer,object_holder_definalize,runtime_enum_extender,capability_token_subclass,accesstransformer,runtimedistcleaner] [15Jan2025 09:18:53.900] [main/DEBUG] [cpw.mods.modlauncher.TransformationServicesHandler/MODLAUNCHER]: Discovering transformation services [15Jan2025 09:18:53.909] [main/DEBUG] [net.minecraftforge.fml.loading.FMLPaths/CORE]: Path GAMEDIR is C:\Users\14313\curseforge\minecraft\Instances\Cobblemon [15Jan2025 09:18:53.910] [main/DEBUG] [net.minecraftforge.fml.loading.FMLPaths/CORE]: Path MODSDIR is C:\Users\14313\curseforge\minecraft\Instances\Cobblemon\mods [15Jan2025 09:18:53.910] [main/DEBUG] [net.minecraftforge.fml.loading.FMLPaths/CORE]: Path CONFIGDIR is C:\Users\14313\curseforge\minecraft\Instances\Cobblemon\config [15Jan2025 09:18:53.910] [main/DEBUG] [net.minecraftforge.fml.loading.FMLPaths/CORE]: Path FMLCONFIG is C:\Users\14313\curseforge\minecraft\Instances\Cobblemon\config\fml.toml [15Jan2025 09:18:55.185] [main/DEBUG] [cpw.mods.modlauncher.TransformationServicesHandler/MODLAUNCHER]: Found additional transformation services from discovery services: [15Jan2025 09:18:55.191] [main/INFO] [net.minecraftforge.fml.loading.ImmediateWindowHandler/]: Loading ImmediateWindowProvider fmlearlywindow [15Jan2025 09:18:55.276] [main/INFO] [EARLYDISPLAY/]: Trying GL version 4.6 [15Jan2025 09:18:55.346] [main/INFO] [EARLYDISPLAY/]: Requested GL version 4.6 got version 4.6 [15Jan2025 09:18:55.407] [main/DEBUG] [cpw.mods.modlauncher.TransformationServicesHandler/MODLAUNCHER]: Found transformer services : [mixin,fml] [15Jan2025 09:18:55.407] [main/DEBUG] [cpw.mods.modlauncher.TransformationServicesHandler/MODLAUNCHER]: Transformation services loading [15Jan2025 09:18:55.408] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Loading service mixin [15Jan2025 09:18:55.409] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Loaded service mixin [15Jan2025 09:18:55.409] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Loading service fml [15Jan2025 09:18:55.411] [main/DEBUG] [net.minecraftforge.fml.loading.LauncherVersion/CORE]: Found FMLLauncher version 1.0 [15Jan2025 09:18:55.412] [main/DEBUG] [net.minecraftforge.fml.loading.FMLLoader/CORE]: FML 1.0 loading [15Jan2025 09:18:55.412] [main/DEBUG] [net.minecraftforge.fml.loading.FMLLoader/CORE]: FML found ModLauncher version : 10.0.9+10.0.9+main.dcd20f30 [15Jan2025 09:18:55.413] [main/DEBUG] [net.minecraftforge.fml.loading.FMLLoader/CORE]: FML found AccessTransformer version : 8.0.4+66+master.c09db6d7 [15Jan2025 09:18:55.414] [main/DEBUG] [net.minecraftforge.fml.loading.FMLLoader/CORE]: FML found EventBus version : 6.0.5+6.0.5+master.eb8e549b [15Jan2025 09:18:55.415] [main/DEBUG] [net.minecraftforge.fml.loading.FMLLoader/CORE]: Found Runtime Dist Cleaner [15Jan2025 09:18:55.417] [main/DEBUG] [net.minecraftforge.fml.loading.FMLLoader/CORE]: FML found CoreMod version : 5.1.6 [15Jan2025 09:18:55.419] [main/DEBUG] [net.minecraftforge.fml.loading.FMLLoader/CORE]: Found ForgeSPI package implementation version 7.0.1+7.0.1+master.d2b38bf6 [15Jan2025 09:18:55.419] [main/DEBUG] [net.minecraftforge.fml.loading.FMLLoader/CORE]: Found ForgeSPI package specification 5 [15Jan2025 09:18:55.420] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Loaded service fml [15Jan2025 09:18:55.421] [main/DEBUG] [cpw.mods.modlauncher.TransformationServicesHandler/MODLAUNCHER]: Configuring option handling for services [15Jan2025 09:18:55.431] [main/DEBUG] [cpw.mods.modlauncher.TransformationServicesHandler/MODLAUNCHER]: Transformation services initializing [15Jan2025 09:18:55.432] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Initializing transformation service mixin [15Jan2025 09:18:55.457] [main/DEBUG] [mixin/]: MixinService [ModLauncher] was successfully booted in cpw.mods.cl.ModuleClassLoader@37858383 [15Jan2025 09:18:55.496] [main/INFO] [mixin/]: SpongePowered MIXIN Subsystem Version=0.8.5 Source=union:/C:/Users/14313/curseforge/minecraft/Install/libraries/org/spongepowered/mixin/0.8.5/mixin-0.8.5.jar%23100!/ Service=ModLauncher Env=CLIENT [15Jan2025 09:18:55.506] [main/DEBUG] [mixin/]: Initialising Mixin Platform Manager [15Jan2025 09:18:55.507] [main/DEBUG] [mixin/]: Adding mixin platform agents for container ModLauncher Root Container(ModLauncher:4f56a0a2) [15Jan2025 09:18:55.508] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for ModLauncher Root Container(ModLauncher:4f56a0a2) [15Jan2025 09:18:55.509] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container ModLauncher Root Container(ModLauncher:4f56a0a2) [15Jan2025 09:18:55.510] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for ModLauncher Root Container(ModLauncher:4f56a0a2) [15Jan2025 09:18:55.510] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container ModLauncher Root Container(ModLauncher:4f56a0a2) [15Jan2025 09:18:55.513] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Initialized transformation service mixin [15Jan2025 09:18:55.514] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Initializing transformation service fml [15Jan2025 09:18:55.514] [main/DEBUG] [net.minecraftforge.fml.loading.FMLServiceProvider/CORE]: Setting up basic FML game directories [15Jan2025 09:18:55.515] [main/DEBUG] [net.minecraftforge.fml.loading.FMLPaths/CORE]: Path GAMEDIR is C:\Users\14313\curseforge\minecraft\Instances\Cobblemon [15Jan2025 09:18:55.516] [main/DEBUG] [net.minecraftforge.fml.loading.FMLPaths/CORE]: Path MODSDIR is C:\Users\14313\curseforge\minecraft\Instances\Cobblemon\mods [15Jan2025 09:18:55.516] [main/DEBUG] [net.minecraftforge.fml.loading.FMLPaths/CORE]: Path CONFIGDIR is C:\Users\14313\curseforge\minecraft\Instances\Cobblemon\config [15Jan2025 09:18:55.516] [main/DEBUG] [net.minecraftforge.fml.loading.FMLPaths/CORE]: Path FMLCONFIG is C:\Users\14313\curseforge\minecraft\Instances\Cobblemon\config\fml.toml [15Jan2025 09:18:55.516] [main/DEBUG] [net.minecraftforge.fml.loading.FMLServiceProvider/CORE]: Loading configuration [15Jan2025 09:18:55.521] [main/DEBUG] [net.minecraftforge.fml.loading.FMLServiceProvider/CORE]: Preparing ModFile [15Jan2025 09:18:55.526] [main/DEBUG] [net.minecraftforge.fml.loading.FMLServiceProvider/CORE]: Preparing launch handler [15Jan2025 09:18:55.527] [main/DEBUG] [net.minecraftforge.fml.loading.FMLLoader/CORE]: Using forgeclient as launch service [15Jan2025 09:18:55.534] [pool-2-thread-1/INFO] [EARLYDISPLAY/]: GL info: Intel(R) UHD Graphics GL version 4.6.0 - Build 27.20.100.8476, Intel [15Jan2025 09:18:55.559] [main/DEBUG] [net.minecraftforge.fml.loading.FMLLoader/CORE]: Received command line version data : VersionInfo[forgeVersion=47.3.0, mcVersion=1.20.1, mcpVersion=20230612.114412, forgeGroup=net.minecraftforge] [15Jan2025 09:18:55.566] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Initialized transformation service fml [15Jan2025 09:18:55.567] [main/DEBUG] [cpw.mods.modlauncher.NameMappingServiceHandler/MODLAUNCHER]: Current naming domain is 'srg' [15Jan2025 09:18:55.569] [main/DEBUG] [cpw.mods.modlauncher.NameMappingServiceHandler/MODLAUNCHER]: Identified name mapping providers {} [15Jan2025 09:18:55.569] [main/DEBUG] [cpw.mods.modlauncher.TransformationServicesHandler/MODLAUNCHER]: Transformation services begin scanning [15Jan2025 09:18:55.570] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Beginning scan trigger - transformation service mixin [15Jan2025 09:18:55.572] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: End scan trigger - transformation service mixin [15Jan2025 09:18:55.572] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Beginning scan trigger - transformation service fml [15Jan2025 09:18:55.572] [main/DEBUG] [net.minecraftforge.fml.loading.FMLServiceProvider/CORE]: Initiating mod scan [15Jan2025 09:18:55.602] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModListHandler/CORE]: Found mod coordinates from lists: [] [15Jan2025 09:18:55.611] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModDiscoverer/CORE]: Found Mod Locators : (mods folder:null),(maven libs:null),(exploded directory:null),(minecraft:null),(userdev classpath:null) [15Jan2025 09:18:55.611] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModDiscoverer/CORE]: Found Dependency Locators : (JarInJar:null) [15Jan2025 09:18:55.629] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Users\14313\curseforge\minecraft\Instances\Cobblemon\mods\AdditionalStructures-1.20.x-(v.4.2.2).jar [15Jan2025 09:18:55.715] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file AdditionalStructures-1.20.x-(v.4.2.2).jar with {additionalstructures} mods - versions {4.2.2} [15Jan2025 09:18:55.721] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Users\14313\curseforge\minecraft\Instances\Cobblemon\mods\amendments-1.20-1.2.14.jar [15Jan2025 09:18:55.724] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file amendments-1.20-1.2.14.jar with {amendments} mods - versions {1.20-1.2.14} [15Jan2025 09:18:55.732] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Users\14313\curseforge\minecraft\Instances\Cobblemon\mods\BiomesOPlenty-1.20.1-18.0.0.592.jar [15Jan2025 09:18:55.745] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file BiomesOPlenty-1.20.1-18.0.0.592.jar with {biomesoplenty} mods - versions {18.0.0.592} [15Jan2025 09:18:55.751] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Users\14313\curseforge\minecraft\Instances\Cobblemon\mods\cobbledex-1.20.1-forge-1.1.0.jar [15Jan2025 09:18:55.755] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file cobbledex-1.20.1-forge-1.1.0.jar with {cobbledex} mods - versions {1.1.0} [15Jan2025 09:18:55.760] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Users\14313\curseforge\minecraft\Instances\Cobblemon\mods\Cobblemon O' Plenty 1.20.1 B.2.0.jar [15Jan2025 09:18:55.762] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file Cobblemon O' Plenty 1.20.1 B.2.0.jar with {tmtcop} mods - versions {2.0.0} [15Jan2025 09:18:55.767] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Users\14313\curseforge\minecraft\Instances\Cobblemon\mods\cobblemon-counter-1.5-forge-1.2.0.jar [15Jan2025 09:18:55.769] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file cobblemon-counter-1.5-forge-1.2.0.jar with {cobbled_counter} mods - versions {1.5-forge-1.2.0} [15Jan2025 09:18:55.821] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Users\14313\curseforge\minecraft\Instances\Cobblemon\mods\Cobblemon-forge-1.5.2+1.20.1.jar [15Jan2025 09:18:55.823] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file Cobblemon-forge-1.5.2+1.20.1.jar with {cobblemon} mods - versions {1.5.2+1.20.1} [15Jan2025 09:18:55.829] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Users\14313\curseforge\minecraft\Instances\Cobblemon\mods\cobblemon-spawn-notification-1.5-forge-1.2.0.jar [15Jan2025 09:18:55.831] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file cobblemon-spawn-notification-1.5-forge-1.2.0.jar with {spawn_notification} mods - versions {1.5-forge-1.2.0} [15Jan2025 09:18:55.839] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Users\14313\curseforge\minecraft\Instances\Cobblemon\mods\cobblemon-unchained-1.5-forge-1.0.1.jar [15Jan2025 09:18:55.841] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file cobblemon-unchained-1.5-forge-1.0.1.jar with {unchained} mods - versions {1.5-forge-1.0.1} [15Jan2025 09:18:55.846] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Users\14313\curseforge\minecraft\Instances\Cobblemon\mods\cobblemonoutbreaks-1.1.4-1.20.1.jar [15Jan2025 09:18:55.848] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file cobblemonoutbreaks-1.1.4-1.20.1.jar with {cobblemonoutbreaks} mods - versions {1.1.4-1.20.1} [15Jan2025 09:18:55.852] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Users\14313\curseforge\minecraft\Instances\Cobblemon\mods\cobblemonrider-1.2.4.jar [15Jan2025 09:18:55.854] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file cobblemonrider-1.2.4.jar with {cobblemonrider} mods - versions {1.2.4} [15Jan2025 09:18:55.860] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Users\14313\curseforge\minecraft\Instances\Cobblemon\mods\Cobblepedia-Forge-0.6.8.jar [15Jan2025 09:18:55.863] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file Cobblepedia-Forge-0.6.8.jar with {cobblepedia} mods - versions {0.6.8} [15Jan2025 09:18:55.869] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Users\14313\curseforge\minecraft\Instances\Cobblemon\mods\comforts-forge-6.4.0+1.20.1.jar [15Jan2025 09:18:55.870] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file comforts-forge-6.4.0+1.20.1.jar with {comforts} mods - versions {6.4.0+1.20.1} [15Jan2025 09:18:55.875] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Users\14313\curseforge\minecraft\Instances\Cobblemon\mods\cristellib-1.1.6-forge.jar [15Jan2025 09:18:55.880] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file cristellib-1.1.6-forge.jar with {cristellib} mods - versions {1.1.6} [15Jan2025 09:18:55.886] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Users\14313\curseforge\minecraft\Instances\Cobblemon\mods\decorative_blocks-forge-1.20.1-4.1.3.jar [15Jan2025 09:18:55.889] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file decorative_blocks-forge-1.20.1-4.1.3.jar with {decorative_blocks} mods - versions {4.1.3} [15Jan2025 09:18:55.899] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Users\14313\curseforge\minecraft\Instances\Cobblemon\mods\journeymap-1.20.1-5.10.3-forge.jar [15Jan2025 09:18:55.900] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file journeymap-1.20.1-5.10.3-forge.jar with {journeymap} mods - versions {5.10.3} [15Jan2025 09:18:55.981] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Users\14313\curseforge\minecraft\Instances\Cobblemon\mods\mcw-doors-1.1.1forge-mc1.20.1.jar [15Jan2025 09:18:55.982] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file mcw-doors-1.1.1forge-mc1.20.1.jar with {mcwdoors} mods - versions {1.1.1} [15Jan2025 09:18:55.992] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Users\14313\curseforge\minecraft\Instances\Cobblemon\mods\mcw-furniture-3.3.0-mc1.20.1forge.jar [15Jan2025 09:18:55.994] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file mcw-furniture-3.3.0-mc1.20.1forge.jar with {mcwfurnitures} mods - versions {3.3.0}... (493 KB left)
    • Add crash-reports with sites like https://mclo.gs/   Use Java 17 instead of Java 21
  • Topics

×
×
  • Create New...

Important Information

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