diff options
author | Andy Belle-Isle <drumsetmonkey@gmail.com> | 2019-09-14 03:31:40 -0400 |
---|---|---|
committer | Andy Belle-Isle <drumsetmonkey@gmail.com> | 2019-09-14 03:31:40 -0400 |
commit | 534f6f57e930020eb1ad726f4de4e90cf487e584 (patch) | |
tree | 0dedd0deaa7556e6f9e8fd316017413f59de7996 /Scripts/world.lua | |
parent | 4bf539d953871dbddddcc00275ffdcaddece5091 (diff) |
World can now draw
Diffstat (limited to 'Scripts/world.lua')
-rw-r--r-- | Scripts/world.lua | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/Scripts/world.lua b/Scripts/world.lua index 246ece0..6a526dd 100644 --- a/Scripts/world.lua +++ b/Scripts/world.lua @@ -72,13 +72,10 @@ world = { YDepth = math.random(2,5) for Y = 0,ysize-1 do if Y == YGen then - --self.data[Z][X][Y] = 0 self:setData(X, Y, Z, "grass"); elseif Y < YGen and Y > (YGen - YDepth) then - --self.data[Z][X][Y] = 1 self:setData(X, Y, Z, "dirt"); elseif Y < YGen then - --self.data[Z][X][Y] = 2 self:setData(X, Y, Z, "stone"); end --print(X..","..Y..","..Z); |