Jump to content

Recommended Posts

Posted

Ok I found a bug. When I apply it to the player, when the player jumps/sprint jumps, it will leave a trail of lighted blocks behind the player. Any way to fix this?

Creator of the MyFit, MagiCraft, Tesseract gun, and Papa's Wingeria mod.

Posted

You should remove the light for player, because they can be faster than 1block/tick.

I. Stellarium for Minecraft: Configurable Universe for Minecraft! (WIP)

II. Stellar Sky, Better Star Rendering&Sky Utility mod, had separated from Stellarium.

Posted

You should remove the light for player, because they can be faster than 1block/tick.

Though it is possible, it is unlikely, and even so, they will not be moving much faster than 1 block/tick.

 

There are a couple ways to combat this, but first I am going to explain the reason behind why it is doing this.

 

Light source blocks do not update themselves when block lights around them update. couple this with the sprint jumping where you can create light blocks in a diagonal fashion, you are creating light blocks that simply aren't getting updated by the code again.

 

the ways you can combat this is to update the players last position, the problem here is that the players last position can change by 0.1 blocks, so if they go through 1054.05, 80.34, 164.56 the block that get lit will be 1054, 80, 164 then they go to 1055.01, 79, 164 just before the tick update so that is their last position according to Minecraft, and it ends up trying to update 1055, 79, 164 instead of 1054, 80, 164.

 

The other way would be to update all 26 blocks around the players location. This would probably by your best option when using light on a player.

 

I would also suggest possibly setting a "last_block_lit" variable and updating the last lit block before creating the new source, this would help with updating stray block create due to teleportation.

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.