2 Commits
1.0 ... master

Author SHA1 Message Date
dfe345a8d2 _ 2022-07-18 17:32:04 +02:00
NoctisLabs
9b4df053c1 Add ContentDB Link
Add ContentDB Link
2019-10-22 16:31:11 -07:00
3 changed files with 1 additions and 19 deletions

View File

@@ -2,6 +2,7 @@
Televator [an_televator] Televator [an_televator]
============================ ============================
* ContentDB: https://content.minetest.net/packages/NoctisLabs/an_televator/
* GitHub: https://github.com/NoctisLabs/an_televator * GitHub: https://github.com/NoctisLabs/an_televator
* Download: https://github.com/NoctisLabs/an_televator/archive/master.zip * Download: https://github.com/NoctisLabs/an_televator/archive/master.zip
* Forum Thread: https://forum.minetest.net/viewtopic.php?f=9&t=23412 * Forum Thread: https://forum.minetest.net/viewtopic.php?f=9&t=23412

View File

@@ -22,14 +22,6 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
local delay = {} local delay = {}
local itemset local itemset
if minetest.get_modpath("default") then
itemset = {
steel = "default:steel_ingot",
gold = "default:gold_ingot",
copper = "default:copper_ingot",
glass = "default:glass",
}
end
--- ---
--- Functions --- Functions
@@ -76,17 +68,6 @@ minetest.register_node("an_televator:televator", {
end, end,
}) })
if itemset then
minetest.register_craft({
output = "an_televator:televator",
recipe = {
{itemset.steel, itemset.glass, itemset.steel},
{itemset.steel, itemset.gold, itemset.steel},
{itemset.steel, itemset.copper, itemset.steel,}
},
})
end
minetest.register_globalstep(function(dtime) minetest.register_globalstep(function(dtime)
for _, player in pairs(minetest.get_connected_players()) do for _, player in pairs(minetest.get_connected_players()) do
local pos = player:get_pos() local pos = player:get_pos()

Binary file not shown.

Before

Width:  |  Height:  |  Size: 18 KiB