summaryrefslogtreecommitdiff
path: root/mesecons_stickyblocks
diff options
context:
space:
mode:
authorVanessa Ezekowitz <vanessaezekowitz@gmail.com>2016-04-01 21:00:20 -0400
committerVanessa Ezekowitz <vanessaezekowitz@gmail.com>2016-04-01 21:10:04 -0400
commit888b0ebfec8c2eff9015163549a7e47443cb8665 (patch)
tree915080159bfaa6ba6e226087c7ce0e8d5464b518 /mesecons_stickyblocks
parentda66780a569712c23ae4f2996cfb4608a9f9d69d (diff)
downloaddreambuilder_modpack-888b0ebfec8c2eff9015163549a7e47443cb8665.tar
dreambuilder_modpack-888b0ebfec8c2eff9015163549a7e47443cb8665.tar.gz
dreambuilder_modpack-888b0ebfec8c2eff9015163549a7e47443cb8665.tar.bz2
dreambuilder_modpack-888b0ebfec8c2eff9015163549a7e47443cb8665.tar.xz
dreambuilder_modpack-888b0ebfec8c2eff9015163549a7e47443cb8665.zip
"explode" all modpacks into their individual components
(you can't have a modpack buried inside a modpack)
Diffstat (limited to 'mesecons_stickyblocks')
-rw-r--r--mesecons_stickyblocks/depends.txt2
-rw-r--r--mesecons_stickyblocks/init.lua16
2 files changed, 18 insertions, 0 deletions
diff --git a/mesecons_stickyblocks/depends.txt b/mesecons_stickyblocks/depends.txt
new file mode 100644
index 0000000..01f085b
--- /dev/null
+++ b/mesecons_stickyblocks/depends.txt
@@ -0,0 +1,2 @@
+mesecons
+mesecons_mvps
diff --git a/mesecons_stickyblocks/init.lua b/mesecons_stickyblocks/init.lua
new file mode 100644
index 0000000..659a227
--- /dev/null
+++ b/mesecons_stickyblocks/init.lua
@@ -0,0 +1,16 @@
+-- Sticky blocks can be used together with pistons or movestones to push / pull
+-- structures that are "glued" together using sticky blocks
+
+-- All sides sticky block
+minetest.register_node("mesecons_stickyblocks:sticky_block_all", {
+ description = "All-sides sticky block",
+ tiles = {"default_grass.png^default_footprint.png"},
+ groups = {dig_immediate=2},
+ mvps_sticky = function (pos, node)
+ local connected = {}
+ for _, r in ipairs(mesecon.rules.alldirs) do
+ table.insert(connected, vector.add(pos, r))
+ end
+ return connected
+ end
+})