Add files via upload

This commit is contained in:
loosewheel
2021-11-10 00:57:32 +10:00
committed by GitHub
parent f7d6cd7545
commit 2b90c573eb
15 changed files with 1496 additions and 34 deletions

View File

@@ -576,7 +576,7 @@ local function digilines_support ()
if meta then
local this_channel = meta:get_string ("channel")
if this_channel == channel then
if this_channel ~= "" and this_channel == channel then
local m = { }
for w in string.gmatch(msg, "[^%s]+") do
m[#m + 1] = w
@@ -666,7 +666,7 @@ minetest.register_node("lwcomponents:detector", {
is_ground_content = false,
groups = { cracky = 3 },
sounds = default.node_sound_stone_defaults (),
paramtype = "light",
paramtype = "none",
param1 = 0,
paramtype2 = "facedir",
param2 = 1,
@@ -695,7 +695,7 @@ minetest.register_node("lwcomponents:detector_locked", {
is_ground_content = false,
groups = { cracky = 3 },
sounds = default.node_sound_stone_defaults (),
paramtype = "light",
paramtype = "none",
param1 = 0,
paramtype2 = "facedir",
param2 = 1,
@@ -724,7 +724,7 @@ minetest.register_node("lwcomponents:detector_on", {
is_ground_content = false,
groups = { cracky = 3, not_in_creative_inventory = 1 },
sounds = default.node_sound_stone_defaults (),
paramtype = "light",
paramtype = "none",
param1 = 0,
paramtype2 = "facedir",
param2 = 1,
@@ -753,7 +753,7 @@ minetest.register_node("lwcomponents:detector_locked_on", {
is_ground_content = false,
groups = { cracky = 3, not_in_creative_inventory = 1 },
sounds = default.node_sound_stone_defaults (),
paramtype = "light",
paramtype = "none",
param1 = 0,
paramtype2 = "facedir",
param2 = 1,