Fix silly misspelling in mapgen that made junglegrass to be CONTENT_IGNORE
authorPerttu Ahola <celeron55@gmail.com>
Wed, 16 Nov 2011 14:52:36 +0000 (16:52 +0200)
committerPerttu Ahola <celeron55@gmail.com>
Tue, 29 Nov 2011 17:13:47 +0000 (19:13 +0200)
src/mapgen.cpp

index 5e7349a3bc397142a2e4ff5afa2f30ff6a38aae0..8b2b1aa23ba9abb9e4c221ca8742c0d3ea8c35dc 100644 (file)
@@ -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");
                        }
                }