summaryrefslogtreecommitdiff
path: root/util_execute_cycle.lua
diff options
context:
space:
mode:
authorFaceDeer <derksenmobile@gmail.com>2017-01-20 00:19:33 -0700
committerFaceDeer <derksenmobile@gmail.com>2017-01-20 00:19:33 -0700
commit68a83a7a8d689c72facbd24e7df87684f7701ba3 (patch)
treeaddefed06b76f6a8d6ec6bef4959d5944643b7f0 /util_execute_cycle.lua
parent12435fc2f361d11e396efcaa59732c1ab0b9e2c7 (diff)
Switch user-facing strings to use the word "block" instead of "node"
Diffstat (limited to 'util_execute_cycle.lua')
-rw-r--r--util_execute_cycle.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/util_execute_cycle.lua b/util_execute_cycle.lua
index 8972475..855c2d6 100644
--- a/util_execute_cycle.lua
+++ b/util_execute_cycle.lua
@@ -58,7 +58,7 @@ local function neighbour_test(layout, status_text)
if layout.traction * digtron.traction_factor < table.getn(layout.all) then
-- digtrons can't fly
minetest.sound_play("squeal", {gain=1.0, pos=layout.controller})
- return string.format("Digtron has %d nodes but only enough traction to move %d nodes.\n", table.getn(layout.all), layout.traction * digtron.traction_factor)
+ return string.format("Digtron has %d blocks but only enough traction to move %d blocks.\n", table.getn(layout.all), layout.traction * digtron.traction_factor)
.. status_text, 2
end