Skip to content

Commit

Permalink
DevTest: Use 4dir for chests
Browse files Browse the repository at this point in the history
  • Loading branch information
Wuzzy2 authored and sfan5 committed Oct 23, 2022
1 parent 9f11753 commit 11d1a9c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion games/devtest/mods/chest/chest.lua
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ minetest.register_node("chest:chest", {
tiles ={"chest_chest.png^[sheet:2x2:0,0", "chest_chest.png^[sheet:2x2:0,0",
"chest_chest.png^[sheet:2x2:1,0", "chest_chest.png^[sheet:2x2:1,0",
"chest_chest.png^[sheet:2x2:1,0", "chest_chest.png^[sheet:2x2:0,1"},
paramtype2 = "facedir",
paramtype2 = "4dir",
groups = {dig_immediate=2,choppy=3,meta_is_privatizable=1},
is_ground_content = false,
on_construct = function(pos)
Expand Down
2 changes: 1 addition & 1 deletion games/devtest/mods/chest/detached.lua
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ minetest.register_node("chest:detached_chest", {
tiles = {"chest_detached_chest.png^[sheet:2x2:0,0", "chest_detached_chest.png^[sheet:2x2:0,0",
"chest_detached_chest.png^[sheet:2x2:1,0", "chest_detached_chest.png^[sheet:2x2:1,0",
"chest_detached_chest.png^[sheet:2x2:1,0", "chest_detached_chest.png^[sheet:2x2:0,1"},
paramtype2 = "facedir",
paramtype2 = "4dir",
groups = {dig_immediate=2,choppy=3,meta_is_privatizable=1},
is_ground_content = false,
on_construct = function(pos)
Expand Down
2 changes: 1 addition & 1 deletion games/devtest/mods/chest_of_everything/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ minetest.register_node("chest_of_everything:chest", {
tiles ={"chest_of_everything_chest.png^[sheet:2x2:0,0", "chest_of_everything_chest.png^[sheet:2x2:0,0",
"chest_of_everything_chest.png^[sheet:2x2:1,0", "chest_of_everything_chest.png^[sheet:2x2:1,0",
"chest_of_everything_chest.png^[sheet:2x2:1,0", "chest_of_everything_chest.png^[sheet:2x2:0,1"},
paramtype2 = "facedir",
paramtype2 = "4dir",
groups = {dig_immediate=2,choppy=3},
is_ground_content = false,
on_construct = function(pos)
Expand Down

0 comments on commit 11d1a9c

Please sign in to comment.