summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVanessa Ezekowitz <vanessaezekowitz@gmail.com>2017-04-11 07:57:45 -0400
committerVanessa Ezekowitz <vanessaezekowitz@gmail.com>2017-04-11 07:57:45 -0400
commit869d0597ef9e86e7b37b5b3863307037063a62ec (patch)
treeab3974c469c2cd4aa1333db4911991c2b29f35a2
parentca86550f263814ec05231677f2a3b4343ca56d59 (diff)
add pipeworks tube entry overlay to tool workshop
-rw-r--r--technic/machines/MV/tool_workshop.lua12
1 files changed, 10 insertions, 2 deletions
diff --git a/technic/machines/MV/tool_workshop.lua b/technic/machines/MV/tool_workshop.lua
index 4076cc1..6679d1d 100644
--- a/technic/machines/MV/tool_workshop.lua
+++ b/technic/machines/MV/tool_workshop.lua
@@ -5,6 +5,8 @@ minetest.register_alias("tool_workshop", "technic:tool_workshop")
local S = technic.getter
+local tube_entry = "^pipeworks_tube_connection_wooden.png"
+
minetest.register_craft({
output = 'technic:tool_workshop',
recipe = {
@@ -83,8 +85,14 @@ end
minetest.register_node("technic:tool_workshop", {
description = S("%s Tool Workshop"):format("MV"),
paramtype2 = "facedir",
- tiles = {"technic_workshop_top.png", "technic_machine_bottom.png", "technic_workshop_side.png",
- "technic_workshop_side.png", "technic_workshop_side.png", "technic_workshop_side.png"},
+ tiles = {
+ "technic_workshop_top.png"..tube_entry,
+ "technic_machine_bottom.png"..tube_entry,
+ "technic_workshop_side.png"..tube_entry,
+ "technic_workshop_side.png"..tube_entry,
+ "technic_workshop_side.png"..tube_entry,
+ "technic_workshop_side.png"
+ },
groups = {snappy=2, choppy=2, oddly_breakable_by_hand=2,
technic_machine=1, technic_mv=1, tubedevice=1, tubedevice_receiver=1},
connect_sides = {"bottom", "back", "left", "right"},