Posted February 12, 20169 yr Alright I feel totally retarded to ask this. I am triing to spawn blocks of falling sand, but for some reason they are appear for a second and disappear right away. this is how I spawn the block int x = world.rand.nextInt(sizeX); int z = world.rand.nextInt(sizeZ); EntityFallingBlock block = new EntityFallingBlock(world, anchor.getX()+x, anchor.getY()+18, anchor.getZ()+5, Blocks.sand.getDefaultState()); world.spawnEntityInWorld(block); (It gets called on server side every 5 ticks if some conditions are true)
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.