Skip to content
This repository has been archived by the owner on Jul 1, 2024. It is now read-only.

Commit

Permalink
add waring
Browse files Browse the repository at this point in the history
  • Loading branch information
DimitriTimoz committed Dec 25, 2023
1 parent 309e9e8 commit 9828270
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion minecraft-server/src/world/map.rs
Original file line number Diff line number Diff line change
Expand Up @@ -504,7 +504,8 @@ impl WorldMap {
trace!("Loading chunk column at {:?}", position);
let mut shard = self.shards[shard].write().await;
shard.entry(position.clone()).or_insert_with(|| chunk);
LightManager::init_chunk_column_light(self, position).await;
// init light because we don't really load the chunk but we generate it
LightManager::init_chunk_column_light(self, position).await;
}


Expand Down

0 comments on commit 9828270

Please sign in to comment.