summaryrefslogtreecommitdiff
path: root/mesecons_hydroturbine
diff options
context:
space:
mode:
authorRealBadAngel <mk@realbadangel.pl>2013-04-28 12:40:08 +0200
committerRealBadAngel <mk@realbadangel.pl>2013-04-28 12:40:08 +0200
commit255e363b04dbaa0e19f290d96512278a433570f9 (patch)
treeb5d70f8f3706fd5f0e1f17e7269bd1c7169d4e90 /mesecons_hydroturbine
parentac9a05df0b09e3e27b94f362037b725f67683706 (diff)
downloadmesecons-255e363b04dbaa0e19f290d96512278a433570f9.tar
mesecons-255e363b04dbaa0e19f290d96512278a433570f9.tar.gz
mesecons-255e363b04dbaa0e19f290d96512278a433570f9.tar.bz2
mesecons-255e363b04dbaa0e19f290d96512278a433570f9.tar.xz
mesecons-255e363b04dbaa0e19f290d96512278a433570f9.zip
Fix all crafting recipes to use modern style
Diffstat (limited to 'mesecons_hydroturbine')
-rw-r--r--mesecons_hydroturbine/init.lua10
1 files changed, 5 insertions, 5 deletions
diff --git a/mesecons_hydroturbine/init.lua b/mesecons_hydroturbine/init.lua
index a2836f2..6a4f86d 100644
--- a/mesecons_hydroturbine/init.lua
+++ b/mesecons_hydroturbine/init.lua
@@ -32,7 +32,7 @@ minetest.register_node("mesecons_hydroturbine:hydro_turbine_off", {
minetest.register_node("mesecons_hydroturbine:hydro_turbine_on", {
drawtype = "nodebox",
tiles = {"jeija_hydro_turbine_on.png"},
- drop = '"mesecons_hydroturbine:hydro_turbine_off" 1',
+ drop = "mesecons_hydroturbine:hydro_turbine_off 1",
groups = {dig_immediate=2,not_in_creative_inventory=1},
description="Water Turbine",
paramtype = "light",
@@ -86,11 +86,11 @@ nodenames = {"mesecons_hydroturbine:hydro_turbine_on"},
})
minetest.register_craft({
- output = '"mesecons_hydroturbine:hydro_turbine_off" 2',
+ output = "mesecons_hydroturbine:hydro_turbine_off 2",
recipe = {
- {'','"default:stick"', ''},
- {'"default:stick"', '"default:steel_ingot"', '"default:stick"'},
- {'','"default:stick"', ''},
+ {"","default:stick", ""},
+ {"default:stick", "default:steel_ingot", "default:stick"},
+ {"","default:stick", ""},
}
})