diff options
author | rubenwardy <rw@rubenwardy.com> | 2022-08-19 12:31:36 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-19 12:31:36 +0100 |
commit | 2d10fa786792a27adb4097abe8c92f36cf47e6ce (patch) | |
tree | 82981f63a026156ccdee66dc8650d6eea52157df /src/content/mod_configuration.h | |
parent | 8c29c4f620a45385ac4e906c1f50d1df7d1edba9 (diff) | |
download | minetest-2d10fa786792a27adb4097abe8c92f36cf47e6ce.tar.xz |
Prevent loading a world with unresolved dependencies (#12542)
Diffstat (limited to 'src/content/mod_configuration.h')
-rw-r--r-- | src/content/mod_configuration.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/content/mod_configuration.h b/src/content/mod_configuration.h index 1595d1ca3..443530485 100644 --- a/src/content/mod_configuration.h +++ b/src/content/mod_configuration.h @@ -51,7 +51,7 @@ public: */ const std::vector<ModSpec> &getMods() const { return m_sorted_mods; } - void printUnsatisfiedModsError() const; + std::string getUnsatisfiedModsError() const; /** * Adds all mods in the given path. used for games, modpacks |