Code cleanup. Add tar and more stone types.

This commit is contained in:
Calinou
2014-06-27 20:14:08 +02:00
parent 2b6eb1ff84
commit e2f4cc369b
14 changed files with 107 additions and 119 deletions

View File

@ -1,15 +1,15 @@
--[[
-- More Blocks (moreblocks) by Calinou
-- Licensed under the zlib license for code and CC BY-SA 3.0 for textures, see LICENSE.txt for info.
-- Licensed under the zlib/ license for code and CC BY-SA 3.0 for textures, see LICENSE.txt for info.
--]]
moreblocks = {}
-- Load translation library if intllib is installed
local S = nil
local S -- Load translation library if intllib is installed:
if intllib then
S = intllib.Getter()
S = intllib.Getter(minetest.get_current_modname())
else
S = function(s) return s end
end