summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkpoppel <poulsen.kim@gmail.com>2013-07-02 22:45:08 +0200
committerkpoppel <poulsen.kim@gmail.com>2013-07-02 22:45:08 +0200
commitc7207a9cba3293935811baf107be2edbead02943 (patch)
treef476968315b4909a22272d50c5c35068000e869a
parent7201aeb6ba1b63afd95b23b44843acb6985f0ad4 (diff)
Silenced the power radiator.
-rw-r--r--technic/power_radiator.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/technic/power_radiator.lua b/technic/power_radiator.lua
index 383bf87..9a4c84a 100644
--- a/technic/power_radiator.lua
+++ b/technic/power_radiator.lua
@@ -178,7 +178,7 @@ minetest.register_abm(
elseif meta1:get_string("has_supply") == pos.x..pos.y..pos.z then
-- The appliance has power from this node. Spend power if it is on.
used_charge = math.floor(used_charge+meta1:get_int("EU_charge")/eff_factor)
- print("My Lamp ("..pos.x..","..pos.y..","..pos.z..") Used:"..used_charge)
+ --print("My Lamp ("..pos.x..","..pos.y..","..pos.z..") Used:"..used_charge)
end
meta:set_string("infotext", "Power Radiator is powered ("..math.floor(used_charge/max_charge*100).."% of maximum power)");
if used_charge == 0 then