diff options
author | Vanessa Ezekowitz <vanessaezekowitz@gmail.com> | 2016-04-01 21:00:20 -0400 |
---|---|---|
committer | Vanessa Ezekowitz <vanessaezekowitz@gmail.com> | 2016-04-01 21:10:04 -0400 |
commit | 888b0ebfec8c2eff9015163549a7e47443cb8665 (patch) | |
tree | 915080159bfaa6ba6e226087c7ce0e8d5464b518 /digilines/digilines_rtc | |
parent | da66780a569712c23ae4f2996cfb4608a9f9d69d (diff) | |
download | dreambuilder_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 'digilines/digilines_rtc')
-rw-r--r-- | digilines/digilines_rtc/depends.txt | 1 | ||||
-rw-r--r-- | digilines/digilines_rtc/init.lua | 53 | ||||
-rw-r--r-- | digilines/digilines_rtc/textures/digilines_rtc.png | bin | 248 -> 0 bytes |
3 files changed, 0 insertions, 54 deletions
diff --git a/digilines/digilines_rtc/depends.txt b/digilines/digilines_rtc/depends.txt deleted file mode 100644 index da1d119..0000000 --- a/digilines/digilines_rtc/depends.txt +++ /dev/null @@ -1 +0,0 @@ -digilines diff --git a/digilines/digilines_rtc/init.lua b/digilines/digilines_rtc/init.lua deleted file mode 100644 index 6b7bfaf..0000000 --- a/digilines/digilines_rtc/init.lua +++ /dev/null @@ -1,53 +0,0 @@ -local GET_COMMAND = "GET" - -local rtc_nodebox = -{ - type = "fixed", - fixed = { - { -8/16, -8/16, -8/16, 8/16, -7/16, 8/16 }, -- bottom slab - - { -7/16, -7/16, -7/16, 7/16, -5/16, 7/16 }, - } -} - -local rtc_selbox = -{ - type = "fixed", - fixed = {{ -8/16, -8/16, -8/16, 8/16, -3/16, 8/16 }} -} - -local on_digiline_receive = function (pos, node, channel, msg) - local setchan = minetest.get_meta(pos):get_string("channel") - if channel == setchan and msg == GET_COMMAND then - local timeofday = minetest.get_timeofday() - digiline:receptor_send(pos, digiline.rules.default, channel, timeofday) - end -end - -minetest.register_node("digilines_rtc:rtc", { - description = "Digiline Real Time Clock (RTC)", - drawtype = "nodebox", - tiles = {"digilines_rtc.png"}, - - paramtype = "light", - paramtype2 = "facedir", - groups = {dig_immediate=2}, - selection_box = rtc_selbox, - node_box = rtc_nodebox, - digiline = - { - receptor = {}, - effector = { - action = on_digiline_receive - }, - }, - on_construct = function(pos) - local meta = minetest.get_meta(pos) - meta:set_string("formspec", "field[channel;Channel;${channel}]") - end, - on_receive_fields = function(pos, formname, fields, sender) - if (fields.channel) then - minetest.get_meta(pos):set_string("channel", fields.channel) - end - end, -}) diff --git a/digilines/digilines_rtc/textures/digilines_rtc.png b/digilines/digilines_rtc/textures/digilines_rtc.png Binary files differdeleted file mode 100644 index a7b1d84..0000000 --- a/digilines/digilines_rtc/textures/digilines_rtc.png +++ /dev/null |