summaryrefslogtreecommitdiff
path: root/cavestuff
diff options
context:
space:
mode:
Diffstat (limited to 'cavestuff')
-rw-r--r--cavestuff/init.lua2
-rw-r--r--cavestuff/mapgen.lua4
2 files changed, 3 insertions, 3 deletions
diff --git a/cavestuff/init.lua b/cavestuff/init.lua
index ad8b9f4..b1e984a 100644
--- a/cavestuff/init.lua
+++ b/cavestuff/init.lua
@@ -1,6 +1,6 @@
-----------------------------------------------------------------------------------------------
local title = "Cave Stuff"
-local version = "0.0.3"
+local version = "0.0.3"
local mname = "cavestuff"
-----------------------------------------------------------------------------------------------
diff --git a/cavestuff/mapgen.lua b/cavestuff/mapgen.lua
index a91a2f0..fc890b3 100644
--- a/cavestuff/mapgen.lua
+++ b/cavestuff/mapgen.lua
@@ -28,7 +28,7 @@ minetest.register_on_generated(function(minp, maxp, seed)
break
end
end
-
+
if ground_y then
local p = {x=x,y=ground_y+1,z=z}
local nn = minetest.get_node(p).name
@@ -44,7 +44,7 @@ minetest.register_on_generated(function(minp, maxp, seed)
end
end
end
-
+
end
end
end