diff options
author | Sokomine <wegwerf@anarres.dyndns.org> | 2015-07-31 02:33:32 +0200 |
---|---|---|
committer | Sokomine <wegwerf@anarres.dyndns.org> | 2015-07-31 02:33:32 +0200 |
commit | 5ef4dc9794e58b81ef205b6ec40fe9a2f88e12c1 (patch) | |
tree | f1314fbcf89f4d03562637f1bd04498f8fc09bce /adaptions.lua | |
parent | af0787a420d95337941af85b6634eee0014cc40c (diff) |
handmill, treshing place and anvil can now be used if they have no owner; the anvil can be used by all
Diffstat (limited to 'adaptions.lua')
-rw-r--r-- | adaptions.lua | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/adaptions.lua b/adaptions.lua index db06d7d..b6c672a 100644 --- a/adaptions.lua +++ b/adaptions.lua @@ -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"; |