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

@ -8,11 +8,11 @@ technic.concrete_posts = {}
local S = rawget(_G, "intllib") and intllib.Getter() or function(s) return s end
for i = 0, 31 do
minetest.register_alias("technic:concrete_post" .. i,
minetest.register_alias("technic:concrete_post"..i,
"technic:concrete_post")
end
for i = 32, 63 do
minetest.register_alias("technic:concrete_post" .. i,
minetest.register_alias("technic:concrete_post"..i,
"technic:concrete_post_with_platform")
end
@ -131,7 +131,7 @@ for platform = 0, 1 do
end
end
minetest.register_node(":technic:concrete_post" .. (platform == 1 and "_with_platform" or ""), {
minetest.register_node(":technic:concrete_post"..(platform == 1 and "_with_platform" or ""), {
description = S("Concrete Post"),
tiles = { "technic_concrete_block.png" },
groups = { cracky = 1, level = 2, concrete_post = 1, not_in_creative_inventory = platform },