Skip to content
Snippets Groups Projects
Commit e5b63671 authored by Loïc Blot's avatar Loïc Blot Committed by Zeno-
Browse files

Fix missing return in Database_Dummy::deleteBlock

parent 46821f11
No related branches found
No related tags found
No related merge requests found
......@@ -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)
......
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