summaryrefslogtreecommitdiff
path: root/quartz
diff options
context:
space:
mode:
authorVanessa Ezekowitz <vanessaezekowitz@gmail.com>2016-04-20 13:13:20 -0400
committerVanessa Ezekowitz <vanessaezekowitz@gmail.com>2016-04-20 13:13:20 -0400
commit56c6604e85994d0a6e993695c718f9086a3d014e (patch)
treeb6e5890d8cd45057be551279c3caacf133df8a66 /quartz
parent2368b5c948c971cd6899393b00cb3a8c51f4e006 (diff)
downloaddreambuilder_modpack-56c6604e85994d0a6e993695c718f9086a3d014e.tar
dreambuilder_modpack-56c6604e85994d0a6e993695c718f9086a3d014e.tar.gz
dreambuilder_modpack-56c6604e85994d0a6e993695c718f9086a3d014e.tar.bz2
dreambuilder_modpack-56c6604e85994d0a6e993695c718f9086a3d014e.tar.xz
dreambuilder_modpack-56c6604e85994d0a6e993695c718f9086a3d014e.zip
updated several mods:
blox, bobblocks, castle, digilines, home decor, mesecons, pipeworks, and quartz
Diffstat (limited to 'quartz')
-rw-r--r--quartz/README.txt2
-rw-r--r--quartz/init.lua4
-rw-r--r--quartz/mod.conf1
-rw-r--r--quartz/settings.txt4
4 files changed, 6 insertions, 5 deletions
diff --git a/quartz/README.txt b/quartz/README.txt
index e8674ad..0db0cf8 100644
--- a/quartz/README.txt
+++ b/quartz/README.txt
@@ -15,7 +15,7 @@ stairs (found in minetest_game)
moreblocks (optional, for stairsplus support)
Please report bugs at the github issue tracker:
-https://github.com/4Evergreen4/quartz/issues/
+https://github.com/minetest-mods/quartz/issues/
Crafting:
diff --git a/quartz/init.lua b/quartz/init.lua
index 6b0a41b..7bcbaea 100644
--- a/quartz/init.lua
+++ b/quartz/init.lua
@@ -153,7 +153,7 @@ minetest.register_abm({
-- Compatibility with stairsplus
--
-if minetest.get_modpath("moreblocks") and enable_stairsplus then
+if minetest.get_modpath("moreblocks") and ENABLE_STAIRSPLUS then
register_stair_slab_panel_micro("quartz", "block", "quartz:block",
{cracky=3},
{"quartz_block.png"},
@@ -187,7 +187,7 @@ end
-- Deprecated
--
-if enable_horizontal_pillar then
+if ENABLE_HORIZONTAL_PILLAR then
-- Quartz Pillar (horizontal)
minetest.register_node("quartz:pillar_horizontal", {
description = "Quartz Pillar Horizontal",
diff --git a/quartz/mod.conf b/quartz/mod.conf
new file mode 100644
index 0000000..a5f15f3
--- /dev/null
+++ b/quartz/mod.conf
@@ -0,0 +1 @@
+name = quartz
diff --git a/quartz/settings.txt b/quartz/settings.txt
index 246021e..7bed3f8 100644
--- a/quartz/settings.txt
+++ b/quartz/settings.txt
@@ -1,7 +1,7 @@
-- Set this to true to allow usage of the stairsplus mod in moreblocks
-enable_stairsplus = false
+ENABLE_STAIRSPLUS = false
-- This enables the old horizontal pillar block(deprecated, be sure to convert them back to normal pillars)
-enable_horizontal_pillar = true
+ENABLE_HORIZONTAL_PILLAR = true