summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcheapie <no-email-for-you@example.com>2016-05-31 23:42:11 -0500
committercheapie <no-email-for-you@example.com>2016-05-31 23:42:11 -0500
commite5837a6e300ee444f4092ade6b836362670c657c (patch)
tree80622047fd975d16a15501029539145e0d1663ab
parent383858ba9f6a4e2d857a2831bda14b4b73c05a6d (diff)
downloadrgblightstone-e5837a6e300ee444f4092ade6b836362670c657c.tar
rgblightstone-e5837a6e300ee444f4092ade6b836362670c657c.tar.gz
rgblightstone-e5837a6e300ee444f4092ade6b836362670c657c.tar.bz2
rgblightstone-e5837a6e300ee444f4092ade6b836362670c657c.tar.xz
rgblightstone-e5837a6e300ee444f4092ade6b836362670c657c.zip
More tweaking
-rw-r--r--README10
-rw-r--r--depends.txt2
-rw-r--r--init.lua1
3 files changed, 3 insertions, 10 deletions
diff --git a/README b/README
index 9efeeb7..93b04bc 100644
--- a/README
+++ b/README
@@ -3,9 +3,10 @@ RGB Lightstones for Minetest
License:
---Code: WTFPL
-Depends: mesecons_lightstone, digilines?
+Depends: mesecons_lightstone, digilines
+(neither is in depends.txt since the order doesn't matter)
-Instructions (with digilines):
+Instructions:
* Grab one from the creative inventory, or craft one:
nothing green lightstone nothing
@@ -16,11 +17,6 @@ Instructions (with digilines):
* Right-click and set a channel
* Send a digilines message to it on that channel with the color you want (choices listed below)
-Instructions (without digilines):
-
-You'll have to use /give or /giveme. The node names follow the pattern "rgblightstone:lightstone_color", where "color" is replaced with the color (see below).
-
-
Colors available: Any 6-digit hex color, such as "FF0000", "#c0ffee", "123456"...
Group addressing mode:
diff --git a/depends.txt b/depends.txt
index 20c99f1..e69de29 100644
--- a/depends.txt
+++ b/depends.txt
@@ -1,2 +0,0 @@
-mesecons_lightstone
-digilines?
diff --git a/init.lua b/init.lua
index 951b7ab..539deab 100644
--- a/init.lua
+++ b/init.lua
@@ -47,7 +47,6 @@ minetest.register_node("rgblightstone:rgblightstone", {
sunlight_propagates = true,
paramtype = "light",
description = "RGB Lightstone",
- sounds = default.node_sound_stone_defaults(),
on_construct = function(pos)
local meta = minetest.get_meta(pos)
meta:set_string("formspec", "size[8,5;]field[1,1;6,2;channel;Channel;${channel}]field[1,2;2,2;addrx;X Address;${addrx}]field[5,2;2,2;addry;Y Address;${addry}]button_exit[2.25,3;3,1;submit;Save]button_exit[2.25,4;3,1;autofill;Auto-Fill From Node Above]label[3,2;Leave address blank\nfor individual mode]")