aboutsummaryrefslogtreecommitdiffstats
path: root/Scripts/world.lua
diff options
context:
space:
mode:
authorAndy Belle-Isle <drumsetmonkey@gmail.com>2019-09-14 03:31:40 -0400
committerAndy Belle-Isle <drumsetmonkey@gmail.com>2019-09-14 03:31:40 -0400
commit534f6f57e930020eb1ad726f4de4e90cf487e584 (patch)
tree0dedd0deaa7556e6f9e8fd316017413f59de7996 /Scripts/world.lua
parent4bf539d953871dbddddcc00275ffdcaddece5091 (diff)
World can now draw
Diffstat (limited to 'Scripts/world.lua')
-rw-r--r--Scripts/world.lua3
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);