Change " .. " to ".."

This commit is contained in:
Thomas--S
2017-03-29 15:19:50 +02:00
parent 73d8bdff4b
commit 51b328a247
56 changed files with 476 additions and 476 deletions

View File

@ -1,4 +1,4 @@
technic.config = technic.config or Settings(minetest.get_worldpath() .. "/technic.conf")
technic.config = technic.config or Settings(minetest.get_worldpath().."/technic.conf")
local conf_table = technic.config:to_table()

View File

@ -85,7 +85,7 @@ local function register_block(block, ingot)
})
minetest.register_craft({
output = ingot .. " 9",
output = ingot.." 9",
recipe = {
{ block }
}

View File

@ -5,14 +5,14 @@ technic.worldgen = {
gettext = rawget(_G, "intllib") and intllib.Getter() or function(s) return s end,
}
dofile(modpath .. "/config.lua")
dofile(modpath .. "/nodes.lua")
dofile(modpath .. "/oregen.lua")
dofile(modpath .. "/crafts.lua")
dofile(modpath.."/config.lua")
dofile(modpath.."/nodes.lua")
dofile(modpath.."/oregen.lua")
dofile(modpath.."/crafts.lua")
-- Rubber trees, moretrees also supplies these
if not minetest.get_modpath("moretrees") then
dofile(modpath .. "/rubber.lua")
dofile(modpath.."/rubber.lua")
else
-- older versions of technic provided rubber trees regardless
minetest.register_alias("technic:rubber_sapling", "moretrees:rubber_tree_sapling")
@ -21,6 +21,6 @@ end
-- mg suppport
if minetest.get_modpath("mg") then
dofile(modpath .. "/mg.lua")
dofile(modpath.."/mg.lua")
end