diff --git a/aliases.lua b/aliases.lua index 2c0939a..15f7b6b 100644 --- a/aliases.lua +++ b/aliases.lua @@ -1,10 +1,8 @@ --[[ -====================================================================== -This file is part of More Blocks. +More Blocks: alias definitions Copyright (c) 2011-2015 Calinou and contributors. Licensed under the zlib license. See LICENSE.md for more information. -====================================================================== --]] -- More Blocks aliases: diff --git a/circular_saw.lua b/circular_saw.lua index ab278f3..98ddecb 100644 --- a/circular_saw.lua +++ b/circular_saw.lua @@ -1,10 +1,8 @@ --[[ -====================================================================== -This file is part of More Blocks. +More Blocks: circular saw Copyright (c) 2011-2015 Calinou and contributors. Licensed under the zlib license. See LICENSE.md for more information. -====================================================================== --]] local S = moreblocks.intllib diff --git a/config.lua b/config.lua index 3154298..d646dac 100644 --- a/config.lua +++ b/config.lua @@ -1,10 +1,8 @@ --[[ -====================================================================== -This file is part of More Blocks. +More Blocks: configuration handling Copyright (c) 2011-2015 Calinou and contributors. Licensed under the zlib license. See LICENSE.md for more information. -====================================================================== --]] moreblocks.config = {} diff --git a/crafting.lua b/crafting.lua index 3d3964b..4429d9a 100644 --- a/crafting.lua +++ b/crafting.lua @@ -1,10 +1,8 @@ --[[ -====================================================================== -This file is part of More Blocks. +More Blocks: crafting recipes Copyright (c) 2011-2015 Calinou and contributors. Licensed under the zlib license. See LICENSE.md for more information. -====================================================================== --]] minetest.register_craft({ diff --git a/init.lua b/init.lua index f30bc60..2919a30 100644 --- a/init.lua +++ b/init.lua @@ -1,11 +1,11 @@ --[[ -====================================================================== +===================================================================== ** More Blocks ** By Calinou, with the help of ShadowNinja and VanessaE. Copyright (c) 2011-2015 Calinou and contributors. Licensed under the zlib license. See LICENSE.md for more information. -====================================================================== +===================================================================== --]] moreblocks = {} diff --git a/nodes.lua b/nodes.lua index e93aa13..d3120c9 100644 --- a/nodes.lua +++ b/nodes.lua @@ -1,10 +1,8 @@ --[[ -====================================================================== -This file is part of More Blocks. +More Blocks: node definitions Copyright (c) 2011-2015 Calinou and contributors. Licensed under the zlib license. See LICENSE.md for more information. -====================================================================== --]] local S = moreblocks.intllib diff --git a/ownership.lua b/ownership.lua index 7228fc8..1c2431b 100644 --- a/ownership.lua +++ b/ownership.lua @@ -1,10 +1,8 @@ --[[ -====================================================================== -This file is part of More Blocks. +More Blocks: ownership handling Copyright (c) 2011-2015 Calinou and contributors. Licensed under the zlib license. See LICENSE.md for more information. -====================================================================== --]] local S = moreblocks.gettext diff --git a/redefinitions.lua b/redefinitions.lua index 5efd81d..a6498f1 100644 --- a/redefinitions.lua +++ b/redefinitions.lua @@ -1,10 +1,8 @@ --[[ -====================================================================== -This file is part of More Blocks. +More Blocks: redefinitions of default stuff Copyright (c) 2011-2015 Calinou and contributors. Licensed under the zlib license. See LICENSE.md for more information. -====================================================================== --]] -- Redefinitions of some default crafting recipes: diff --git a/stairsplus/aliases.lua b/stairsplus/aliases.lua index 18561b1..c235d34 100644 --- a/stairsplus/aliases.lua +++ b/stairsplus/aliases.lua @@ -1,10 +1,8 @@ --[[ -====================================================================== -This file is part of More Blocks. +More Blocks: alias definitions Copyright (c) 2011-2015 Calinou and contributors. Licensed under the zlib license. See LICENSE.md for more information. -====================================================================== --]] local function register_stairsplus_alias(modname, origname, newname) diff --git a/stairsplus/conversion.lua b/stairsplus/conversion.lua index 30c31ac..13966b6 100644 --- a/stairsplus/conversion.lua +++ b/stairsplus/conversion.lua @@ -1,10 +1,8 @@ --[[ -====================================================================== -This file is part of More Blocks. +More Blocks: conversion Copyright (c) 2011-2015 Calinou and contributors. Licensed under the zlib license. See LICENSE.md for more information. -====================================================================== --]] -- Function to convert all stairs/slabs/etc nodes from diff --git a/stairsplus/init.lua b/stairsplus/init.lua index 6ef5391..ffec1b7 100644 --- a/stairsplus/init.lua +++ b/stairsplus/init.lua @@ -1,10 +1,8 @@ --[[ -====================================================================== -This file is part of More Blocks. +More Blocks: Stairs+ Copyright (c) 2011-2015 Calinou and contributors. Licensed under the zlib license. See LICENSE.md for more information. -====================================================================== --]] -- Nodes will be called :{stair,slab,panel,micro}_ diff --git a/stairsplus/microblocks.lua b/stairsplus/microblocks.lua index ccffa53..8d52c4a 100644 --- a/stairsplus/microblocks.lua +++ b/stairsplus/microblocks.lua @@ -1,10 +1,8 @@ --[[ -====================================================================== -This file is part of More Blocks. +More Blocks: microblock definitions Copyright (c) 2011-2015 Calinou and contributors. Licensed under the zlib license. See LICENSE.md for more information. -====================================================================== --]] local S = moreblocks.intllib diff --git a/stairsplus/panels.lua b/stairsplus/panels.lua index 409197a..2220fe4 100644 --- a/stairsplus/panels.lua +++ b/stairsplus/panels.lua @@ -1,10 +1,8 @@ --[[ -====================================================================== -This file is part of More Blocks. +More Blocks: panel definitions Copyright (c) 2011-2015 Calinou and contributors. Licensed under the zlib license. See LICENSE.md for more information. -====================================================================== --]] local S = moreblocks.intllib diff --git a/stairsplus/registrations.lua b/stairsplus/registrations.lua index 4db376d..7b38b13 100644 --- a/stairsplus/registrations.lua +++ b/stairsplus/registrations.lua @@ -1,10 +1,8 @@ --[[ -====================================================================== -This file is part of More Blocks. +More Blocks: registrations Copyright (c) 2011-2015 Calinou and contributors. Licensed under the zlib license. See LICENSE.md for more information. -====================================================================== --]] local default_nodes = { -- Default stairs/slabs/panels/microblocks: diff --git a/stairsplus/slabs.lua b/stairsplus/slabs.lua index f2618ac..68ba520 100644 --- a/stairsplus/slabs.lua +++ b/stairsplus/slabs.lua @@ -1,10 +1,8 @@ --[[ -====================================================================== -This file is part of More Blocks. +More Blocks: slab definitions Copyright (c) 2011-2015 Calinou and contributors. Licensed under the zlib license. See LICENSE.md for more information. -====================================================================== --]] local S = moreblocks.intllib diff --git a/stairsplus/slopes.lua b/stairsplus/slopes.lua index e973914..3a16906 100644 --- a/stairsplus/slopes.lua +++ b/stairsplus/slopes.lua @@ -1,10 +1,8 @@ --[[ -====================================================================== -This file is part of More Blocks. +More Blocks: slope definitions Copyright (c) 2011-2015 Calinou and contributors. Licensed under the zlib license. See LICENSE.md for more information. -====================================================================== --]] local S = moreblocks.intllib diff --git a/stairsplus/stairs.lua b/stairsplus/stairs.lua index d3337ea..a93cda0 100644 --- a/stairsplus/stairs.lua +++ b/stairsplus/stairs.lua @@ -1,10 +1,8 @@ --[[ -====================================================================== -This file is part of More Blocks. +More Blocks: stair definitions Copyright (c) 2011-2015 Calinou and contributors. Licensed under the zlib license. See LICENSE.md for more information. -====================================================================== --]] local S = moreblocks.intllib