Skip to content
Snippets Groups Projects
Commit 41073903 authored by Perttu Ahola's avatar Perttu Ahola
Browse files

Make the minimal development test somewhat playable by adding ore generation...

Make the minimal development test somewhat playable by adding ore generation and removing the player visual switch test
parent e74da72b
No related branches found
No related tags found
No related merge requests found
......@@ -11,6 +11,9 @@ LIGHT_MAX = 14
-- Definitions made by this mod that other mods can use too
default = {}
-- Load other files
dofile(minetest.get_modpath("default").."/mapgen.lua")
--
-- Tool definition
--
......
......@@ -6,6 +6,7 @@
experimental = {}
--[[
experimental.player_visual_index = 0
function switch_player_visual()
for _, obj in pairs(minetest.get_connected_players()) do
......@@ -19,6 +20,7 @@ function switch_player_visual()
minetest.after(1.0, switch_player_visual)
end
minetest.after(1.0, switch_player_visual)
]]
minetest.register_node("experimental:soundblock", {
tile_images = {"unknown_block.png", "default_tnt_bottom.png",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment