Made error message about missing Python support more clear

(suggested by zookeeper)
This commit is contained in:
Elias Pschernig 2006-09-04 18:32:41 +00:00
parent e08f8d1c3c
commit fece517b69

View File

@ -201,7 +201,7 @@ ai_interface* create_ai(const std::string& name, ai_interface::info& info)
return new python_ai(info);
#else
{
LOG_STREAM(err, ai) << "Python AI is not available!\n";
LOG_STREAM(err, ai) << "No Python AI support available in this Wesnoth version!\n";
return new ai2(info);
}
#endif