diff options
author | number Zero <silverunicorn2011@yandex.ru> | 2018-01-29 20:24:15 +0300 |
---|---|---|
committer | sfan5 <sfan5@live.de> | 2018-01-30 21:13:24 +0100 |
commit | 49b65a5593c981a4ebc587538923e267a22c2437 (patch) | |
tree | 64fc985391759af9e194e7659369fe3164513ba3 /src/content_mapblock.h | |
parent | cc400581e286747812736c0dc0383b6fca9e7e41 (diff) | |
download | minetest-49b65a5593c981a4ebc587538923e267a22c2437.tar.gz minetest-49b65a5593c981a4ebc587538923e267a22c2437.tar.bz2 minetest-49b65a5593c981a4ebc587538923e267a22c2437.zip |
Fix liquid bottoms not being rendered
Diffstat (limited to 'src/content_mapblock.h')
-rw-r--r-- | src/content_mapblock.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/content_mapblock.h b/src/content_mapblock.h index 3d196aa99..ac3bda799 100644 --- a/src/content_mapblock.h +++ b/src/content_mapblock.h @@ -92,6 +92,7 @@ public: // liquid-specific bool top_is_same_liquid; + bool draw_liquid_bottom; TileSpec tile_liquid; TileSpec tile_liquid_top; content_t c_flowing; @@ -112,6 +113,7 @@ public: f32 getCornerLevel(int i, int k); void drawLiquidSides(); void drawLiquidTop(); + void drawLiquidBottom(); // raillike-specific // name of the group that enables connecting to raillike nodes of different kind |