summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVanessa Ezekowitz <vanessaezekowitz@gmail.com>2017-04-11 08:09:53 -0400
committerVanessa Ezekowitz <vanessaezekowitz@gmail.com>2017-04-11 08:09:53 -0400
commit0e9caf069da3982619975a05b299ae32a11b60fb (patch)
treeac573e6bc2ac84be82e0db690e6aa3af3cab1e36
parent869d0597ef9e86e7b37b5b3863307037063a62ec (diff)
add pipeworks tube overlay to top of quarry
(and get rid of obsolete inventorycube() image)
-rw-r--r--technic/machines/HV/quarry.lua16
1 files changed, 10 insertions, 6 deletions
diff --git a/technic/machines/HV/quarry.lua b/technic/machines/HV/quarry.lua
index 8d87b65..131ba42 100644
--- a/technic/machines/HV/quarry.lua
+++ b/technic/machines/HV/quarry.lua
@@ -1,6 +1,8 @@
local S = technic.getter
+local tube_entry = "^pipeworks_tube_connection_metallic.png"
+
minetest.register_craft({
recipe = {
{"technic:carbon_plate", "pipeworks:filter", "technic:composite_plate"},
@@ -207,12 +209,14 @@ end
minetest.register_node("technic:quarry", {
description = S("%s Quarry"):format("HV"),
- tiles = {"technic_carbon_steel_block.png", "technic_carbon_steel_block.png",
- "technic_carbon_steel_block.png", "technic_carbon_steel_block.png",
- "technic_carbon_steel_block.png^default_tool_mesepick.png", "technic_carbon_steel_block.png"},
- inventory_image = minetest.inventorycube("technic_carbon_steel_block.png",
- "technic_carbon_steel_block.png^default_tool_mesepick.png",
- "technic_carbon_steel_block.png"),
+ tiles = {
+ "technic_carbon_steel_block.png"..tube_entry,
+ "technic_carbon_steel_block.png",
+ "technic_carbon_steel_block.png",
+ "technic_carbon_steel_block.png",
+ "technic_carbon_steel_block.png^default_tool_mesepick.png",
+ "technic_carbon_steel_block.png"
+ },
paramtype2 = "facedir",
groups = {cracky=2, tubedevice=1, technic_machine=1, technic_hv=1},
connect_sides = {"bottom", "front", "left", "right"},