Skip to content

Commit

Permalink
Fixed #40
Browse files Browse the repository at this point in the history
So this was it huh?
  • Loading branch information
Desoroxxx committed Dec 17, 2024
1 parent 936dfb5 commit 30fa2fe
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@ and this project follows the [Ragnarök Versioning Convention](https://github.co

- Fixed compatibility with Vintagium (Thanks to [Asek3](https://github.com/Asek3) in [#41](https://github.com/Red-Studio-Ragnarok/Alfheim/pull/41))
- Fixed `ArrayIndexOutOfBoundsException` crashes
- Fixed client lighting not updating past render chunk boundaries [#40](https://github.com/Red-Studio-Ragnarok/Alfheim/issues/40)

### Internal

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ private boolean disableVanillaLightUpdates(final Set<BlockPos> instance) {
final int y = blockpos.getY();
final int z = blockpos.getZ();

markBlocksForUpdate(x, y, z, x, y, z, false);
markBlocksForUpdate(x - 1, y - 1, z - 1, x + 1, y + 1, z + 1, false);

lightUpdatesProcessed++;
}
Expand Down

0 comments on commit 30fa2fe

Please sign in to comment.