forked from MTSR/moreblocks
Fix circular saw infotext message on initial placement
The concatenation operator was mistakenly written as `.` instead of `..`.
This commit is contained in:
parent
0fea5ee25a
commit
1d054ec431
@ -140,9 +140,7 @@ function circular_saw:reset(pos)
|
|||||||
inv:set_list("output", {})
|
inv:set_list("output", {})
|
||||||
|
|
||||||
meta:set_int("anz", 0)
|
meta:set_int("anz", 0)
|
||||||
meta:set_string("infotext",
|
meta:set_string("infotext", S("Circular Saw is empty") .. owned_by)
|
||||||
S("Circular Saw is empty") .. owned_by
|
|
||||||
)
|
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
||||||
@ -452,9 +450,7 @@ minetest.register_node("moreblocks:circular_saw", {
|
|||||||
end
|
end
|
||||||
|
|
||||||
meta:set_string("owner", owner)
|
meta:set_string("owner", owner)
|
||||||
meta:set_string("infotext",
|
meta:set_string("infotext", S("Circular Saw is empty") .. owned_by)
|
||||||
S("Circular Saw is empty") . owned_by
|
|
||||||
)
|
|
||||||
end,
|
end,
|
||||||
|
|
||||||
-- The amount of items offered per shape can be configured:
|
-- The amount of items offered per shape can be configured:
|
||||||
|
Loading…
Reference in New Issue
Block a user