diff options
author | Wuzzy <wuzzy2@mail.ru> | 2020-04-17 08:10:28 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-17 08:10:28 +0200 |
commit | e88719bcdd49c5bfe295dc89bc2852e0f3dc8065 (patch) | |
tree | ac46363d19cf1df3df47cc28f29f55aed29ccf4b /src/main.cpp | |
parent | 7539267d370ae9a1b547008a937bd7f57bece541 (diff) | |
download | minetest-e88719bcdd49c5bfe295dc89bc2852e0f3dc8065.tar.gz minetest-e88719bcdd49c5bfe295dc89bc2852e0f3dc8065.tar.bz2 minetest-e88719bcdd49c5bfe295dc89bc2852e0f3dc8065.zip |
Rename "subgame" to "game" in 2 error messages (#9680)
Diffstat (limited to 'src/main.cpp')
-rw-r--r-- | src/main.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main.cpp b/src/main.cpp index 82666e463..147f686ed 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -781,7 +781,7 @@ static bool determine_subgame(GameParams *game_params) gamespec = findSubgame(g_settings->get("default_game")); infostream << "Using default gameid [" << gamespec.id << "]" << std::endl; if (!gamespec.isValid()) { - errorstream << "Subgame specified in default_game [" + errorstream << "Game specified in default_game [" << g_settings->get("default_game") << "] is invalid." << std::endl; return false; @@ -806,7 +806,7 @@ static bool determine_subgame(GameParams *game_params) } if (!gamespec.isValid()) { - errorstream << "Subgame [" << gamespec.id << "] could not be found." + errorstream << "Game [" << gamespec.id << "] could not be found." << std::endl; return false; } |