diff options
author | Vanessa Ezekowitz <vanessaezekowitz@gmail.com> | 2017-01-31 19:39:31 -0500 |
---|---|---|
committer | Vanessa Ezekowitz <vanessaezekowitz@gmail.com> | 2017-01-31 19:39:31 -0500 |
commit | 39f5cba27eef35877c91291f518974f34130fcb6 (patch) | |
tree | 117a9d1b7d4ee5f78f73e1216e982c366ed9ecc6 /chains | |
parent | 2922421f4a88e56a0a1c819f62bf2bc287835388 (diff) | |
download | dreambuilder_modpack-39f5cba27eef35877c91291f518974f34130fcb6.tar dreambuilder_modpack-39f5cba27eef35877c91291f518974f34130fcb6.tar.gz dreambuilder_modpack-39f5cba27eef35877c91291f518974f34130fcb6.tar.bz2 dreambuilder_modpack-39f5cba27eef35877c91291f518974f34130fcb6.tar.xz dreambuilder_modpack-39f5cba27eef35877c91291f518974f34130fcb6.zip |
Huge update - lots of mods:
areas, biome_lib, blox, bobblocks, boost_cart, homedecor, mobs,
coloredwood, ilights, inbox, item_tweaks, moreblocks, moreores,
pipeworks, plasticbox, signs_lib, stainedglass, roads, unifieddyes,
vines, worldedit, xban2, maybe some others I didn't think about ;-)
Diffstat (limited to 'chains')
-rw-r--r-- | chains/depends.txt | 3 | ||||
-rw-r--r-- | chains/init.lua | 15 |
2 files changed, 11 insertions, 7 deletions
diff --git a/chains/depends.txt b/chains/depends.txt index 331d858..7b3e79f 100644 --- a/chains/depends.txt +++ b/chains/depends.txt @@ -1 +1,2 @@ -default
\ No newline at end of file +default +homedecor diff --git a/chains/init.lua b/chains/init.lua index becbb35..4a0f500 100644 --- a/chains/init.lua +++ b/chains/init.lua @@ -1,3 +1,6 @@ + +local S = homedecor_i18n.gettext + local chains_sbox = { type = "fixed", fixed = { -0.1, -0.625, -0.1, 0.1, 0.5, 0.1 } @@ -12,7 +15,7 @@ local topchains_sbox = { } minetest.register_node("chains:chain", { - description = "Hanging chain (wrought iron)", + description = S("Hanging chain (wrought iron)"), drawtype = "mesh", mesh = "chains.obj", tiles = {"chains_wrought_iron.png"}, @@ -26,7 +29,7 @@ minetest.register_node("chains:chain", { }) minetest.register_node("chains:chain_brass", { - description = "Hanging chain (brass)", + description = S("Hanging chain (brass)"), drawtype = "mesh", mesh = "chains.obj", tiles = {"chains_brass.png"}, @@ -40,7 +43,7 @@ minetest.register_node("chains:chain_brass", { }) minetest.register_node("chains:chain_top", { - description = "Hanging chain (ceiling mount, wrought iron)", + description = S("Hanging chain (ceiling mount, wrought iron)"), drawtype = "mesh", mesh = "top_chains.obj", tiles = {"chains_wrought_iron.png"}, @@ -54,7 +57,7 @@ minetest.register_node("chains:chain_top", { }) minetest.register_node("chains:chain_top_brass", { - description = "Hanging chain (ceiling mount, brass)", + description = S("Hanging chain (ceiling mount, brass)"), drawtype = "mesh", mesh = "top_chains.obj", tiles = {"chains_brass.png"}, @@ -68,7 +71,7 @@ minetest.register_node("chains:chain_top_brass", { }) minetest.register_node("chains:chandelier", { - description = "Chandelier (wrought iron)", + description = S("Chandelier (wrought iron)"), paramtype = "light", light_source = default.LIGHT_MAX-2, walkable = false, @@ -95,7 +98,7 @@ minetest.register_node("chains:chandelier", { }) minetest.register_node("chains:chandelier_brass", { - description = "Chandelier (brass)", + description = S("Chandelier (brass)"), paramtype = "light", light_source = default.LIGHT_MAX-2, walkable = false, |