summaryrefslogtreecommitdiff
path: root/src/mapnode.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mapnode.h')
-rw-r--r--src/mapnode.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/mapnode.h b/src/mapnode.h
index 659d585b5..c61732922 100644
--- a/src/mapnode.h
+++ b/src/mapnode.h
@@ -155,12 +155,16 @@ inline bool content_buildable_to(u8 m)
*/
inline bool is_ground_content(u8 m)
{
- return (m != CONTENT_WATER
+ return (
+ m != CONTENT_IGNORE
+ && m != CONTENT_AIR
+ && m != CONTENT_WATER
&& m != CONTENT_TORCH
&& m != CONTENT_TREE
&& m != CONTENT_LEAVES
&& m != CONTENT_OCEAN
- && m != CONTENT_CLOUD);
+ && m != CONTENT_CLOUD
+ );
}
inline bool is_mineral(u8 c)