Skip to content
Snippets Groups Projects
Commit 106027fc authored by Perttu Ahola's avatar Perttu Ahola
Browse files

Fix silly misspelling in mapgen that made junglegrass to be CONTENT_IGNORE

parent d1298fe5
Branches
Tags
No related merge requests found
......@@ -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");
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment