summaryrefslogtreecommitdiff
path: root/technic/machines/power_monitor.lua
diff options
context:
space:
mode:
authorVanessa Ezekowitz <vanessaezekowitz@gmail.com>2017-04-11 08:31:17 -0400
committerVanessa Ezekowitz <vanessaezekowitz@gmail.com>2017-04-11 08:48:16 -0400
commit54004f495137b3daaa2f882b47c36fb238335d04 (patch)
tree4303bf05f7ca8f3219398abd885c4f132301857a /technic/machines/power_monitor.lua
parent8479a8c984b20160e6e85573449f540f7e16a700 (diff)
redo top/bottom textures for supply converter
delete back/bottom texture for power monitor use "machine bottom" for bottom of force field generator add cable connection overlay, use it on various machines' bottoms/sides, as appropriate
Diffstat (limited to 'technic/machines/power_monitor.lua')
-rw-r--r--technic/machines/power_monitor.lua6
1 files changed, 4 insertions, 2 deletions
diff --git a/technic/machines/power_monitor.lua b/technic/machines/power_monitor.lua
index 8c5bed6..4d722a2 100644
--- a/technic/machines/power_monitor.lua
+++ b/technic/machines/power_monitor.lua
@@ -4,6 +4,8 @@
local S = technic.getter
+local cable_entry = "^technic_cable_connection_overlay.png"
+
minetest.register_craft({
output = "technic:power_monitor",
recipe = {
@@ -17,10 +19,10 @@ minetest.register_node("technic:power_monitor",{
description = S("Power Monitor"),
tiles = {
"technic_power_monitor_sides.png",
- "technic_power_monitor_bottom_back.png",
+ "technic_power_monitor_sides.png"..cable_entry,
"technic_power_monitor_sides.png",
"technic_power_monitor_sides.png",
- "technic_power_monitor_bottom_back.png",
+ "technic_power_monitor_sides.png"..cable_entry,
"technic_power_monitor_front.png"
},
paramtype2 = "facedir",