Jump to content

Recommended Posts

Posted
16 minutes ago, diesieben07 said:

Mojang uses @Deprecated in the block class to mean "do not call this, overriding it is fine".

Show what you tried.

        @Override
        public void tick(BlockState p_60462_, ServerLevel p_60463_, BlockPos p_60464_, Random p_60465_) {
            BlockPos p_152432_ = p_60464_;
                Random r = new Random();
                if(r.nextInt(0,100)<5)
                    for (int i = 0; i < r.nextInt(1,10); i++)
                        p_60463_.addParticle(ParticleTypes.EFFECT, p_152432_.getX()+r.nextFloat(0,1.3f),
                                p_152432_.getY()+0.3+r.nextFloat(0,1.3f),
                                p_152432_.getZ()+r.nextFloat(0,1.3f),
                                0,0,0);
            super.tick(p_60462_, p_60463_, p_60464_, p_60465_);
        }

it didnt work

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



×
×
  • Create New...

Important Information

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