mirror of
https://github.com/neocturne/MinedMap.git
synced 2025-07-06 15:49:07 +02:00
world: add sign position and material information to block entities
This commit is contained in:
parent
9aacd9cc2b
commit
fb361145eb
3 changed files with 83 additions and 17 deletions
|
@ -243,7 +243,12 @@ impl<'a> SingleRegionProcessor<'a> {
|
|||
}
|
||||
|
||||
if self.entities_needed {
|
||||
let mut block_entities = chunk.block_entities();
|
||||
let mut block_entities = chunk.block_entities().with_context(|| {
|
||||
format!(
|
||||
"Failed to process block entities for chunk {:?}",
|
||||
chunk_coords,
|
||||
)
|
||||
})?;
|
||||
self.entities.block_entities.append(&mut block_entities);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue