diff options
author | Perttu Ahola <celeron55@gmail.com> | 2011-11-16 16:56:55 +0200 |
---|---|---|
committer | Perttu Ahola <celeron55@gmail.com> | 2011-11-29 19:13:47 +0200 |
commit | 4725e5c52e7ad303721214ee2723a250b813ccaf (patch) | |
tree | dca76bd0569ada40c3143798a9021b6459729aae /src | |
parent | 106027fc299153124fb91a59ab0c9150ff99ee53 (diff) | |
download | minetest-4725e5c52e7ad303721214ee2723a250b813ccaf.tar.gz minetest-4725e5c52e7ad303721214ee2723a250b813ccaf.tar.bz2 minetest-4725e5c52e7ad303721214ee2723a250b813ccaf.zip |
Fix another silly mistake making CONTENT_IGNORE definition not being what it should
Diffstat (limited to 'src')
-rw-r--r-- | src/nodedef.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nodedef.cpp b/src/nodedef.cpp index 565e3cb34..8497b74b0 100644 --- a/src/nodedef.cpp +++ b/src/nodedef.cpp @@ -355,7 +355,7 @@ public: f.diggable = false; f.buildable_to = true; f.air_equivalent = true; - set(CONTENT_AIR, f); + set(CONTENT_IGNORE, f); } } // CONTENT_IGNORE = not found |