Skip to content

Commit

Permalink
Minor cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
Desoroxxx committed Dec 7, 2023
1 parent 98600ae commit 37c2b0e
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 @@ -17,6 +17,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
- Updated RFG
- Updated Gradle
- Fixed the names of the arrays of queues
- Cleaned up `LightingEngine`

## Alfheim Version 1.1.1 Changelog - 2023-11-19

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -373,7 +373,7 @@ private void fetchNeighborDataFromCursor(final EnumSkyBlock lightType) {
neighborChunk = neighborInfo.chunk = getChunk(neighborPos);

if (neighborChunk != null) {
ExtendedBlockStorage neighborSection = neighborChunk.getBlockStorageArray()[neighborPos.getY() >> 4];
final ExtendedBlockStorage neighborSection = neighborChunk.getBlockStorageArray()[neighborPos.getY() >> 4];

neighborInfo.light = getCachedLightFor(neighborChunk, neighborSection, neighborPos, lightType);
}
Expand Down

0 comments on commit 37c2b0e

Please sign in to comment.