diff options
| -rw-r--r-- | .luacheckrc | 7 | ||||
| -rw-r--r-- | init.lua | 2 | 
2 files changed, 8 insertions, 1 deletions
diff --git a/.luacheckrc b/.luacheckrc new file mode 100644 index 0000000..9ced1c8 --- /dev/null +++ b/.luacheckrc @@ -0,0 +1,7 @@ +max_line_length = 160 + +read_globals = { +	"minetest", +	"unifieddyes", +	"default", +} @@ -3,7 +3,7 @@ minetest.register_node("solidcolor:block", {  	tiles = {"solidcolor_white.png"},  	is_ground_content = false,  	groups = {dig_immediate=2,ud_param2_colorable=1}, -	sounds = (default and default.node_sound_stone_defaults()), +	sounds = (minetest.global_exists("default") and default.node_sound_stone_defaults()),  	paramtype2 = "color",  	palette = "unifieddyes_palette_extended.png",  	on_construct = unifieddyes.on_construct,  | 
