diff options
author | Jude Melton-Houghton <jwmhjwmh@gmail.com> | 2022-11-23 17:25:34 -0500 |
---|---|---|
committer | Jude Melton-Houghton <jwmhjwmh@gmail.com> | 2022-11-24 17:58:25 -0500 |
commit | 7c21347a40ede4427d9a9ba69c768ffb9c41d264 (patch) | |
tree | d7e06211ea1d6f04038d3a9b2558cf5203ed8076 /src/client/client.h | |
parent | 8817af07fb72fd78fb753fe5d069d0a65a79742f (diff) | |
download | minetest-7c21347a40ede4427d9a9ba69c768ffb9c41d264.tar.xz |
Rename "mod metadata" to "mod storage" everywhere
Diffstat (limited to 'src/client/client.h')
-rw-r--r-- | src/client/client.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/client.h b/src/client/client.h index 4342a0087..52ca87625 100644 --- a/src/client/client.h +++ b/src/client/client.h @@ -381,7 +381,7 @@ public: { return checkPrivilege(priv); } virtual scene::IAnimatedMesh* getMesh(const std::string &filename, bool cache = false); const std::string* getModFile(std::string filename); - ModMetadataDatabase *getModStorageDatabase() override { return m_mod_storage_database; } + ModStorageDatabase *getModStorageDatabase() override { return m_mod_storage_database; } // Migrates away old files-based mod storage if necessary void migrateModStorage(); @@ -590,7 +590,7 @@ private: // Client modding ClientScripting *m_script = nullptr; - ModMetadataDatabase *m_mod_storage_database = nullptr; + ModStorageDatabase *m_mod_storage_database = nullptr; float m_mod_storage_save_timer = 10.0f; std::vector<ModSpec> m_mods; StringMap m_mod_vfs; |