diff options
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 |