From c66afa06082ab249de8be9a3e9b37d7f0abb4855 Mon Sep 17 00:00:00 2001
From: Vanessa Ezekowitz <vanessaezekowitz@gmail.com>
Date: Wed, 22 Aug 2012 08:32:20 -0400
Subject: tweak storgae tank descriptions to read "empty" on 0% full.

---
 devices.lua | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/devices.lua b/devices.lua
index 5964bf8..1991d10 100644
--- a/devices.lua
+++ b/devices.lua
@@ -330,15 +330,15 @@ minetest.register_node("pipeworks:outlet", {
 -- tank
 for fill = 0, 10 do
 	if fill == 0 then 
-		filldesc=""
+		filldesc="empty"
 		sgroups = {snappy=3, pipe=1, tankfill=fill+1}
 	else
-		filldesc=fill
+		filldesc=fill.."0% full"
 		sgroups = {snappy=3, pipe=1, tankfill=fill+1, not_in_creative_inventory=1}
 	end
 
 	minetest.register_node("pipeworks:storage_tank_"..fill.."_x", {
-		description = "Fluid Storage Tank ("..filldesc.."0% full)",
+		description = "Fluid Storage Tank ("..filldesc..")",
 		tiles = {
 			"pipeworks_storage_tank_fittings.png",
 			"pipeworks_storage_tank_fittings.png",
@@ -367,7 +367,7 @@ for fill = 0, 10 do
 	})
 	
 	minetest.register_node("pipeworks:storage_tank_"..fill.."_z", {
-		description = "Fluid Storage Tank (Z axis, "..filldesc.."0% full)... You hacker, you.",
+		description = "Fluid Storage Tank (Z axis, "..filldesc..")... You hacker, you.",
 		tiles = {
 			"pipeworks_storage_tank_fittings.png",
 			"pipeworks_storage_tank_fittings.png",
-- 
cgit v1.2.3