diff options
author | h-v-smacker <hans-von-smacker+github@gmail.com> | 2018-06-06 01:42:00 +0300 |
---|---|---|
committer | h-v-smacker <hans-von-smacker+github@gmail.com> | 2018-06-06 01:42:00 +0300 |
commit | bdc5222f58742ef2e7f26974efacafe1eb5c4daf (patch) | |
tree | ce59a846379f11b8a39cd940f7ce41197fa55add | |
parent | 85024f051d1d05d95a3c3d7f7b7d3fbdcd2961fd (diff) |
+pkarcs
-rw-r--r-- | README.md | 6 | ||||
-rw-r--r-- | depends.txt | 3 | ||||
-rw-r--r-- | init.lua | 9 |
3 files changed, 14 insertions, 4 deletions
@@ -41,4 +41,8 @@ Maple tries to register fancy wooden shapes for maple wood with stairs or morebl ## Drawers -If storage drawers mod is available, maple registers the corresponding assortment of drawers.
\ No newline at end of file +If storage drawers mod is available, maple registers the corresponding assortment of drawers. + +## Arcs + +If pkarcs (simple arcs) mod is found, maple arcs are registered.
\ No newline at end of file diff --git a/depends.txt b/depends.txt index 8db48a9..0dd7242 100644 --- a/depends.txt +++ b/depends.txt @@ -2,4 +2,5 @@ default stairs moreblocks? drawers? -bonemeal?
\ No newline at end of file +bonemeal? +pkarcs? @@ -211,7 +211,7 @@ end -- registering the wood type with drawers mod if minetest.get_modpath("drawers") and default then - drawers.register_drawer("maple:maple_drawer", { + drawers.register_drawer("maple:maple_drawerk", { description = "Maple", tiles1 = drawers.node_tiles_front_other("drawers_maple_wood_front_1.png", "drawers_maple_wood.png"), @@ -225,4 +225,9 @@ if minetest.get_modpath("drawers") and default then material = "maple:maple_wood" }) -end
\ No newline at end of file +end + +-- procedurally-generated arcs +if minetest.get_modpath("pkarcs") then + pkarcs.register_node("maple:maple_wood") +end |