I am dabbling with the Minetest API to try out making various types of mods. I am try to make some floating nodes for the purpose of later making a space biome. I am using "minetest.register_ore" to try to make some random Desert Stone (default:desert_stone) form in "air" nodes. However, I never see any desert stone in the sky. Does "register_ore" not permit me to use "air" or is there a better way to do this? By the way, no errors appear on th screen or in the log.
Here is the Lua file -
--Testing--
--by Devyn Collier Johnson (DevynCJohnson@Gmail.com)
--WTFPL 2014
minetest.register_ore({
ore_type = "sheet",
ore = "default:desert_stone",
wherein = "air",
clust_scarcity = 10*10*10,
clust_num_ores = 40,
clust_size = 40,
height_min = 20,
height_max = 22,
})