diff options
author | Vanessa Ezekowitz <vanessaezekowitz@gmail.com> | 2013-01-05 21:14:09 -0500 |
---|---|---|
committer | Vanessa Ezekowitz <vanessaezekowitz@gmail.com> | 2013-01-05 21:14:09 -0500 |
commit | 14102d7c3ad8f7e4aef271294a74c28e7e851bc2 (patch) | |
tree | 19f6e2171213d29273202b00acd6b5970db7a83f /devices.lua | |
parent | 0a1f90c391dcc4907665e1211c666310d36a740b (diff) |
made storage tanks connect from top/bottom, made storage tank and pipe
textures use the ^ combine operator so they can show the actual liquid going
through the pipes/tanks.
Diffstat (limited to 'devices.lua')
-rw-r--r-- | devices.lua | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/devices.lua b/devices.lua index 577979e..9d6a6d8 100644 --- a/devices.lua +++ b/devices.lua @@ -291,7 +291,7 @@ for fill = 0, 10 do "pipeworks_storage_tank_back.png", "pipeworks_storage_tank_back.png", "pipeworks_storage_tank_back.png", - "pipeworks_storage_tank_front_"..fill..".png" + pipeworks_liquid_texture.."^pipeworks_storage_tank_front_"..fill..".png" }, paramtype = "light", paramtype2 = "facedir", @@ -317,11 +317,11 @@ for fill = 0, 10 do description = "Fluid Storage Tank ("..filldesc..")", tiles = { "pipeworks_storage_tank_fittings.png", + "pipeworks_storage_tank_fittings.png", "pipeworks_storage_tank_back.png", "pipeworks_storage_tank_back.png", "pipeworks_storage_tank_back.png", - "pipeworks_storage_tank_back.png", - "pipeworks_storage_tank_front_"..fill..".png" + pipeworks_liquid_texture.."^pipeworks_storage_tank_front_"..fill..".png" }, paramtype = "light", paramtype2 = "facedir", |