diff options
author | Calinou <calinou@opmbx.org> | 2014-06-27 20:14:08 +0200 |
---|---|---|
committer | Calinou <calinou@opmbx.org> | 2014-06-27 20:14:08 +0200 |
commit | e2f4cc369b98cdb13791738d4aa70605670223db (patch) | |
tree | cc852a6ebc47e5a5e6bb5573a64914047c64ba68 /init.lua | |
parent | 2b6eb1ff842229f202bfa8078a8c55eb8942d3b6 (diff) |
Code cleanup. Add tar and more stone types.
Diffstat (limited to 'init.lua')
-rw-r--r-- | init.lua | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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 |