projects
/
oweals
/
minetest_game.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b3f4f40
)
Adjust stair output amount
author
Jonathon Station
<jyoumans@pugetsound.edu>
Tue, 21 Jan 2014 09:49:32 +0000
(
01:49
-0800)
committer
BlockMen
<nmuelll@web.de>
Sat, 5 Jul 2014 13:56:23 +0000
(15:56 +0200)
Stair recipe now outputs six stairs rather than four.
mods/stairs/init.lua
patch
|
blob
|
history
diff --git
a/mods/stairs/init.lua
b/mods/stairs/init.lua
index 179cf15d93708aa92fef539e631e3bec8f8c378e..f27fca3bd4a843e7fc471e4f4b1e46c99f83462b 100644
(file)
--- a/
mods/stairs/init.lua
+++ b/
mods/stairs/init.lua
@@
-60,7
+60,7
@@
function stairs.register_stair(subname, recipeitem, groups, images, description,
})
minetest.register_craft({
- output = 'stairs:stair_' .. subname .. '
4
',
+ output = 'stairs:stair_' .. subname .. '
6
',
recipe = {
{recipeitem, "", ""},
{recipeitem, recipeitem, ""},
@@
-70,7
+70,7
@@
function stairs.register_stair(subname, recipeitem, groups, images, description,
-- Flipped recipe for the silly minecrafters
minetest.register_craft({
- output = 'stairs:stair_' .. subname .. '
4
',
+ output = 'stairs:stair_' .. subname .. '
6
',
recipe = {
{"", "", recipeitem},
{"", recipeitem, recipeitem},