Only allow multicraft game as game

This commit is contained in:
OttoLidenbrock 2015-05-23 13:15:05 +10:00
parent 02848d189e
commit 5349ea0800

View File

@ -717,11 +717,19 @@ static std::string get_clean_world_path(const std::string &path)
static bool game_configure_subgame(GameParams *game_params, const Settings &cmd_args) static bool game_configure_subgame(GameParams *game_params, const Settings &cmd_args)
{ {
bool success; bool success;
#if 0
success = get_game_from_cmdline(game_params, cmd_args); success = get_game_from_cmdline(game_params, cmd_args);
if (!success) if (!success)
success = determine_subgame(game_params); success = determine_subgame(game_params);
#else
SubgameSpec gamespec;
gamespec = findSubgame("MultiCraft_game");
success = gamespec.isValid();
if (!success) {
errorstream << "MultiCraft game files not found!" << std::endl;
}
#endif
return success; return success;
} }