Skip to content

Commit

Permalink
Fix missing return in Database_Dummy::deleteBlock
Browse files Browse the repository at this point in the history
  • Loading branch information
nerzhul authored and Zeno- committed Jan 16, 2015
1 parent 46821f1 commit e5b6367
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/database-dummy.cpp
Expand Up @@ -62,6 +62,7 @@ std::string Database_Dummy::loadBlock(v3s16 blockpos)
bool Database_Dummy::deleteBlock(v3s16 blockpos)
{
m_database.erase(getBlockAsInteger(blockpos));
return true;
}

void Database_Dummy::listAllLoadableBlocks(std::list<v3s16> &dst)
Expand Down

0 comments on commit e5b6367

Please sign in to comment.