summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorPerttu Ahola <celeron55@gmail.com>2011-11-16 16:52:36 +0200
committerPerttu Ahola <celeron55@gmail.com>2011-11-29 19:13:47 +0200
commit106027fc299153124fb91a59ab0c9150ff99ee53 (patch)
tree3be9f37b465ea067cf3c60055c175f839746d84b /src
parentd1298fe5e78cf70000d244a8b57f5cc5d7eb6aeb (diff)
downloadminetest-106027fc299153124fb91a59ab0c9150ff99ee53.tar.gz
minetest-106027fc299153124fb91a59ab0c9150ff99ee53.tar.bz2
minetest-106027fc299153124fb91a59ab0c9150ff99ee53.zip
Fix silly misspelling in mapgen that made junglegrass to be CONTENT_IGNORE
Diffstat (limited to 'src')
-rw-r--r--src/mapgen.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mapgen.cpp b/src/mapgen.cpp
index 5e7349a3b..8b2b1aa23 100644
--- a/src/mapgen.cpp
+++ b/src/mapgen.cpp
@@ -2222,7 +2222,7 @@ void make_block(BlockMakeData *data)
vmanip.m_data[vmanip.m_area.index(p)] = LEGN(ndef, "CONTENT_MUD");
p.Y++;*/
if(vmanip.m_area.contains(p))
- vmanip.m_data[vmanip.m_area.index(p)] = LEGN(ndef, "CONTENT_JUNGLEGNRASS");
+ vmanip.m_data[vmanip.m_area.index(p)] = LEGN(ndef, "CONTENT_JUNGLEGRASS");
}
}