From 6154a04c00d7650664b78e2bca37631ae3778411 Mon Sep 17 00:00:00 2001 From: David Leal Date: Wed, 24 Jun 2020 14:14:04 -0500 Subject: [PATCH] Remove node_ownership support, cleanup (#560) --- .github/workflows/check-release.yml | 2 +- technic/machines/MV/lighting.lua | 15 +-------------- 2 files changed, 2 insertions(+), 15 deletions(-) diff --git a/.github/workflows/check-release.yml b/.github/workflows/check-release.yml index fb2ee39..cb26421 100644 --- a/.github/workflows/check-release.yml +++ b/.github/workflows/check-release.yml @@ -8,4 +8,4 @@ jobs: - name: lint uses: Roang-zero1/factorio-mod-luacheck@master with: - luacheckrc_url: https://raw.githubusercontent.com/minetest-mods/technic/master/.luacheckrc + luacheckrc_url: "" diff --git a/technic/machines/MV/lighting.lua b/technic/machines/MV/lighting.lua index 2254ecf..f7c9124 100644 --- a/technic/machines/MV/lighting.lua +++ b/technic/machines/MV/lighting.lua @@ -14,20 +14,7 @@ end function technic_homedecor_node_is_owned(pos, placer) local ownername = false - if type(IsPlayerNodeOwner) == "function" then -- node_ownership mod - if HasOwner(pos, placer) then - if not IsPlayerNodeOwner(pos, placer:get_player_name()) then - if type(getLastOwner) == "function" then -- ...is an old version - ownername = getLastOwner(pos) - elseif type(GetNodeOwnerName) == "function" then -- ...is a recent version - ownername = GetNodeOwnerName(pos) - else - ownername = S("someone") - end - end - end - - elseif type(isprotect) == "function" then -- glomie's protection mod + if type(isprotect) == "function" then -- glomie's protection mod if not isprotect(5, pos, placer) then ownername = S("someone") end