diff options
author | ubq323 <ubq323@ubq323.website> | 2023-02-06 12:50:21 +0000 |
---|---|---|
committer | ubq323 <ubq323@ubq323.website> | 2023-02-06 12:50:21 +0000 |
commit | 7952bbc2a606ab22e04112eb2f21a573d0db116e (patch) | |
tree | 06d1e456b542ab82efe6a3343756ae3e90cf18e1 /common | |
parent | 911dc535a9930ef5380ecf31fabbd5123461fc3c (diff) |
hook up save/loading of chunks
Diffstat (limited to 'common')
-rw-r--r-- | common/chunk.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/common/chunk.lua b/common/chunk.lua index affdab8..790e5a4 100644 --- a/common/chunk.lua +++ b/common/chunk.lua @@ -39,6 +39,7 @@ function Chunk.from_packet_data(packet) -- since otherwise how would we know it's a chunk packet local cp = coords.ChunkPos:make(packet.u,packet.v) + print("making from packet",packet.u,packet.v) return Chunk:make(cp,packet.tiles) end |