summaryrefslogtreecommitdiff
path: root/devices.lua
diff options
context:
space:
mode:
authorVanessaE <vanessaezekowitz@gmail.com>2013-03-18 20:14:27 -0700
committerVanessaE <vanessaezekowitz@gmail.com>2013-03-18 20:14:27 -0700
commit519a99f44e4b6bad4c77088f55b667b12939868e (patch)
treef02b0d11f00980c151a74c1f382db915408e26e4 /devices.lua
parent26422fec7a7f84833072f151bb0cf39721447245 (diff)
parent6889ab0419bdb2bc9bde4fd5b396f1ef84a5f969 (diff)
downloadpipeworks-519a99f44e4b6bad4c77088f55b667b12939868e.tar
pipeworks-519a99f44e4b6bad4c77088f55b667b12939868e.tar.gz
pipeworks-519a99f44e4b6bad4c77088f55b667b12939868e.tar.bz2
pipeworks-519a99f44e4b6bad4c77088f55b667b12939868e.tar.xz
pipeworks-519a99f44e4b6bad4c77088f55b667b12939868e.zip
Merge pull request #20 from Uberi/master
Add inventory images to speed up load times.
Diffstat (limited to 'devices.lua')
-rw-r--r--devices.lua4
1 files changed, 4 insertions, 0 deletions
diff --git a/devices.lua b/devices.lua
index faa1b86..4c8072c 100644
--- a/devices.lua
+++ b/devices.lua
@@ -329,9 +329,11 @@ for fill = 0, 10 do
if fill == 0 then
filldesc="empty"
sgroups = {snappy=3, pipe=1, tankfill=fill+1}
+ image = nil
else
filldesc=fill.."0% full"
sgroups = {snappy=3, pipe=1, tankfill=fill+1, not_in_creative_inventory=1}
+ image = "pipeworks_storage_tank_fittings.png"
end
minetest.register_node("pipeworks:expansion_tank_"..fill, {
@@ -344,6 +346,7 @@ for fill = 0, 10 do
"pipeworks_storage_tank_back.png",
pipeworks_liquid_texture.."^pipeworks_storage_tank_front_"..fill..".png"
},
+ inventory_image = image,
paramtype = "light",
paramtype2 = "facedir",
groups = {snappy=3, pipe=1, tankfill=fill+1, not_in_creative_inventory=1},
@@ -374,6 +377,7 @@ for fill = 0, 10 do
"pipeworks_storage_tank_back.png",
pipeworks_liquid_texture.."^pipeworks_storage_tank_front_"..fill..".png"
},
+ inventory_image = image,
paramtype = "light",
paramtype2 = "facedir",
groups = sgroups,