mirror of
https://github.com/minetest-mods/technic.git
synced 2025-07-01 15:50:39 +02:00
Change " .. " to ".."
This commit is contained in:
@ -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()
|
||||
|
||||
|
@ -85,7 +85,7 @@ local function register_block(block, ingot)
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = ingot .. " 9",
|
||||
output = ingot.." 9",
|
||||
recipe = {
|
||||
{ block }
|
||||
}
|
||||
|
@ -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
|
||||
|
||||
|
Reference in New Issue
Block a user