diff options
author | est31 <MTest31@outlook.com> | 2015-01-24 17:59:54 +0100 |
---|---|---|
committer | est31 <MTest31@outlook.com> | 2015-01-24 21:23:26 +0100 |
commit | f250e1632fbd4ba9d8427e1de06fd1d68580593a (patch) | |
tree | b43ab11c97d67402b594d06d5f6d69c36f72ea01 | |
parent | 86dd5852aa860a8bca10420550a8dd3f2167cde2 (diff) |
Give quarries a better inventory icon
Current inventory icon is indistinguishable from carbon steel block. The side with the pick was hidden. This commit moves that part to the front.
-rw-r--r-- | technic/machines/HV/quarry.lua | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/technic/machines/HV/quarry.lua b/technic/machines/HV/quarry.lua index ed16042..60805cc 100644 --- a/technic/machines/HV/quarry.lua +++ b/technic/machines/HV/quarry.lua @@ -209,6 +209,9 @@ minetest.register_node("technic:quarry", { 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"), paramtype2 = "facedir", groups = {cracky=2, tubedevice=1, technic_machine = 1}, tube = { |