From 081e349c1ba22b663d249f64e04ef79180101470 Mon Sep 17 00:00:00 2001 From: Wuzzy Date: Thu, 27 Oct 2016 03:19:45 +0200 Subject: Tweak more string errors --- init.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/init.lua b/init.lua index 2cc6f17..cfa85ef 100644 --- a/init.lua +++ b/init.lua @@ -307,14 +307,14 @@ doc.new_category("nodes", { else datastring = datastring .. string.format(S("• Flowing range: %d"), range) .. "\n" end - datastring = datastring .. string.format(S("• Viscosity: %d", viscos)) .. "\n" + datastring = datastring .. string.format(S("• Viscosity: %d"), viscos) .. "\n" end datastring = newline2(datastring) -- Global factoids --- Direct interaction with the player ---- Damage (very important) - if data.def.damage_per_second ~= nil and data.def.damage_per_second ~= 1 then + if data.def.damage_per_second ~= nil and data.def.damage_per_second > 1 then datastring = datastring .. string.format(S("This block causes a damage of %d hit points per second."), data.def.damage_per_second) .. "\n" elseif data.def.damage_per_second == 1 then datastring = datastring .. string.format(S("This block causes a damage of %d hit point per second."), data.def.damage_per_second) .. "\n" -- cgit v1.2.3