diff options
author | Paramat <paramat@users.noreply.github.com> | 2018-10-30 06:41:15 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-30 06:41:15 +0000 |
commit | 34a5960671d2bae76b3ad2080397ffae694a4209 (patch) | |
tree | 8347216daf92bb67c73e4931945e93265ce46db4 /src/content_mapblock.cpp | |
parent | 88ba1c70d33cfeb09b73e46d720099083925c805 (diff) | |
download | minetest-34a5960671d2bae76b3ad2080397ffae694a4209.tar.gz minetest-34a5960671d2bae76b3ad2080397ffae694a4209.tar.bz2 minetest-34a5960671d2bae76b3ad2080397ffae694a4209.zip |
Framed glasslike: Fix and document top/base textures feature (#7824)
Diffstat (limited to 'src/content_mapblock.cpp')
-rw-r--r-- | src/content_mapblock.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/content_mapblock.cpp b/src/content_mapblock.cpp index 0259ca3af..7b8231869 100644 --- a/src/content_mapblock.cpp +++ b/src/content_mapblock.cpp @@ -702,7 +702,7 @@ void MapblockMeshGenerator::drawGlasslikeFramedNode() tiles[2].layers[0].texture && tiles[3].layers[0].texture) { glass_tiles[0] = tiles[4]; - glass_tiles[1] = tiles[0]; + glass_tiles[1] = tiles[2]; glass_tiles[2] = tiles[4]; glass_tiles[3] = tiles[4]; glass_tiles[4] = tiles[3]; |