-
Notifications
You must be signed in to change notification settings - Fork 1
Open
Labels
Description
Something apparently changed as tool just reports "MagicPen copying data for group text failed".
Fix it and keep backward compatibility if possible in some simple way.
Implementation is just simply copying meta field "text":
metatool/magic_pen/nodes/textline.lua
Lines 12 to 18 in 65eb904
| function definition:copy(node, pos, player) | |
| local meta = minetest.get_meta(pos) | |
| return { | |
| description = ("Textline at %s"):format(minetest.pos_to_string(pos)), | |
| content = meta:get("text"), | |
| } | |
| end |