diff options
Diffstat (limited to 'common')
-rw-r--r-- | common/coords.lua | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/common/coords.lua b/common/coords.lua index 420b287..fc4aaa5 100644 --- a/common/coords.lua +++ b/common/coords.lua @@ -161,11 +161,6 @@ function ChunkPos.orth_dist(self,other) local dv = math.abs(self.v-other.v) return math.max(du,dv) end -function ChunkPos.filename(self) - -- filename of chunk with that cp - return "world/c_"..self.u.."_"..self.v..".dat" -end - |