Jump to content
View in the app

A better way to browse. Learn more.

Forge Forums

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

kitescandal

Members
  • Joined

  • Last visited

  1. Oh, alright, that works a little differently than I'd imagined. That's very helpful! I added a lot of logging and was able to figure out where the problem was... It turned out that entityInside() was properly setting the block state on the server. But there was an onPlace() function that I stupidly neglected to include in my post, which was getting triggered by setBlock() and immediately reverting the block state back. It didn't occur to me that setting the block state with setBlock() would trigger onPlace (which I didn't even need to begin with). Not very smart of me... Thank you for your help!
  2. Hi! New here, so hopefully this is the right place to ask. I'm having trouble finding resources that explain server-client communication with regards to block states, which I think is the problem I'm having. I'm trying to create a block that is temporarily turned into an entity and then back into a block. The block isn't meant to be immediately removed - the entity and the block should coexist for a small period of time, but there should only be one entity for a particular block. The problem I'm having is that the block doesn't recognize that it's already created an entity, and creates a large number in a row. I'm trying to use the "TRIGGERED" block state to prevent this from happening, but this doesn't seem to be the correct way of doing it, as the block state doesn't seem to get set on the server side and then gets reverted on the client side. (I think.) Here's the relevant code from the custom block class: public static final BooleanProperty TRIGGERED = BlockStateProperties.TRIGGERED; public FallingStone(AbstractBlock.Properties properties) { super(properties); this.registerDefaultState(this.stateDefinition.any().setValue(TRIGGERED, false)); } protected void createBlockStateDefinition(StateContainer.Builder<Block, BlockState> builder) { builder.add(TRIGGERED); } public void entityInside(BlockState blockState, World world, BlockPos blockPos, Entity entity) { if(blockState.getValue(TRIGGERED) == false) { world.setBlock(blockPos, blockState.setValue(TRIGGERED, true), 3); // Not sure what the 3 does, honestly. Some kind of flags? FallingStoneEntity fallingStoneEntity = new FallingStoneEntity(world, (double)blockPos.getX() + 0.5D, (double)blockPos.getY(), (double)blockPos.getZ() + 0.5D, blockState); world.addFreshEntity(fallingStoneEntity); } } Any help would be much appreciated. (Also, the name "FallingStone" is a misnomer... I know I could just extend FallingBlock to do that.)

Important Information

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

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.