API
-
Recently Browsing
- No registered users viewing this page.
-
Posts
-
By CheeseEleven · Posted
Trying to load a modpack i just made and keep getting this error "The game crashed: unexpected error Error: java.lang.IllegalStateException: Cannot get config value before config is loaded." I've skimmed through the logs but I'm not sure what I should be looking for. Im also using Neoforge -
By flexindahard · Posted
I have a block that changes it's blockstate when you click on it with another copy of this block. I have a method for this and it works but I wonder if there are better ways of doing the exact same thing. public InteractionResult use(BlockState pState, Level pLevel, BlockPos pPos, Player pPlayer, InteractionHand pHand, BlockHitResult pHit) { if (!pLevel.isClientSide){ // check if player is holding a pot block // it is required to change the state "POTS" - the amount of pots that block contains // the amount of pots must not exeed 4 if (pHand == InteractionHand.MAIN_HAND && pPlayer.getMainHandItem().is((ModBlocks.LITTLE_POT.get().asItem())) && pState.getValue(POTS)<4) { // update block with new "POTS" state value pLevel.setBlock(pPos, pState.cycle(POTS), 3); // success return InteractionResult.CONSUME; } // otherwise fail } return InteractionResult.FAIL; } Thank you. -
By djdoyle1556 · Posted
I know that i have to put it into that website, but how do I get the crash report itself? first time dealing with this sorta thing -
By SierraVanguard · Posted
To add to this- Using Minecraft Forge 1.20.1, with the latest version of MixinExtras -
By SierraVanguard · Posted
The title pretty much says it all- I'm looking for some assistance regarding doing just that- Considering I have the logic required for triggering the condition I have in mind, it's rather hard to find documentation on the correct use of EntityMixins to accomplish the goal I have in mind. Any assistance/tips would be greatly appreciated!
-
-
Topics
-
Who's Online (See full list)
- There are no registered users currently online
Recommended Posts
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.