Compare commits

...

5 Commits

Author SHA1 Message Date
Don c446caf5c7 Merge pull request #7 from Megaf/patch-1
Add a stick to stain_brush recipe.
2017-01-09 18:06:24 -08:00
Megaf cf11326b03 Add a stick to stain_brush recipe.
So it don't conflict with the mod tapestry.
2016-09-25 16:22:11 +01:00
DonBatman dcd5ac8d33 Machine doesn't take item in creative 2016-04-11 06:53:19 -07:00
DonBatman 7bb787233d Changed Licence 2016-03-23 14:06:24 -07:00
DonBatman af0a7ff3c9 added tags to mod.conf 2016-03-20 13:56:40 -07:00
6 changed files with 19 additions and 2 deletions

View File

@ -5,4 +5,4 @@ Make realistic looking decks in Minetest
Check it out on the forum
https://forum.minetest.net/viewtopic.php?f=11&t=11729
Licence - WTFPL
Licence - DWYWPL

13
licence.txt Normal file
View File

@ -0,0 +1,13 @@
DO WHAT YOU WANT TO PUBLIC LICENSE
or abbreviated DWYWPL
December 2nd 2015
License Copyright (C) 2015 Michael Tomaino (PlatinumArts@gmail.com)
www.sandboxgamemaker.com/DWYWPL/
DO WHAT YOU WANT TO PUBLIC LICENSE
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
1. You are allowed to do whatever you want to with what content is using this license.
2. This content is provided 'as-is', without any express or implied warranty. In no event
will the authors be held liable for any damages arising from the use of this content.

View File

@ -184,7 +184,9 @@ on_receive_fields = function(pos, formname, fields, sender)
for i = 0, anzahl-1 do
inv:add_item("res", shape)
end
ingotstack:take_item()
if minetest.setting_getbool("creative_mode") ~= true then
ingotstack:take_item()
end
inv:set_stack("ingot" ,1, ingotstack)
end
})

View File

@ -1 +1,2 @@
name = mydeck
tags = deck, patio, stairs, stain, rail

Binary file not shown.

Before

Width:  |  Height:  |  Size: 214 KiB

After

Width:  |  Height:  |  Size: 207 KiB

View File

@ -30,6 +30,7 @@ minetest.register_craft({
recipe = {
{'wool:white'},
{'group:stick'},
{'group:stick'},
}
})