diff options
author | h-v-smacker <hans-von-smacker+github@gmail.com> | 2018-08-29 14:09:45 +0300 |
---|---|---|
committer | h-v-smacker <hans-von-smacker+github@gmail.com> | 2018-08-29 14:09:45 +0300 |
commit | 9a81477bde153422d40a9f576ab5e628568b16ab (patch) | |
tree | 7856d4a959981e48198717d688588c9873b00dd0 /adaptions.lua | |
parent | 5da141f625ec9143a6349dc259d7126da205824d (diff) |
more microblocks compatibility
Diffstat (limited to 'adaptions.lua')
-rw-r--r-- | adaptions.lua | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/adaptions.lua b/adaptions.lua index 5d59e1b..9a46a04 100644 --- a/adaptions.lua +++ b/adaptions.lua @@ -16,6 +16,11 @@ cottages.craftitem_wood = "group:wood"; cottages.craftitem_door = "doors:door_wood"; -- used for: small fence cottages.craftitem_fence = "default:fence_wood"; + +if minetest.get_modpath("ethereal") then + cottages.craftitem_fence = "group:fence"; +end + -- used for: bed (head+foot), wool for tents cottages.craftitem_wool = "wool:white"; -- used for: washing place, loam @@ -72,7 +77,7 @@ if( not( minetest.registered_nodes["default:tree"])) then cottages.craftitem_steel = "metals:pig_iron_ingot"; -- stone exists, but is hard to obtain; chiseled stone is more suitable cottages.craftitem_stone = "default:stone_flat"; - -- there are far more diffrent wood tpyes + -- there are far more diffrent wood types cottages.craftitem_wood = "group:planks"; cottages.craftitem_door = "doors:door_birch"; cottages.craftitem_fence = "group:fence"; |