From: Perttu Ahola Date: Wed, 16 Nov 2011 14:52:36 +0000 (+0200) Subject: Fix silly misspelling in mapgen that made junglegrass to be CONTENT_IGNORE X-Git-Tag: 0.4.dev-20111201-0~128 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=106027fc299153124fb91a59ab0c9150ff99ee53;p=oweals%2Fminetest.git Fix silly misspelling in mapgen that made junglegrass to be CONTENT_IGNORE --- 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"); } }