summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorWuzzy <wuzzy2@mail.ru>2020-04-17 08:10:28 +0200
committerGitHub <noreply@github.com>2020-04-17 08:10:28 +0200
commite88719bcdd49c5bfe295dc89bc2852e0f3dc8065 (patch)
treeac46363d19cf1df3df47cc28f29f55aed29ccf4b /src
parent7539267d370ae9a1b547008a937bd7f57bece541 (diff)
downloadminetest-e88719bcdd49c5bfe295dc89bc2852e0f3dc8065.tar.gz
minetest-e88719bcdd49c5bfe295dc89bc2852e0f3dc8065.tar.bz2
minetest-e88719bcdd49c5bfe295dc89bc2852e0f3dc8065.zip
Rename "subgame" to "game" in 2 error messages (#9680)
Diffstat (limited to 'src')
-rw-r--r--src/main.cpp4
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;
}