diff options
author | Andy Belle-Isle <drumsetmonkey@gmail.com> | 2019-09-15 03:18:26 -0400 |
---|---|---|
committer | Andy Belle-Isle <drumsetmonkey@gmail.com> | 2019-09-15 03:18:26 -0400 |
commit | bce8d0687f44def4b0171cd84bf1441fc4390e58 (patch) | |
tree | 0449aacaa3b6847aa65cbed6cf9b3ae417e76bed /Scripts | |
parent | b19978a1100bf86086901e1410f2e7ad1358278b (diff) |
Added event subsection of code
Diffstat (limited to 'Scripts')
-rw-r--r-- | Scripts/world.lua | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Scripts/world.lua b/Scripts/world.lua index 6a526dd..8fb3136 100644 --- a/Scripts/world.lua +++ b/Scripts/world.lua @@ -76,7 +76,8 @@ world = { elseif Y < YGen and Y > (YGen - YDepth) then self:setData(X, Y, Z, "dirt"); elseif Y < YGen then - self:setData(X, Y, Z, "stone"); + --self:setData(X, Y, Z, "stone"); + self:setData(X, Y, Z, "grass"); end --print(X..","..Y..","..Z); end |