Jump to content

[1.15.1] Block - texture, model, blockstate - understanding


KillBill61

Recommended Posts

Hi,

I have several questions about that, but let me first show you what I have (It works as I want, but I think I don't understand it well - the "powered" part is not finished, but that is not the problem - I just don't need it now). Questions are on bottom.

(MODID = "automation")

 

In "assets.automation.blockstates" I have file "chopping_block.json"

Spoiler

{
	"variants": {
		"facing=north,powered=false": {
			"model": "automation:blocks/chopping_block"
		},
		"facing=south,powered=false": {
			"model": "automation:blocks/chopping_block",
			"y": 180
		},
		"facing=west,powered=false": {
			"model": "automation:blocks/chopping_block",
			"y": 270
		},
		"facing=east,powered=false": {
			"model": "automation:blocks/chopping_block",
			"y": 90
		},
		"facing=up,powered=false": {
			"model": "automation:blocks/chopping_block",
			"x": -90
		},
		"facing=down,powered=false": {
			"model": "automation:blocks/chopping_block",
			"x": 90
		},
		"facing=north,powered=true": {
			"model": "automation:blocks/chopping_block_powered"
		},
		"facing=south,powered=true": {
			"model": "automation:blocks/chopping_block_powered",
			"y": 180
		},
		"facing=west,powered=true": {
			"model": "automation:blocks/chopping_block_powered",
			"y": 270
		},
		"facing=east,powered=true": {
			"model": "automation:blocks/chopping_block_powered",
			"y": 90
		},
		"facing=up,powered=true": {
			"model": "automation:blocks/chopping_block_powered",
			"x": -90
		},
		"facing=down,powered=true": {
			"model": "automation:blocks/chopping_block_powered",
			"x": 90
		}
	}
}

 

In "assets.automation.models.blocks" I have "chopping_block.json"

Spoiler

{
	"parent": "block/cube",
	"textures": {
		"particle": "automation:blocks/chopping_block/north",
		"north": "automation:blocks/chopping_block/north",
		"south": "automation:blocks/chopping_block/south",
		"west": "automation:blocks/chopping_block/west",
		"east": "automation:blocks/chopping_block/east",
		"up": "automation:blocks/chopping_block/up",
		"down": "automation:blocks/chopping_block/down"
	}
}

 

and also "chopping_block_powered.json"

Spoiler

{
	"parent": "block/cube",
	"textures": {
		"particle": "automation:blocks/chopping_block/north_powered",
		"north": "automation:blocks/chopping_block/north_powered",
		"south": "automation:blocks/chopping_block/south_powered",
		"west": "automation:blocks/chopping_block/west_powered",
		"east": "automation:blocks/chopping_block/east_powered",
		"up": "automation:blocks/chopping_block/up_powered",
		"down": "automation:blocks/chopping_block/down_powered"
	}
}

 

In "assets.automation.textures.blocks.chopping_block" folder there are all 12 PNG files with the right name.

 

And in my "ChoppingBlock" class I have these methods (that I copied - I understand them easily btw)

Spoiler

@Override
public void onBlockPlacedBy(World world, BlockPos pos, BlockState state, @Nullable LivingEntity entity, ItemStack stack) {
	if (entity != null) {
		world.setBlockState(pos, state.with(BlockStateProperties.FACING, getFacingFromEntity(pos, entity)), 2);
	}
}

private static Direction getFacingFromEntity(BlockPos block, LivingEntity entity) {
	return Direction.getFacingFromVector((float) (entity.prevPosX - block.getX()), (float) (entity.prevPosY - block.getY()), (float) (entity.prevPosZ - block.getZ()));
}

 

Questions:

1) Does file in "assets.automation.blockstates" have to be really that complicated? I mean that what texture it has to use is defined in files in "assets.automation.models.blocks". In the first file there are basically two states - when it is powered use this model and when it is not powered use this model. I tried to understand that "facing" parameter and "x" and "y" parameter but I don't understand why it has to be this way.

2) When I used to place my "ChoppingBlock" it always faced the same direction eg. north part of cube faced north etc. and it didn't matter from what position I placed it. So I added that part of code (onBlockPlaceBy), but I feel I am kinda cheating? :D I tried to copy code from chest or furnace or piston because these blocks always face to you when you place them but I didn't find the part in the code what causes it. How do you do it by "default" so I don't have to put this part of code into every block that has different textures on each side.

 

Thx for everything btw :D

Link to comment
Share on other sites

3 hours ago, KillBill61 said:

1) Does file in "assets.automation.blockstates" have to be really that complicated?

No, use Forge states.

https://mcforge.readthedocs.io/en/1.13.x/models/blockstates/forgeBlockstates/

3 hours ago, KillBill61 said:

So I added that part of code (onBlockPlaceBy), but I feel I am kinda cheating?

Eh, that's more or less how it works. Furnaces handle it in AbstractFurnaceBlock in a method called getStateForPlacement().

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

 

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

 

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

Link to comment
Share on other sites

Thx for the answers - the second one with "getStateForPlacement()" is much better than what I had.

 

But I still don't know about the first one. When I do for example:

{
	"variants": {
		"powered=false": {
			"model": "automation:blocks/chopping_block"
		},
		"powered=true": {
			"model": "automation:blocks/chopping_block_powered"
		}
	}
}

it always face north and I still don't understand how should I do it "easily" so I don't have to define all 6 facing states. I want that my block acts for example as a furnace. Is there some easy way or I need to define all 6 facing states as I did firstly? I didn't get it from website you posted. How my json file have to look like?

Link to comment
Share on other sites

You need to include all the variant properties. When using Forge states you can list each property separately and it will do the combinations for you:

https://github.com/Draco18s/ReasonableRealism/blob/1.14.4/src/main/resources/assets/harderores/blockstates/axel.json#L10-L34

Notice how there is both a axel_orientation variant and a facing variant.

Edited by Draco18s

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

 

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

 

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

Link to comment
Share on other sites

Hi,

still not working - I removed the "default" part because it is not necessary as I read (and it does nothing with my problem), but I made this:

Spoiler



{
	"forge_marker": 1,
	"variants": {
		"powered": {
			"false": {
				"model": "automation:blocks/chopping_block"
			},
			"true": {
				"model": "automation:blocks/chopping_block_powered"
			}
		},
		"facing": {
			"north": {
				"y": 0
			},
			"east": {
				"y": 90
			},
			"south": {
				"y": 180
			},
			"west": {
				"y": 270
			},
			"down": {
				"x": 90
			},
			"up": {
				"x": 270
			}
		}
	}
}


 

as my json file in blockstate (everything other is same - I only changed this file) and it doesn't load texture in game and I found this part that is probably why it does not work:

Spoiler

[m[32m[13:49:00] [Forge Version Check/INFO] [ne.mi.fm.VersionChecker/]: [forge] Found status: BETA_OUTDATED Current: 30.0.15 Target: 30.0.26
[m[33m[13:49:01] [Server-Worker-5/WARN] [minecraft/ModelBakery]: Exception loading blockstate definition: 'automation:blockstates/chopping_block.json' missing model for variant: 'automation:chopping_block#facing=north,powered=false'
[m[33m[13:49:01] [Server-Worker-5/WARN] [minecraft/ModelBakery]: Exception loading blockstate definition: 'automation:blockstates/chopping_block.json' missing model for variant: 'automation:chopping_block#facing=east,powered=false'
[m[33m[13:49:01] [Server-Worker-5/WARN] [minecraft/ModelBakery]: Exception loading blockstate definition: 'automation:blockstates/chopping_block.json' missing model for variant: 'automation:chopping_block#facing=south,powered=true'
[m[33m[13:49:01] [Server-Worker-5/WARN] [minecraft/ModelBakery]: Exception loading blockstate definition: 'automation:blockstates/chopping_block.json' missing model for variant: 'automation:chopping_block#facing=west,powered=true'
[m[33m[13:49:01] [Server-Worker-5/WARN] [minecraft/ModelBakery]: Exception loading blockstate definition: 'automation:blockstates/chopping_block.json' missing model for variant: 'automation:chopping_block#facing=west,powered=false'
[m[33m[13:49:01] [Server-Worker-5/WARN] [minecraft/ModelBakery]: Exception loading blockstate definition: 'automation:blockstates/chopping_block.json' missing model for variant: 'automation:chopping_block#facing=east,powered=true'
[m[33m[13:49:01] [Server-Worker-5/WARN] [minecraft/ModelBakery]: Exception loading blockstate definition: 'automation:blockstates/chopping_block.json' missing model for variant: 'automation:chopping_block#facing=south,powered=false'
[m[33m[13:49:01] [Server-Worker-5/WARN] [minecraft/ModelBakery]: Exception loading blockstate definition: 'automation:blockstates/chopping_block.json' missing model for variant: 'automation:chopping_block#facing=down,powered=true'
[m[33m[13:49:01] [Server-Worker-5/WARN] [minecraft/ModelBakery]: Exception loading blockstate definition: 'automation:blockstates/chopping_block.json' missing model for variant: 'automation:chopping_block#facing=north,powered=true'
[m[33m[13:49:01] [Server-Worker-5/WARN] [minecraft/ModelBakery]: Exception loading blockstate definition: 'automation:blockstates/chopping_block.json' missing model for variant: 'automation:chopping_block#facing=down,powered=false'
[m[33m[13:49:01] [Server-Worker-5/WARN] [minecraft/ModelBakery]: Exception loading blockstate definition: 'automation:blockstates/chopping_block.json' missing model for variant: 'automation:chopping_block#facing=up,powered=true'
[m[33m[13:49:01] [Server-Worker-5/WARN] [minecraft/ModelBakery]: Exception loading blockstate definition: 'automation:blockstates/chopping_block.json' missing model for variant: 'automation:chopping_block#facing=up,powered=false'
[m[33m[13:49:01] [Server-Worker-5/WARN] [minecraft/ModelBakery]: Exception loading blockstate definition: 'automation:blockstates/chopping_block.json' in resourcepack: 'Mod Resources': Missing model, expected to find a string

 

Can you help me? I am totally lost :D I swear I am not that stoopid.

Link to comment
Share on other sites

If that's the entire error, I'm not sure. It could be that your blockstate is fine, but the model is 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.

Link to comment
Share on other sites

1 hour ago, Draco18s said:

If that's the entire error, I'm not sure. It could be that your blockstate is fine, but the model is not.

what is wrong with it? :D

 

Spoiler

{
	"parent": "block/cube",
	"textures": {
		"particle": "automation:blocks/chopping_block/north",
		"north": "automation:blocks/chopping_block/north",
		"south": "automation:blocks/chopping_block/south",
		"west": "automation:blocks/chopping_block/west",
		"east": "automation:blocks/chopping_block/east",
		"up": "automation:blocks/chopping_block/up",
		"down": "automation:blocks/chopping_block/down"
	}
}

 

again - everything is in my first comment btw - I am just resending it now

Link to comment
Share on other sites

2 hours ago, Draco18s said:

If that's the entire error, I'm not sure.

 

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

 

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

 

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

Link to comment
Share on other sites

So for testing I removed the "facing" and leave there only the "powered"

Everything is same except my blockstates file:

Spoiler

{
	"forge_marker": 1,
	"variants": {
		"powered": {
			"false": {
				"model": "automation:blocks/chopping_block"
			},
			"true": {
				"model": "automation:blocks/chopping_block_powered"
			}
		}
	}
}

 

and in my ChoppingBlock class I changed this:

Spoiler

@Override
protected void fillStateContainer(StateContainer.Builder<Block, BlockState> builder) {
	//builder.add(BlockStateProperties.FACING, BlockStateProperties.POWERED);
	builder.add(BlockStateProperties.POWERED);
}

 

and this is the only problem it prints:

Spoiler

[m[32m[19:59:38] [Forge Version Check/INFO] [ne.mi.fm.VersionChecker/]: [forge] Found status: BETA_OUTDATED Current: 30.0.15 Target: 30.0.30
[m[33m[19:59:39] [Server-Worker-6/WARN] [minecraft/ModelBakery]: Exception loading blockstate definition: 'automation:blockstates/chopping_block.json' missing model for variant: 'automation:chopping_block#powered=false'
[m[33m[19:59:39] [Server-Worker-6/WARN] [minecraft/ModelBakery]: Exception loading blockstate definition: 'automation:blockstates/chopping_block.json' missing model for variant: 'automation:chopping_block#powered=true'
[m[33m[19:59:39] [Server-Worker-6/WARN] [minecraft/ModelBakery]: Exception loading blockstate definition: 'automation:blockstates/chopping_block.json' in resourcepack: 'Mod Resources': Missing model, expected to find a string

 

I still don't know what to do...

 

Also side question: When I use my first complicated code I can see my block that is black, white and red as should look, but for some reason when I hold it, it has same texture and look except one thing and that is that everything that should be red is white... ???

Link to comment
Share on other sites

You removed the facing property and the errors involving the facing property went away. Gasp.

 

The underlying issue (whatever it is) still exists and nothing has changed. I don't know what this issue is. 

Edited by Draco18s

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

 

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

 

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

Link to comment
Share on other sites

Am I using the

"forge_marker": 1,

correctly?

I mean... I do this for MC version 1.15.1 and the forge version is 30.0.15

I have feeling that it completely ignores this line, because with or without it it do always the same things and it would make sense why it shows these errors.

I downloaded it from forge page and normally followed instructions and everything works except this. Or do I need something else that is not included in my files or code?

Link to comment
Share on other sites

3 hours ago, KillBill61 said:

I have feeling that it completely ignores this line, because with or without it it do always the same things and it would make sense why it shows these errors.

If it "does the same thing with or without that line" then that line isn't related to the error.

(That line is what lets you specify two variants once each, rather than X*Y times)

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

 

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

 

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

Link to comment
Share on other sites

1 hour ago, Draco18s said:

If it "does the same thing with or without that line" then that line isn't related to the error.

I am not saying it is 'error'. I am saying that line is telling that it should use that "enchanted scripting" where you don't have to use "vanilla scripting" and make all the combinations by yourself. I am saying that the reason why I have these errors is because it is not using that "forge_marker" ("enchanted scripting") and instead it is using "vanilla scripting" and that is why it shows these errors.

 

Btw so much thanks to you that you are wasting time with me :( I appreciate it.

If anybody don't know where is the problem (I even download whole forge again) there is probably end and I am stucked with "vanilla" while I am making blockstates files. Just pray for me if some of my future blocks will have 5 states with 10 values and I have to create all combinations xD

Link to comment
Share on other sites

I misunderstood.

Yes. You need the forge_marker in order to use forge states.

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

 

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

 

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

Link to comment
Share on other sites

1 hour ago, Draco18s said:

I misunderstood.

Yes. You need the forge_marker in order to use forge states.

Well - yes :D But the question is should it work with the basic forge I downloaded as I wrote or I need some other plugin, files that I missed? I can't find anything.

Link to comment
Share on other sites

...what?

Of course it works with "the basic forge" (there is Forge and there is Forge, there aren't "extra plugins"). Your question makes no sense.

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

 

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

 

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

Link to comment
Share on other sites

Ok.

Let me very, very blunt here.

 

Explain your problem and post all relevant code, preferably as a git repo.

 

Your last several posts have flip-flopped back and forth over what you did (or didn't do), that it worked (or didn't), and trying to ask a question about why what you did worked (or didn't) that I have no fucking clue what it is you're asking me (including whether or not you still have a problem!).

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

 

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

 

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

Link to comment
Share on other sites

Fine I do it again. This is current status. I included everything that is part of it.

 

Spoiler

image.thumb.png.f99479562f76a7ac9f4fc44dfd84d600.png

 

"chopping_block.json" in "assets.automation.blockstates"

Spoiler

{
	"forge_marker": 1,
	"variants": {
		"powered": {
			"false": {
				"model": "automation:blocks/chopping_block"
			},
			"true": {
				"model": "automation:blocks/chopping_block_powered"
			}
		},
		"facing": {
			"north": {
				"y": 0
			},
			"east": {
				"y": 90
			},
			"south": {
				"y": 180
			},
			"west": {
				"y": 270
			},
			"down": {
				"x": 90
			},
			"up": {
				"x": 270
			}
		}
	}
}

 

 

"chopping_block.json" in "assets.automation.models.blocks"

Spoiler

{
	"parent": "block/cube",
	"textures": {
		"particle": "automation:blocks/chopping_block/north",
		"north": "automation:blocks/chopping_block/north",
		"south": "automation:blocks/chopping_block/south",
		"west": "automation:blocks/chopping_block/west",
		"east": "automation:blocks/chopping_block/east",
		"up": "automation:blocks/chopping_block/up",
		"down": "automation:blocks/chopping_block/down"
	}
}

 

 

"chopping_block_powered.json" in "assets.automation.models.blocks"

Spoiler

{
	"parent": "block/cube",
	"textures": {
		"particle": "automation:blocks/chopping_block/north_powered",
		"north": "automation:blocks/chopping_block/north_powered",
		"south": "automation:blocks/chopping_block/south_powered",
		"west": "automation:blocks/chopping_block/west_powered",
		"east": "automation:blocks/chopping_block/east_powered",
		"up": "automation:blocks/chopping_block/up_powered",
		"down": "automation:blocks/chopping_block/down_powered"
	}
}

 

 

"AutoTrees.java"

Spoiler

package com.autotrees.main;

import com.autotrees.mechanics.AutoPlanting;
import com.autotrees.objects.ChoppingBlock;

import net.minecraft.block.Block;
import net.minecraft.item.Item;
import net.minecraft.tileentity.TileEntityType;
import net.minecraftforge.common.MinecraftForge;
import net.minecraftforge.event.RegistryEvent;
import net.minecraftforge.eventbus.api.SubscribeEvent;
import net.minecraftforge.fml.common.Mod;
import net.minecraftforge.fml.common.Mod.EventBusSubscriber;

@Mod(ModSetup.MODID)
public class AutoTrees {
	
	//------------------------------------------------------------------------------------------------------------------------------------------------
	
	//recipe book - own tab with these recipes + unlocked from start maybe?
	
	//------------------------------------------------------------------------------------------------------------------------------------------------
	
    public AutoTrees() {
    	//MinecraftForge.EVENT_BUS.register(new AutoPlanting());
        MinecraftForge.EVENT_BUS.register(this);
    }
    
    //------------------------------------------------------------------------------------------------------------------------------------------------

	@EventBusSubscriber(bus=Mod.EventBusSubscriber.Bus.MOD)
    public static class RegistryEventsMod {
    	@SubscribeEvent
        public static void onBlocksRegistry(final RegistryEvent.Register<Block> blockRegistryEvent) {
            blockRegistryEvent.getRegistry().register(ChoppingBlock.getINSTANCE());
        }
    	
    	@SubscribeEvent
        public static void onItemsRegistry(final RegistryEvent.Register<Item> itemRegistryEvent) {
            itemRegistryEvent.getRegistry().register(ChoppingBlock.getBlockItemINSTANCE());
        }
    	
    	@SubscribeEvent
        public static void onTileEntityRegistry(final RegistryEvent.Register<TileEntityType<?>> tileEntityRegistryEvent) {
    		//tileEntityRegistryEvent.getRegistry().register(TileEntityType.Builder.create(ChoppingBlockTile::new, ModSetup.CHOPPING_BLOCK).build(null).setRegistryName("firstblock"));
        }
    }
}

 

 

"ChoppingBlock.java"

Spoiler

package com.autotrees.objects;

import javax.annotation.Nullable;

import com.autotrees.main.ModSetup;

import net.minecraft.block.Block;
import net.minecraft.block.BlockState;
import net.minecraft.block.SoundType;
import net.minecraft.block.material.Material;
import net.minecraft.entity.player.PlayerEntity;
import net.minecraft.entity.player.ServerPlayerEntity;
import net.minecraft.inventory.container.INamedContainerProvider;
import net.minecraft.item.BlockItemUseContext;
import net.minecraft.item.Item;
import net.minecraft.state.StateContainer;
import net.minecraft.state.properties.BlockStateProperties;
import net.minecraft.tileentity.TileEntity;
import net.minecraft.util.ActionResultType;
import net.minecraft.util.Hand;
import net.minecraft.util.math.BlockPos;
import net.minecraft.util.math.BlockRayTraceResult;
import net.minecraft.world.IBlockReader;
import net.minecraft.world.World;
import net.minecraftforge.common.ToolType;
import net.minecraftforge.fml.network.NetworkHooks;

public class ChoppingBlock extends Block {

	//otazky - ten file je naky komplikovany - nejde to rychleji?, FACING automaticky? a co ta func depricated a click taky a action neni?
	//proc je item bily?
	
	// textura, funkce-gui-inventar

	private static final ChoppingBlock INSTANCE = new ChoppingBlock();

	private ChoppingBlock() {
		super(getProperties());
		setRegistryName(ModSetup.CHOPPING_BLOCK_NAME);
	}

	public static Block getINSTANCE() {
		return INSTANCE;
	}

	private static Properties getProperties() {
		Properties properties = Properties.create(Material.IRON);
		properties.sound(SoundType.METAL);
		properties.harvestTool(ToolType.PICKAXE);
		properties.hardnessAndResistance(3.0f);
		properties.lightValue(10);
		return properties;
	}

	public static Item getBlockItemINSTANCE() {
		return ChoppingBlockItem.getINSTANCE();
	}

	// ------------------------------------------------------------------------------------------------------------------------------------------------
	/*
	@Override
    public boolean hasTileEntity(BlockState state) {
        return true;
    }

    @Nullable
    @Override
    public TileEntity createTileEntity(BlockState state, IBlockReader world) {
        return new ChoppingBlockTile();
    }*/

    @Override
    public int getLightValue(BlockState state) {
        return state.get(BlockStateProperties.POWERED) ? lightValue : 0;
    }
	
	@Override
	public BlockState getStateForPlacement(BlockItemUseContext context) {
		return this.getDefaultState().with(BlockStateProperties.FACING, context.getPlacementHorizontalFacing().getOpposite());
	}
	
	@Override
    protected void fillStateContainer(StateContainer.Builder<Block, BlockState> builder) {
        builder.add(BlockStateProperties.FACING, BlockStateProperties.POWERED);
		//builder.add(BlockStateProperties.POWERED);
    }
	/*
	@Override
	public ActionResultType func_225533_a_(BlockState p_225533_1_, World p_225533_2_, BlockPos p_225533_3_, PlayerEntity p_225533_4_, Hand p_225533_5_, BlockRayTraceResult p_225533_6_) {
        if (!p_225533_2_.isRemote) {
            TileEntity tileEntity = p_225533_2_.getTileEntity(p_225533_3_);
            if (tileEntity instanceof INamedContainerProvider) {
                NetworkHooks.openGui((ServerPlayerEntity) p_225533_4_, (INamedContainerProvider) tileEntity, tileEntity.getPos());
            } else {
                throw new IllegalStateException("Our named container provider is missing!");
            }
        }
        return super.func_225533_a_(p_225533_1_, p_225533_2_, p_225533_3_, p_225533_4_, p_225533_5_, p_225533_6_);
    }*/
}

 

 

"ChoppingBlockItem.java"

Spoiler

package com.autotrees.objects;

import com.autotrees.main.ModSetup;

import net.minecraft.item.BlockItem;
import net.minecraft.item.Item;

public class ChoppingBlockItem extends BlockItem {

	private static final BlockItem INSTANCE = new ChoppingBlockItem();

	private ChoppingBlockItem() {
		super(ModSetup.CHOPPING_BLOCK, getProperties());
		setRegistryName(ModSetup.CHOPPING_BLOCK_NAME);
	}

	public static BlockItem getINSTANCE() {
		return INSTANCE;
	}
	
	private static Properties getProperties() {
		Properties propeties = new Item.Properties().group(AutomationItemGroup.getINSTANCE());
		return propeties;
	}
}

 

 

"AutomationItemGroup.java"

Spoiler

package com.autotrees.objects;

import com.autotrees.main.ModSetup;

import net.minecraft.item.ItemGroup;
import net.minecraft.item.ItemStack;

public class AutomationItemGroup extends ItemGroup {

	private static final AutomationItemGroup INSTANCE = new AutomationItemGroup();

	private AutomationItemGroup() {
		super(ModSetup.AUTOMATION_ITEM_GROUP_NAME);
	}

	@Override
	public ItemStack createIcon() {
        return new ItemStack(ModSetup.CHOPPING_BLOCK);
	}

	public static AutomationItemGroup getINSTANCE() {
		return INSTANCE;
	}
}

 

 

"ModSetup.java"

Spoiler

package com.autotrees.main;

import com.autotrees.objects.ChoppingBlock;
import com.autotrees.objects.ChoppingBlockTile;

import net.minecraft.tileentity.TileEntityType;
import net.minecraftforge.registries.ObjectHolder;

public class ModSetup {
	
	//mechanics
	public static final int UNTIL_PLANT_TIMER = 5;

	//names, strings, registry names etc.
	public static final String MODID= "automation";
	public static final String CHOPPING_BLOCK_NAME = "chopping_block";
	public static final String AUTOMATION_ITEM_GROUP_NAME = "automation_item_group";
	
	//------------------------------------------------------------------------------------------------------------------------------------------------
	
	@ObjectHolder((MODID+":"+CHOPPING_BLOCK_NAME))
	public static ChoppingBlock CHOPPING_BLOCK;
	
	//@ObjectHolder((MODID+":"+CHOPPING_BLOCK_NAME))
    //public static TileEntityType<ChoppingBlockTile> CHOPPING_BLOCK_TILE;
}

 

 

I wanted include debug file but it is too long - only errors and warnings is this:

Spoiler

[08Jan2020 00:00:49.156] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [forge] Found status: BETA_OUTDATED Current: 30.0.30 Target: 30.0.33
[08Jan2020 00:00:50.249] [Server-Worker-2/WARN] [net.minecraft.client.renderer.model.ModelBakery/]: Exception loading blockstate definition: 'automation:blockstates/chopping_block.json' missing model for variant: 'automation:chopping_block#facing=north,powered=false'
[08Jan2020 00:00:50.250] [Server-Worker-2/WARN] [net.minecraft.client.renderer.model.ModelBakery/]: Exception loading blockstate definition: 'automation:blockstates/chopping_block.json' missing model for variant: 'automation:chopping_block#facing=east,powered=false'
[08Jan2020 00:00:50.251] [Server-Worker-2/WARN] [net.minecraft.client.renderer.model.ModelBakery/]: Exception loading blockstate definition: 'automation:blockstates/chopping_block.json' missing model for variant: 'automation:chopping_block#facing=south,powered=true'
[08Jan2020 00:00:50.251] [Server-Worker-2/WARN] [net.minecraft.client.renderer.model.ModelBakery/]: Exception loading blockstate definition: 'automation:blockstates/chopping_block.json' missing model for variant: 'automation:chopping_block#facing=west,powered=true'
[08Jan2020 00:00:50.252] [Server-Worker-2/WARN] [net.minecraft.client.renderer.model.ModelBakery/]: Exception loading blockstate definition: 'automation:blockstates/chopping_block.json' missing model for variant: 'automation:chopping_block#facing=west,powered=false'
[08Jan2020 00:00:50.252] [Server-Worker-2/WARN] [net.minecraft.client.renderer.model.ModelBakery/]: Exception loading blockstate definition: 'automation:blockstates/chopping_block.json' missing model for variant: 'automation:chopping_block#facing=east,powered=true'
[08Jan2020 00:00:50.252] [Server-Worker-2/WARN] [net.minecraft.client.renderer.model.ModelBakery/]: Exception loading blockstate definition: 'automation:blockstates/chopping_block.json' missing model for variant: 'automation:chopping_block#facing=south,powered=false'
[08Jan2020 00:00:50.253] [Server-Worker-2/WARN] [net.minecraft.client.renderer.model.ModelBakery/]: Exception loading blockstate definition: 'automation:blockstates/chopping_block.json' missing model for variant: 'automation:chopping_block#facing=down,powered=true'
[08Jan2020 00:00:50.254] [Server-Worker-2/WARN] [net.minecraft.client.renderer.model.ModelBakery/]: Exception loading blockstate definition: 'automation:blockstates/chopping_block.json' missing model for variant: 'automation:chopping_block#facing=north,powered=true'
[08Jan2020 00:00:50.254] [Server-Worker-2/WARN] [net.minecraft.client.renderer.model.ModelBakery/]: Exception loading blockstate definition: 'automation:blockstates/chopping_block.json' missing model for variant: 'automation:chopping_block#facing=down,powered=false'
[08Jan2020 00:00:50.255] [Server-Worker-2/WARN] [net.minecraft.client.renderer.model.ModelBakery/]: Exception loading blockstate definition: 'automation:blockstates/chopping_block.json' missing model for variant: 'automation:chopping_block#facing=up,powered=true'
[08Jan2020 00:00:50.256] [Server-Worker-2/WARN] [net.minecraft.client.renderer.model.ModelBakery/]: Exception loading blockstate definition: 'automation:blockstates/chopping_block.json' missing model for variant: 'automation:chopping_block#facing=up,powered=false'
[08Jan2020 00:00:50.257] [Server-Worker-2/WARN] [net.minecraft.client.renderer.model.ModelBakery/]: Exception loading blockstate definition: 'automation:blockstates/chopping_block.json' in resourcepack: 'Mod Resources': Missing model, expected to find a string

 

 

Question and problem:

Block has default purple/black texture so it didn't load. What am I doing wrong?

Edited by KillBill61
Link to comment
Share on other sites

1 hour ago, KillBill61 said:

private static final ChoppingBlock INSTANCE = new ChoppingBlock();

Oh hey look. A static initializer. Don't do this. It fucks everything up. Problematic Code #8.

 

1 hour ago, KillBill61 said:

public static BlockItem getINSTANCE() { return INSTANCE; }

This is literally what @ObjectHolders are for. Not this garbage.

Edit, I see you're using this to register your blocks. Don't do this either. Just call new inside the registry event.

Edited by Draco18s

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

 

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

 

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

Link to comment
Share on other sites

I changed it so it probably eliminate some future problems but it actually didn't change anything.

I changed this:

 

"AutoTrees"

Spoiler

package com.autotrees.main;

import com.autotrees.mechanics.AutoPlanting;
import com.autotrees.objects.ChoppingBlock;
import com.autotrees.objects.ChoppingBlockItem;

import net.minecraft.block.Block;
import net.minecraft.item.Item;
import net.minecraft.tileentity.TileEntityType;
import net.minecraftforge.common.MinecraftForge;
import net.minecraftforge.event.RegistryEvent;
import net.minecraftforge.eventbus.api.SubscribeEvent;
import net.minecraftforge.fml.common.Mod;
import net.minecraftforge.fml.common.Mod.EventBusSubscriber;

@Mod(ModSetup.MODID)
public class AutoTrees {
	
	//------------------------------------------------------------------------------------------------------------------------------------------------
	
	//recipe book - own tab with these recipes + unlocked from start maybe?
	
	//------------------------------------------------------------------------------------------------------------------------------------------------
	
    public AutoTrees() {
    	MinecraftForge.EVENT_BUS.register(new AutoPlanting());
        MinecraftForge.EVENT_BUS.register(this);
    }
    
    //------------------------------------------------------------------------------------------------------------------------------------------------

	@EventBusSubscriber(bus=Mod.EventBusSubscriber.Bus.MOD)
    public static class RegistryEventsMod {
    	@SubscribeEvent
        public static void onBlocksRegistry(final RegistryEvent.Register<Block> blockRegistryEvent) {
            blockRegistryEvent.getRegistry().register(new ChoppingBlock());
        }
    	
    	@SubscribeEvent
        public static void onItemsRegistry(final RegistryEvent.Register<Item> itemRegistryEvent) {
            itemRegistryEvent.getRegistry().register(new ChoppingBlockItem());
        }
    	
    	@SubscribeEvent
        public static void onTileEntityRegistry(final RegistryEvent.Register<TileEntityType<?>> tileEntityRegistryEvent) {
    		//tileEntityRegistryEvent.getRegistry().register(TileEntityType.Builder.create(ChoppingBlockTile::new, ModSetup.CHOPPING_BLOCK).build(null).setRegistryName("firstblock"));
        }
    }
}

 

 

"ModSetup.java"

Spoiler

package com.autotrees.main;

import com.autotrees.objects.AutomationItemGroup;
import com.autotrees.objects.ChoppingBlock;
import com.autotrees.objects.ChoppingBlockItem;
import com.autotrees.objects.ChoppingBlockTile;

import net.minecraft.tileentity.TileEntityType;
import net.minecraftforge.registries.ObjectHolder;

public class ModSetup {
	
	//mechanics
	public static final int UNTIL_PLANT_TIMER = 5;

	//names, strings, registry names etc.
	public static final String MODID= "automation";
	public static final String CHOPPING_BLOCK_NAME = "chopping_block";
	public static final String AUTOMATION_ITEM_GROUP_NAME = "automation_item_group";
	
	//------------------------------------------------------------------------------------------------------------------------------------------------
	
	@ObjectHolder((MODID+":"+CHOPPING_BLOCK_NAME))
	public static ChoppingBlock CHOPPING_BLOCK;
	
	@ObjectHolder((MODID+":"+CHOPPING_BLOCK_NAME))
	public static ChoppingBlockItem CHOPPING_BLOCK_ITEM;
	
	//@ObjectHolder((MODID+":"+CHOPPING_BLOCK_NAME))
    //public static TileEntityType<ChoppingBlockTile> CHOPPING_BLOCK_TILE;
}

 

 

"ChoppingBlock.java"

Spoiler

package com.autotrees.objects;

import javax.annotation.Nullable;

import com.autotrees.main.ModSetup;

import net.minecraft.block.Block;
import net.minecraft.block.BlockState;
import net.minecraft.block.SoundType;
import net.minecraft.block.material.Material;
import net.minecraft.entity.player.PlayerEntity;
import net.minecraft.entity.player.ServerPlayerEntity;
import net.minecraft.inventory.container.INamedContainerProvider;
import net.minecraft.item.BlockItemUseContext;
import net.minecraft.item.Item;
import net.minecraft.state.StateContainer;
import net.minecraft.state.properties.BlockStateProperties;
import net.minecraft.tileentity.TileEntity;
import net.minecraft.util.ActionResultType;
import net.minecraft.util.Hand;
import net.minecraft.util.math.BlockPos;
import net.minecraft.util.math.BlockRayTraceResult;
import net.minecraft.world.IBlockReader;
import net.minecraft.world.World;
import net.minecraftforge.common.ToolType;
import net.minecraftforge.fml.network.NetworkHooks;

public class ChoppingBlock extends Block {

	//otazky - ten file je naky komplikovany - nejde to rychleji?, FACING automaticky? a co ta func depricated a click taky a action neni?
	//proc je item bily?
	
	// textura, funkce-gui-inventar

	public ChoppingBlock() {
		super(getProperties());
		setRegistryName(ModSetup.CHOPPING_BLOCK_NAME);
	}

	private static Properties getProperties() {
		Properties properties = Properties.create(Material.IRON);
		properties.sound(SoundType.METAL);
		properties.harvestTool(ToolType.PICKAXE);
		properties.hardnessAndResistance(3.0f);
		properties.lightValue(10);
		return properties;
	}

	// ------------------------------------------------------------------------------------------------------------------------------------------------
	/*
	@Override
    public boolean hasTileEntity(BlockState state) {
        return true;
    }

    @Nullable
    @Override
    public TileEntity createTileEntity(BlockState state, IBlockReader world) {
        return new ChoppingBlockTile();
    }*/

    @Override
    public int getLightValue(BlockState state) {
        return state.get(BlockStateProperties.POWERED) ? lightValue : 0;
    }
	
	@Override
	public BlockState getStateForPlacement(BlockItemUseContext context) {
		return this.getDefaultState().with(BlockStateProperties.FACING, context.getPlacementHorizontalFacing().getOpposite());
	}
	
	@Override
    protected void fillStateContainer(StateContainer.Builder<Block, BlockState> builder) {
        builder.add(BlockStateProperties.FACING, BlockStateProperties.POWERED);
		//builder.add(BlockStateProperties.POWERED);
    }
	/*
	@Override
	public ActionResultType func_225533_a_(BlockState p_225533_1_, World p_225533_2_, BlockPos p_225533_3_, PlayerEntity p_225533_4_, Hand p_225533_5_, BlockRayTraceResult p_225533_6_) {
        if (!p_225533_2_.isRemote) {
            TileEntity tileEntity = p_225533_2_.getTileEntity(p_225533_3_);
            if (tileEntity instanceof INamedContainerProvider) {
                NetworkHooks.openGui((ServerPlayerEntity) p_225533_4_, (INamedContainerProvider) tileEntity, tileEntity.getPos());
            } else {
                throw new IllegalStateException("Our named container provider is missing!");
            }
        }
        return super.func_225533_a_(p_225533_1_, p_225533_2_, p_225533_3_, p_225533_4_, p_225533_5_, p_225533_6_);
    }*/
}

 

 

"ChoppingBlockItem.java"

Spoiler

package com.autotrees.objects;

import com.autotrees.main.ModSetup;

import net.minecraft.item.BlockItem;
import net.minecraft.item.Item;

public class ChoppingBlockItem extends BlockItem {

	public ChoppingBlockItem() {
		super(ModSetup.CHOPPING_BLOCK, getProperties());
		setRegistryName(ModSetup.CHOPPING_BLOCK_NAME);
	}
	
	private static Properties getProperties() {
		Properties propeties = new Item.Properties().group(AutomationItemGroup.getINSTANCE());
		return propeties;
	}
}

 

 

"AutomationItemGroup" is same because I can't use it with @ObjectHolder and calling its constructor multiple time means multiple tabs in game.

 

 

Just screenshot of my blocks (still same as before changes). Don't mind my texture - just trying how it looks in game + information about what is which side. You can see that placed block don't have texture and the blockitem has texture.

Spoiler

image.png.59b0bc7d3fb27e0146fe1884a2e13eef.png

 

This is "chopping_block.json" in "assets.automation.models.item"

Spoiler

{
  "parent": "automation:blocks/chopping_block"
}

 

 

Also can you be more decent? I know you try to help me but you are constantly swearing at me and it makes me sad :/ You know you can write it without it.

Link to comment
Share on other sites

  • 2 months later...

Join the conversation

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

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

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

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

×   Your previous content has been restored.   Clear editor

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

Announcements



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • I have been trying to make a server with forge but I keep running into an issue. I have jdk 22 installed as well as Java 8. here is the debug file  
    • it crashed again     What the console says : [00:02:03] [Server thread/INFO] [Easy NPC/]: [EntityManager] Server started! [00:02:03] [Server thread/INFO] [co.gi.al.ic.IceAndFire/]: {iceandfire:fire_dragon_roost=true, iceandfire:fire_lily=true, iceandfire:spawn_dragon_skeleton_fire=true, iceandfire:lightning_dragon_roost=true, iceandfire:spawn_dragon_skeleton_lightning=true, iceandfire:ice_dragon_roost=true, iceandfire:ice_dragon_cave=true, iceandfire:lightning_dragon_cave=true, iceandfire:cyclops_cave=true, iceandfire:spawn_wandering_cyclops=true, iceandfire:spawn_sea_serpent=true, iceandfire:frost_lily=true, iceandfire:hydra_cave=true, iceandfire:lightning_lily=true, iceandfireixie_village=true, iceandfire:myrmex_hive_jungle=true, iceandfire:myrmex_hive_desert=true, iceandfire:silver_ore=true, iceandfire:siren_island=true, iceandfire:spawn_dragon_skeleton_ice=true, iceandfire:spawn_stymphalian_bird=true, iceandfire:fire_dragon_cave=true, iceandfire:sapphire_ore=true, iceandfire:spawn_hippocampus=true, iceandfire:spawn_death_worm=true} [00:02:03] [Server thread/INFO] [co.gi.al.ic.IceAndFire/]: {TROLL_S=true, HIPPOGRYPH=true, AMPHITHERE=true, COCKATRICE=true, TROLL_M=true, DREAD_LICH=true, TROLL_F=true} [00:02:03] [Server thread/INFO] [ne.be.lo.WeaponRegistry/]: Encoded Weapon Attribute registry size (with package overhead): 41976 bytes (in 5 string chunks with the size of 10000) [00:02:03] [Server thread/INFO] [patchouli/]: Sending reload packet to clients [00:02:03] [Server thread/WARN] [voicechat/]: [voicechat] Running in offline mode - Voice chat encryption is not secure! [00:02:03] [VoiceChatServerThread/INFO] [voicechat/]: [voicechat] Using server-ip as bind address: 0.0.0.0 [00:02:03] [Server thread/WARN] [ModernFix/]: Dedicated server took 22.521 seconds to load [00:02:03] [VoiceChatServerThread/INFO] [voicechat/]: [voicechat] Voice chat server started at 0.0.0.0:25565 [00:02:03] [Server thread/WARN] [minecraft/SynchedEntityData]: defineId called for: class net.minecraft.world.entity.player.Player from class tschipp.carryon.common.carry.CarryOnDataManager [00:02:03] [Server thread/INFO] [ne.mi.co.AdvancementLoadFix/]: Using new advancement loading for net.minecraft.server.PlayerAdvancements@2941ffd5 [00:02:10] [Netty Epoll Server IO #2/INFO] [Calio/]: Received acknowledgment for login packet with id 0 [00:02:10] [Netty Epoll Server IO #2/INFO] [Calio/]: Received acknowledgment for login packet with id 1 [00:02:10] [Netty Epoll Server IO #2/INFO] [Calio/]: Received acknowledgment for login packet with id 2 [00:02:10] [Netty Epoll Server IO #2/INFO] [Calio/]: Received acknowledgment for login packet with id 3 [00:02:10] [Netty Epoll Server IO #2/INFO] [Calio/]: Received acknowledgment for login packet with id 4 [00:02:10] [Netty Epoll Server IO #2/INFO] [Calio/]: Received acknowledgment for login packet with id 5 [00:02:10] [Netty Epoll Server IO #2/INFO] [Calio/]: Received acknowledgment for login packet with id 6 [00:02:10] [Netty Epoll Server IO #2/INFO] [Calio/]: Received acknowledgment for login packet with id 7 [00:02:10] [Netty Epoll Server IO #2/INFO] [Calio/]: Received acknowledgment for login packet with id 8 [00:02:10] [Netty Epoll Server IO #2/INFO] [Calio/]: Received acknowledgment for login packet with id 9 [00:02:10] [Netty Epoll Server IO #2/INFO] [Calio/]: Received acknowledgment for login packet with id 10 [00:02:10] [Netty Epoll Server IO #2/INFO] [Calio/]: Received acknowledgment for login packet with id 11 [00:02:10] [Netty Epoll Server IO #2/INFO] [Calio/]: Received acknowledgment for login packet with id 12 [00:02:10] [Netty Epoll Server IO #2/INFO] [Calio/]: Received acknowledgment for login packet with id 13 [00:02:10] [Netty Epoll Server IO #2/INFO] [Calio/]: Received acknowledgment for login packet with id 14 [00:02:19] [Server thread/INFO] [ne.mi.co.AdvancementLoadFix/]: Using new advancement loading for net.minecraft.server.PlayerAdvancements@ebc7ef2 [00:02:19] [Server thread/INFO] [minecraft/PlayerList]: ZacAdos[/90.2.17.162:49242] logged in with entity id 1062 at (-1848.6727005281205, 221.0, -3054.2468255848935) [00:02:19] [Server thread/ERROR] [ModernFix/]: Skipping entity ID sync for com.talhanation.smallships.world.entity.ship.Ship: java.lang.NoClassDefFoundError: net/minecraft/client/CameraType [00:02:19] [Server thread/INFO] [minecraft/MinecraftServer]: - Gloop - ZacAdos joined the game [00:02:19] [Server thread/INFO] [xa.pa.OpenPartiesAndClaims/]: Updating all forceload tickets for cc56befd-d376-3526-a760-340713c478bd [00:02:19] [Server thread/INFO] [se.mi.te.da.DataManager/]: Sending data to client: ZacAdos [00:02:19] [Server thread/INFO] [voicechat/]: [voicechat] Received secret request of - Gloop - ZacAdos (17) [00:02:19] [Server thread/INFO] [voicechat/]: [voicechat] Sent secret to - Gloop - ZacAdos [00:02:21] [VoiceChatPacketProcessingThread/INFO] [voicechat/]: [voicechat] Successfully authenticated player cc56befd-d376-3526-a760-340713c478bd [00:02:22] [VoiceChatPacketProcessingThread/INFO] [voicechat/]: [voicechat] Successfully validated connection of player cc56befd-d376-3526-a760-340713c478bd [00:02:22] [VoiceChatPacketProcessingThread/INFO] [voicechat/]: [voicechat] Player - Gloop - ZacAdos (cc56befd-d376-3526-a760-340713c478bd) successfully connected to voice chat stop [00:02:34] [Server thread/INFO] [minecraft/MinecraftServer]: Stopping the server [00:02:34] [Server thread/INFO] [mo.pl.ar.ArmourersWorkshop/]: stop local service [00:02:34] [Server thread/INFO] [minecraft/MinecraftServer]: Stopping server [00:02:34] [Server thread/INFO] [minecraft/MinecraftServer]: Saving players [00:02:34] [Server thread/INFO] [minecraft/ServerGamePacketListenerImpl]: ZacAdos lost connection: Server closed [00:02:34] [Server thread/INFO] [minecraft/MinecraftServer]: - Gloop - ZacAdos left the game [00:02:34] [Server thread/INFO] [xa.pa.OpenPartiesAndClaims/]: Updating all forceload tickets for cc56befd-d376-3526-a760-340713c478bd [00:02:34] [Server thread/INFO] [minecraft/MinecraftServer]: Saving worlds [00:02:34] [Server thread/INFO] [minecraft/MinecraftServer]: Saving chunks for level 'ServerLevel[world]'/minecraft:overworld [00:02:34] [Server thread/INFO] [minecraft/MinecraftServer]: Saving chunks for level 'ServerLevel[world]'/minecraft:the_end [00:02:34] [Server thread/INFO] [minecraft/MinecraftServer]: Saving chunks for level 'ServerLevel[world]'/minecraft:the_nether [00:02:34] [Server thread/INFO] [minecraft/MinecraftServer]: ThreadedAnvilChunkStorage (world): All chunks are saved [00:02:34] [Server thread/INFO] [minecraft/MinecraftServer]: ThreadedAnvilChunkStorage (DIM1): All chunks are saved [00:02:34] [Server thread/INFO] [minecraft/MinecraftServer]: ThreadedAnvilChunkStorage (DIM-1): All chunks are saved [00:02:34] [Server thread/INFO] [minecraft/MinecraftServer]: ThreadedAnvilChunkStorage: All dimensions are saved [00:02:34] [Server thread/INFO] [xa.pa.OpenPartiesAndClaims/]: Stopping IO worker... [00:02:34] [Server thread/INFO] [xa.pa.OpenPartiesAndClaims/]: Stopped IO worker! [00:02:34] [Server thread/INFO] [Calio/]: Removing Dynamic Registries for: net.minecraft.server.dedicated.DedicatedServer@7dc879e1 [MineStrator Daemon]: Checking server disk space usage, this could take a few seconds... [MineStrator Daemon]: Updating process configuration files... [MineStrator Daemon]: Ensuring file permissions are set correctly, this could take a few seconds... [MineStrator Daemon]: Pulling Docker container image, this could take a few minutes to complete... [MineStrator Daemon]: Finished pulling Docker container image container@pterodactyl~ java -version openjdk version "17.0.10" 2024-01-16 OpenJDK Runtime Environment Temurin-17.0.10+7 (build 17.0.10+7) OpenJDK 64-Bit Server VM Temurin-17.0.10+7 (build 17.0.10+7, mixed mode, sharing) container@pterodactyl~ java -Xms128M -Xmx6302M -Dterminal.jline=false -Dterminal.ansi=true -Djline.terminal=jline.UnsupportedTerminal -p libraries/cpw/mods/bootstraplauncher/1.1.2/bootstraplauncher-1.1.2.jar:libraries/cpw/mods/securejarhandler/2.1.4/securejarhandler-2.1.4.jar:libraries/org/ow2/asm/asm-commons/9.5/asm-commons-9.5.jar:libraries/org/ow2/asm/asm-util/9.5/asm-util-9.5.jar:libraries/org/ow2/asm/asm-analysis/9.5/asm-analysis-9.5.jar:libraries/org/ow2/asm/asm-tree/9.5/asm-tree-9.5.jar:libraries/org/ow2/asm/asm/9.5/asm-9.5.jar:libraries/net/minecraftforge/JarJarFileSystems/0.3.16/JarJarFileSystems-0.3.16.jar --add-modules ALL-MODULE-PATH --add-opens java.base/java.util.jar=cpw.mods.securejarhandler --add-opens java.base/java.lang.invoke=cpw.mods.securejarhandler --add-exports java.base/sun.security.util=cpw.mods.securejarhandler --add-exports jdk.naming.dns/com.sun.jndi.dns=java.naming -Djava.net.preferIPv6Addresses=system -DignoreList=bootstraplauncher-1.1.2.jar,securejarhandler-2.1.4.jar,asm-commons-9.5.jar,asm-util-9.5.jar,asm-analysis-9.5.jar,asm-tree-9.5.jar,asm-9.5.jar,JarJarFileSystems-0.3.16.jar -DlibraryDirectory=libraries -DlegacyClassPath=libraries/cpw/mods/securejarhandler/2.1.4/securejarhandler-2.1.4.jar:libraries/org/ow2/asm/asm/9.5/asm-9.5.jar:libraries/org/ow2/asm/asm-commons/9.5/asm-commons-9.5.jar:libraries/org/ow2/asm/asm-tree/9.5/asm-tree-9.5.jar:libraries/org/ow2/asm/asm-util/9.5/asm-util-9.5.jar:libraries/org/ow2/asm/asm-analysis/9.5/asm-analysis-9.5.jar:libraries/net/minecraftforge/accesstransformers/8.0.4/accesstransformers-8.0.4.jar:libraries/org/antlr/antlr4-runtime/4.9.1/antlr4-runtime-4.9.1.jar:libraries/net/minecraftforge/eventbus/6.0.3/eventbus-6.0.3.jar:libraries/net/minecraftforge/forgespi/6.0.0/forgespi-6.0.0.jar:libraries/net/minecraftforge/coremods/5.0.1/coremods-5.0.1.jar:libraries/cpw/mods/modlauncher/10.0.8/modlauncher-10.0.8.jar:libraries/net/minecraftforge/unsafe/0.2.0/unsafe-0.2.0.jar:libraries/com/electronwill/night-config/core/3.6.4/core-3.6.4.jar:libraries/com/electronwill/night-config/toml/3.6.4/toml-3.6.4.jar:libraries/org/apache/maven/maven-artifact/3.8.5/maven-artifact-3.8.5.jar:libraries/net/jodah/typetools/0.8.3/typetools-0.8.3.jar:libraries/net/minecrell/terminalconsoleappender/1.2.0/terminalconsoleappender-1.2.0.jar:libraries/org/jline/jline-reader/3.12.1/jline-reader-3.12.1.jar:libraries/org/jline/jline-terminal/3.12.1/jline-terminal-3.12.1.jar:libraries/org/spongepowered/mixin/0.8.5/mixin-0.8.5.jar:libraries/org/openjdk/nashorn/nashorn-core/15.3/nashorn-core-15.3.jar:libraries/net/minecraftforge/JarJarSelector/0.3.16/JarJarSelector-0.3.16.jar:libraries/net/minecraftforge/JarJarMetadata/0.3.16/JarJarMetadata-0.3.16.jar:libraries/net/minecraftforge/fmlloader/1.19.2-43.3.0/fmlloader-1.19.2-43.3.0.jar:libraries/net/minecraft/server/1.19.2-20220805.130853/server-1.19.2-20220805.130853-extra.jar:libraries/com/github/oshi/oshi-core/5.8.5/oshi-core-5.8.5.jar:libraries/com/google/code/gson/gson/2.8.9/gson-2.8.9.jar:libraries/com/google/guava/failureaccess/1.0.1/failureaccess-1.0.1.jar:libraries/com/google/guava/guava/31.0.1-jre/guava-31.0.1-jre.jar:libraries/com/mojang/authlib/3.11.49/authlib-3.11.49.jar:libraries/com/mojang/brigadier/1.0.18/brigadier-1.0.18.jar:libraries/com/mojang/datafixerupper/5.0.28/datafixerupper-5.0.28.jar:libraries/com/mojang/javabridge/1.2.24/javabridge-1.2.24.jar:libraries/com/mojang/logging/1.0.0/logging-1.0.0.jar:libraries/commons-io/commons-io/2.11.0/commons-io-2.11.0.jar:libraries/io/netty/netty-buffer/4.1.77.Final/netty-buffer-4.1.77.Final.jar:libraries/io/netty/netty-codec/4.1.77.Final/netty-codec-4.1.77.Final.jar:libraries/io/netty/netty-common/4.1.77.Final/netty-common-4.1.77.Final.jar:libraries/io/netty/netty-handler/4.1.77.Final/netty-handler-4.1.77.Final.jar:libraries/io/netty/netty-resolver/4.1.77.Final/netty-resolver-4.1.77.Final.jar:libraries/io/netty/netty-transport/4.1.77.Final/netty-transport-4.1.77.Final.jar:libraries/io/netty/netty-transport-classes-epoll/4.1.77.Final/netty-transport-classes-epoll-4.1.77.Final.jar:libraries/io/netty/netty-transport-native-epoll/4.1.77.Final/netty-transport-native-epoll-4.1.77.Final-linux-x86_64.jar:libraries/io/netty/netty-transport-native-epoll/4.1.77.Final/netty-transport-native-epoll-4.1.77.Final-linux-aarch_64.jar:libraries/io/netty/netty-transport-native-unix-common/4.1.77.Final/netty-transport-native-unix-common-4.1.77.Final.jar:libraries/it/unimi/dsi/fastutil/8.5.6/fastutil-8.5.6.jar:libraries/net/java/dev/jna/jna/5.10.0/jna-5.10.0.jar:libraries/net/java/dev/jna/jna-platform/5.10.0/jna-platform-5.10.0.jar:libraries/net/sf/jopt-simple/jopt-simple/5.0.4/jopt-simple-5.0.4.jar:libraries/org/apache/commons/commons-lang3/3.12.0/commons-lang3-3.12.0.jar:libraries/org/apache/logging/log4j/log4j-api/2.17.0/log4j-api-2.17.0.jar:libraries/org/apache/logging/log4j/log4j-core/2.17.0/log4j-core-2.17.0.jar:libraries/org/apache/logging/log4j/log4j-slf4j18-impl/2.17.0/log4j-slf4j18-impl-2.17.0.jar:libraries/org/slf4j/slf4j-api/1.8.0-beta4/slf4j-api-1.8.0-beta4.jar cpw.mods.bootstraplauncher.BootstrapLauncher --launchTarget forgeserver --fml.forgeVersion 43.3.0 --fml.mcVersion 1.19.2 --fml.forgeGroup net.minecraftforge --fml.mcpVersion 20220805.130853 [00:02:42] [main/INFO] [cp.mo.mo.Launcher/MODLAUNCHER]: ModLauncher running: args [--launchTarget, forgeserver, --fml.forgeVersion, 43.3.0, --fml.mcVersion, 1.19.2, --fml.forgeGroup, net.minecraftforge, --fml.mcpVersion, 20220805.130853] [00:02:42] [main/INFO] [cp.mo.mo.Launcher/MODLAUNCHER]: ModLauncher 10.0.8+10.0.8+main.0ef7e830 starting: java version 17.0.10 by Eclipse Adoptium; OS Linux arch amd64 version 6.1.0-12-amd64 [00:02:43] [main/INFO] [mixin/]: SpongePowered MIXIN Subsystem Version=0.8.5 Source=union:/home/container/libraries/org/spongepowered/mixin/0.8.5/mixin-0.8.5.jar%2363!/ Service=ModLauncher Env=SERVER [00:02:43] [main/WARN] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Mod file /home/container/libraries/net/minecraftforge/fmlcore/1.19.2-43.3.0/fmlcore-1.19.2-43.3.0.jar is missing mods.toml file [00:02:43] [main/WARN] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Mod file /home/container/libraries/net/minecraftforge/javafmllanguage/1.19.2-43.3.0/javafmllanguage-1.19.2-43.3.0.jar is missing mods.toml file [00:02:43] [main/WARN] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Mod file /home/container/libraries/net/minecraftforge/lowcodelanguage/1.19.2-43.3.0/lowcodelanguage-1.19.2-43.3.0.jar is missing mods.toml file [00:02:43] [main/WARN] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Mod file /home/container/libraries/net/minecraftforge/mclanguage/1.19.2-43.3.0/mclanguage-1.19.2-43.3.0.jar is missing mods.toml file [00:02:44] [main/WARN] [ne.mi.ja.se.JarSelector/]: Attempted to select two dependency jars from JarJar which have the same identification: Mod File: and Mod File: . Using Mod File: [00:02:44] [main/WARN] [ne.mi.ja.se.JarSelector/]: Attempted to select a dependency jar for JarJar which was passed in as source: resourcefullib. Using Mod File: /home/container/mods/resourcefullib-forge-1.19.2-1.1.24.jar [00:02:44] [main/INFO] [ne.mi.fm.lo.mo.JarInJarDependencyLocator/]: Found 13 dependencies adding them to mods collection Latest log [29Mar2024 00:02:42.803] [main/INFO] [cpw.mods.modlauncher.Launcher/MODLAUNCHER]: ModLauncher running: args [--launchTarget, forgeserver, --fml.forgeVersion, 43.3.0, --fml.mcVersion, 1.19.2, --fml.forgeGroup, net.minecraftforge, --fml.mcpVersion, 20220805.130853] [29Mar2024 00:02:42.805] [main/INFO] [cpw.mods.modlauncher.Launcher/MODLAUNCHER]: ModLauncher 10.0.8+10.0.8+main.0ef7e830 starting: java version 17.0.10 by Eclipse Adoptium; OS Linux arch amd64 version 6.1.0-12-amd64 [29Mar2024 00:02:43.548] [main/INFO] [mixin/]: SpongePowered MIXIN Subsystem Version=0.8.5 Source=union:/home/container/libraries/org/spongepowered/mixin/0.8.5/mixin-0.8.5.jar%2363!/ Service=ModLauncher Env=SERVER [29Mar2024 00:02:43.876] [main/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Mod file /home/container/libraries/net/minecraftforge/fmlcore/1.19.2-43.3.0/fmlcore-1.19.2-43.3.0.jar is missing mods.toml file [29Mar2024 00:02:43.877] [main/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Mod file /home/container/libraries/net/minecraftforge/javafmllanguage/1.19.2-43.3.0/javafmllanguage-1.19.2-43.3.0.jar is missing mods.toml file [29Mar2024 00:02:43.877] [main/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Mod file /home/container/libraries/net/minecraftforge/lowcodelanguage/1.19.2-43.3.0/lowcodelanguage-1.19.2-43.3.0.jar is missing mods.toml file [29Mar2024 00:02:43.878] [main/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Mod file /home/container/libraries/net/minecraftforge/mclanguage/1.19.2-43.3.0/mclanguage-1.19.2-43.3.0.jar is missing mods.toml file [29Mar2024 00:02:44.033] [main/WARN] [net.minecraftforge.jarjar.selection.JarSelector/]: Attempted to select two dependency jars from JarJar which have the same identification: Mod File: and Mod File: . Using Mod File: [29Mar2024 00:02:44.034] [main/WARN] [net.minecraftforge.jarjar.selection.JarSelector/]: Attempted to select a dependency jar for JarJar which was passed in as source: resourcefullib. Using Mod File: /home/container/mods/resourcefullib-forge-1.19.2-1.1.24.jar [29Mar2024 00:02:44.034] [main/INFO] [net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator/]: Found 13 dependencies adding them to mods collection
    • I am unable to do that. Brigadier is a mojang library that parses commands.
    • Hi, i appreciate the answer. I would love to do that, but we have active players with all their belongings in SSN. Also this mod is really handy and they would be mad if we removed it. Are you really certain that SSN is causing this? It would require lots of work to test it and SSN was not really an issue before we removed Fast Suite. Can it be related somehow? I will provide you with log before removing FS. PasteBin: https://pastebin.com/Y5EpLpNe (crash before removing Fast Suite, which I suspected to be a problem from some crash before)
  • Topics

×
×
  • Create New...

Important Information

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