1
0
mirror of https://github.com/Sokomine/cottages.git synced 2025-07-04 17:10:23 +02:00

handmill, treshing place and anvil can now be used if they have no owner; the anvil can be used by all

This commit is contained in:
Sokomine
2015-07-31 02:33:32 +02:00
parent af0787a420
commit 5ef4dc9794
3 changed files with 111 additions and 68 deletions

View File

@ -54,6 +54,11 @@ end
cottages.texture_chest = {"default_chest_top.png", "default_chest_top.png", "default_chest_side.png",
"default_chest_side.png", "default_chest_side.png", "default_chest_front.png"};
-- the treshing floor produces wheat seeds
cottages.craftitem_seed_wheat = "farming:seed_wheat";
cottages.texture_wheat_seed = "farming_wheat_seed.png";
cottages.texture_stick = "default_stick.png";
-- texture for roofs where the tree bark is the main roof texture
cottages.textures_roof_wood = "default_tree.png";
if( not( minetest.registered_nodes["default:tree"])) then
@ -78,6 +83,10 @@ if( not( minetest.registered_nodes["default:tree"])) then
cottages.texture_chest = { "spruce_chest_top.png", "spruce_chest_top.png", "spruce_chest_side.png",
"spruce_chest_side.png", "spruce_chest_side.png", "spruce_chest_front.png"};
-- wheat is called spelt in RealTest
cottages.craftitem_seed_wheat = 'farming:seed_spelt';
cottages.texture_wheat_seed = 'farming_spelt_seed.png';
cottages.texture_stick = 'trees_maple_stick.png';
else
-- does not look so well in this case as it's no bark; but what else shall we do?
cottages.textures_roof_wood = "cottages_minimal_wood.png";