Skip to content

Commit

Permalink
Remove Whitespaces
Browse files Browse the repository at this point in the history
  • Loading branch information
acmgit committed Jul 21, 2019
1 parent 5658011 commit ee06f4c
Show file tree
Hide file tree
Showing 3 changed files with 39 additions and 20 deletions.
18 changes: 18 additions & 0 deletions .luacheckrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
unused_args = false
allow_defined_top = true

globals = {
"minetest","mesecons_stealthnode","mesecons_random"
}

read_globals = {
string = {fields = {"split"}},
table = {fields = {"copy", "getn"}},

-- Builtin
"vector", "ItemStack",
"dump", "DIR_DELIM", "VoxelArea", "Settings",

-- MTG
"default"
}
33 changes: 17 additions & 16 deletions mesecons_stealthnode/register.lua
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
--[[
--[[
********************************************
*** Register Stealthnodes **
********************************************
Registers a new Ghoststone with the tile of the given Node.
stealthnode.register_stealthnode(Name, Node)
Expand All @@ -13,21 +13,22 @@
]]--

function stealthnode.register_stealthnode(modname, node)

local tile = ""

if minetest.registered_nodes[modname .. ":" .. node] == nil then
print("[MOD] " .. minetest.get_current_modname() .. ": " .. modname .. ":" .. node .. " not found to register a stealthnode.")
minetest.log("warning", "[MOD] " .. minetest.get_current_modname() .. ": " .. modname .. ":" .. node .. " not found to register a stealthnode.")

local tile

if minetest.registered_nodes[modname .. ":" .. node] == nil then
print("[MOD] " .. minetest.get_current_modname() .. ": "
.. modname .. ":" .. node .. " not found to register a stealthnode.")
minetest.log("warning", "[MOD] " .. minetest.get_current_modname() .. ": "
.. modname .. ":" .. node .. " not found to register a stealthnode.")
return
else
tile = minetest.registered_nodes[modname .. ":" .. node].tiles

end

local newgroup = {}
newgroup = stealthnode.table_clone(minetest.registered_nodes[modname .. ":" .. node].groups)


local newgroup = stealthnode.table_clone(minetest.registered_nodes[modname .. ":" .. node].groups)

minetest.register_node(":mesecons_stealthnode:" .. modname .. "_" .. node, {
description="Stealthnode " .. minetest.registered_nodes[modname .. ":" .. node].description,
tiles = tile,
Expand Down Expand Up @@ -84,9 +85,9 @@ function stealthnode.table_clone(c_table)
local t2 = {}
for k,v in pairs(c_table) do
t2[k] = v

end

return t2

end -- function cucina_vegana.table_clone
8 changes: 4 additions & 4 deletions register_stealthnodes/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ local snodes = {

{"default", "wood"},
{"default", "tree"},

{"default", "junglewood"},
{"default", "jungletree"},

Expand All @@ -50,7 +50,7 @@ local snodes = {

{"default", "acacia_wood"},
{"default", "acacia_tree"},

{"moreores", "mithril_block"},

}
Expand All @@ -60,7 +60,7 @@ for i,value in pairs(snodes) do
if(minetest.registered_nodes[value[1]..":"..value[2]]) then
register(value[1], value[2])
else
minetest.log("info","[MOD]stealthnode: Node " .. value[1]..":"..value[2].." not found to register a Stealthnode.")
minetest.log("info","[MOD]stealthnode:Node ".. value[1]..":"..value[2].." not found to register a Stealthnode.")
end -- if(mintest.registered_nodes

end -- for i,value

0 comments on commit ee06f4c

Please sign in to comment.