summaryrefslogtreecommitdiff
path: root/node_storage.lua
diff options
context:
space:
mode:
authorFaceDeer <derksenmobile@gmail.com>2017-01-10 22:59:33 -0700
committerFaceDeer <derksenmobile@gmail.com>2017-01-10 22:59:33 -0700
commit8350469d16878bd019cfa515f99ad1f6c6536083 (patch)
tree8c21b2b47390739523d5e59e34c55ec6d13662e0 /node_storage.lua
parent435f21458ccf4d91fd5ec179bdbc5d1aa6d2945c (diff)
parente682130266799f7b320a9b56964963bb348cc1cb (diff)
Merge remote-tracking branch 'refs/remotes/origin/master' into layout-refactor
Diffstat (limited to 'node_storage.lua')
-rw-r--r--node_storage.lua6
1 files changed, 3 insertions, 3 deletions
diff --git a/node_storage.lua b/node_storage.lua
index e24fa98..3362258 100644
--- a/node_storage.lua
+++ b/node_storage.lua
@@ -8,7 +8,7 @@ minetest.register_node("digtron:inventory",
sounds = digtron.metal_sounds,
paramtype2= "facedir",
is_ground_content = false,
- tiles = {"digtron_inventory.png"},
+ tiles = {"digtron_plate.png^digtron_inventory.png"},
on_construct = function(pos)
local meta = minetest.get_meta(pos)
@@ -67,7 +67,7 @@ minetest.register_node("digtron:fuelstore",
sounds = digtron.metal_sounds,
paramtype2= "facedir",
is_ground_content = false,
- tiles = {"digtron_fuelstore.png"},
+ tiles = {"digtron_plate.png^digtron_fuelstore.png"},
on_construct = function(pos)
local meta = minetest.get_meta(pos)
@@ -146,7 +146,7 @@ minetest.register_node("digtron:combined_storage",
sounds = digtron.metal_sounds,
paramtype2= "facedir",
is_ground_content = false,
- tiles = {"digtron_combined_storage.png"},
+ tiles = {"digtron_plate.png^digtron_combined_storage.png"},
on_construct = function(pos)
local meta = minetest.get_meta(pos)