mirror of
https://github.com/minetest/minetest.git
synced 2024-11-24 00:23:46 +01:00
Fix missing return in Database_Dummy::deleteBlock
This commit is contained in:
parent
46821f1156
commit
e5b636712c
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user