diff options
author | FaceDeer <derksenmobile@gmail.com> | 2017-01-20 00:19:33 -0700 |
---|---|---|
committer | FaceDeer <derksenmobile@gmail.com> | 2017-01-20 00:19:33 -0700 |
commit | 68a83a7a8d689c72facbd24e7df87684f7701ba3 (patch) | |
tree | addefed06b76f6a8d6ec6bef4959d5944643b7f0 /node_builders.lua | |
parent | 12435fc2f361d11e396efcaa59732c1ab0b9e2c7 (diff) |
Switch user-facing strings to use the word "block" instead of "node"
Diffstat (limited to 'node_builders.lua')
-rw-r--r-- | node_builders.lua | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/node_builders.lua b/node_builders.lua index 1d2e89c..54bcd94 100644 --- a/node_builders.lua +++ b/node_builders.lua @@ -49,18 +49,18 @@ minetest.register_node("digtron:builder", { default.gui_bg_img .. default.gui_slots .. "list[current_name;main;0.5,0;1,1;]" .. --- "tooltip[main;Builder will build the type of node in this slot. Note that only one item needs to be placed here, to 'program' it. The builder will draw construction materials from the central inventory when building.]" .. - "label[0.5,0.8;Node to build]" .. +-- "tooltip[main;Builder will build the type of block in this slot. Note that only one item needs to be placed here, to 'program' it. The builder will draw construction materials from the central inventory when building.]" .. + "label[0.5,0.8;Block to build]" .. "field[2.5,0.8;1,0.1;period;Periodicity;${period}]" .. "tooltip[period;Builder will build once every n steps. These steps are globally aligned, so all builders with the same period and offset will build on the same location.]" .. "field[3.5,0.8;1,0.1;offset;Offset;${offset}]" .. - "tooltip[offset;Offsets the start of periodicity counting by this amount. For example, a builder with period 2 and offset 0 builds every even-numbered node and one with period 2 and offset 1 builds every odd-numbered node.]" .. + "tooltip[offset;Offsets the start of periodicity counting by this amount. For example, a builder with period 2 and offset 0 builds every even-numbered block and one with period 2 and offset 1 builds every odd-numbered block.]" .. "button_exit[4.2,0.5;1,0.1;set;Save &\nShow]" .. "tooltip[set;Saves settings]" .. "field[5.7,0.8;1,0.1;build_facing;Facing;${build_facing}]" .. - "tooltip[build_facing;Value from 0-23. Not all node types make use of this. Use the 'Read & Save' button to copy the facing of the node currently in the builder output location]" .. + "tooltip[build_facing;Value from 0-23. Not all block types make use of this. Use the 'Read & Save' button to copy the facing of the block currently in the builder output location]" .. "button_exit[6.4,0.5;1,0.1;read;Read &\nSave]" .. - "tooltip[read;Reads the facing of the node currently in the build location, then saves all settings]" .. + "tooltip[read;Reads the facing of the block currently in the build location, then saves all settings]" .. "list[current_player;main;0,1.3;8,1;]" .. "list[current_player;main;0,1.3;8,1;]" .. default.get_hotbar_bg(0,1.3) .. |