diff options
author | cheapie <no-email-for-you@example.com> | 2024-09-14 16:45:00 -0500 |
---|---|---|
committer | cheapie <no-email-for-you@example.com> | 2024-09-14 16:45:00 -0500 |
commit | 4d4d42079179a5659b172d0a6cd12aadfac00c3c (patch) | |
tree | a1942663bd27a3a800436582caf584cec18bc0ba | |
parent | 704516730564c8d42a2c03da547cb976059a3e11 (diff) | |
download | solidcolor-4d4d42079179a5659b172d0a6cd12aadfac00c3c.tar solidcolor-4d4d42079179a5659b172d0a6cd12aadfac00c3c.tar.gz solidcolor-4d4d42079179a5659b172d0a6cd12aadfac00c3c.tar.bz2 solidcolor-4d4d42079179a5659b172d0a6cd12aadfac00c3c.tar.xz solidcolor-4d4d42079179a5659b172d0a6cd12aadfac00c3c.zip |
-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, |