From 1a150b3ddbade34714e3ac0867109c40f5742d56 Mon Sep 17 00:00:00 2001 From: Milan* Date: Thu, 3 Aug 2017 11:23:16 +0200 Subject: [PATCH] re-addd potion recipe and remove pad recipe --- init.lua | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/init.lua b/init.lua index c75b6af..a2c223c 100755 --- a/init.lua +++ b/init.lua @@ -194,7 +194,7 @@ minetest.register_node("teleport_potion:potion", { end, }) ---[[ teleport potion recipe +-- teleport potion recipe minetest.register_craft({ output = "teleport_potion:potion", recipe = { @@ -202,7 +202,7 @@ minetest.register_craft({ {"default:diamond", "vessels:glass_bottle", "default:diamond"}, {"", "default:diamond", ""}, }, -})]] +}) -- teleport pad minetest.register_node("teleport_potion:pad", { @@ -311,7 +311,7 @@ teleport_potion.can_access = function(pos,player) return false end --- teleport pad recipe +--[[ teleport pad recipe minetest.register_craft({ output = 'teleport_potion:pad', recipe = { @@ -319,7 +319,7 @@ minetest.register_craft({ {"default:glass", "default:mese", "default:glass"}, {"teleport_potion:potion", "default:glass", "teleport_potion:potion"} } -}) +})]] -- check portal & pad, teleport any entities on top minetest.register_abm({