mirror of
https://github.com/minetest/minetest.git
synced 2024-11-04 14:53:45 +01:00
Rename "subgame" to "game" in 2 error messages (#9680)
This commit is contained in:
parent
7539267d37
commit
e88719bcdd
@ -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;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user