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

Fixed small error in mapnode.cpp (didn't cause any harm though)

parent fe855e00
No related branches found
No related tags found
No related merge requests found
......@@ -142,8 +142,10 @@ void init_mapnode()
Initially set every block to be shown as an unknown block.
Don't touch CONTENT_IGNORE or CONTENT_AIR.
*/
for(u16 i=0; i<=253; i++)
for(u16 i=0; i<256; i++)
{
if(i == CONTENT_IGNORE || i == CONTENT_AIR)
continue;
ContentFeatures *f = &g_content_features[i];
f->setAllTextures("unknown_block.png");
f->dug_item = std::string("MaterialItem ")+itos(i)+" 1";
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment