Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
f70a3c1
Reuse TickData allocations between cycles
NailLegProcessorDivide Dec 27, 2025
3962fb9
Move work to its own thread Make IOLock async to prevent more deadlocks
CuzImClicks Jan 4, 2026
828bfbd
remove reference counting of chunk writes
CuzImClicks Jan 4, 2026
c87e91e
Merge branch 'master' of https://github.com/Pumpkin-MC/Pumpkin into a…
CuzImClicks Jan 4, 2026
d1dad1b
cargo clippy
CuzImClicks Jan 4, 2026
c05c17c
Merge branch 'master' of https://github.com/Pumpkin-MC/Pumpkin into a…
CuzImClicks Jan 5, 2026
ad42711
Merge branch 'master' of https://github.com/Pumpkin-MC/Pumpkin into a…
CuzImClicks Jan 6, 2026
562e947
switch to cancellation token
CuzImClicks Jan 6, 2026
8a8fad5
improve speed of tick data and add ability to change random tick speed
CuzImClicks Jan 6, 2026
0a241eb
Merge branch 'tickdata' into async_io_lock
CuzImClicks Jan 6, 2026
14cd8d8
optimize even more
CuzImClicks Jan 6, 2026
9537363
added reference counted writes back
Jan 7, 2026
a6c33ef
track time that write takes
Jan 8, 2026
068737a
Merge branch 'master' of https://github.com/Pumpkin-MC/Pumpkin into a…
Jan 11, 2026
5e41684
made debug saves 50s but put writers onto a single thread (not working)
Jan 12, 2026
3519c03
Merge branch 'Pumpkin-MC:master' into async_io_lock
CuzImClicks Jan 12, 2026
5327124
make the send and recv chunk channel async aswell
CuzImClicks Jan 13, 2026
8cd6c18
Merge branch 'master' of https://github.com/Pumpkin-MC/Pumpkin into a…
Jan 13, 2026
f2ce9e0
- explicitly initialize tokio runtime with num_cpus
Jan 14, 2026
b138da1
Merge branch 'master' into async_io_lock
CuzImClicks Jan 14, 2026
4179887
Merge branch 'master' of https://github.com/Pumpkin-MC/Pumpkin into a…
CuzImClicks Jan 15, 2026
d32786b
clippy .-.
CuzImClicks Jan 15, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 4 additions & 2 deletions pumpkin-world/src/chunk/format/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -299,9 +299,11 @@ impl ChunkEntityData {
| (uuid[3] as u128),
),
None => {
println!(
log::error!(
"Entity in chunk {},{} is missing UUID: {:?}",
position.x, position.y, entity_nbt
position.x,
position.y,
entity_nbt
);
continue;
}
Expand Down
Loading