summaryrefslogtreecommitdiff
path: root/mesecons
diff options
context:
space:
mode:
authorAnthony Zhang <azhang9@gmail.com>2013-02-08 14:36:20 -0500
committerAnthony Zhang <azhang9@gmail.com>2013-02-08 14:36:20 -0500
commit5b5e919683c2932592a7879fba29c4f2f0289e1c (patch)
treea2ac2594e6769363e091711aa245bcbdc0a8f674 /mesecons
parent4714c908ac4a7b1d305deba0f7001cb0f1217d9c (diff)
downloadmesecons-5b5e919683c2932592a7879fba29c4f2f0289e1c.tar
mesecons-5b5e919683c2932592a7879fba29c4f2f0289e1c.tar.gz
mesecons-5b5e919683c2932592a7879fba29c4f2f0289e1c.tar.bz2
mesecons-5b5e919683c2932592a7879fba29c4f2f0289e1c.tar.xz
mesecons-5b5e919683c2932592a7879fba29c4f2f0289e1c.zip
Make load times faster by avoiding inventorycube and wielditem creation in technical blocks such as active wires and various piston orientations.
Diffstat (limited to 'mesecons')
-rw-r--r--mesecons/wires.lua4
1 files changed, 4 insertions, 0 deletions
diff --git a/mesecons/wires.lua b/mesecons/wires.lua
index d74cdb2..8fb19cb 100644
--- a/mesecons/wires.lua
+++ b/mesecons/wires.lua
@@ -128,6 +128,10 @@ for zmy=0, 1 do
description = "Wire ID:"..nodeid,
drawtype = "nodebox",
tiles = tiles_on,
+-- inventory_image = "wires_inv.png",
+-- wield_image = "wires_inv.png",
+ inventory_image = "jeija_mesecon_off.png",
+ wield_image = "jeija_mesecon_off.png",
paramtype = "light",
paramtype2 = "facedir",
sunlight_propagates = true,