Disable formula AI in multiplayer

This commit is contained in:
Bartek Waresiak 2009-02-28 18:22:50 +00:00
parent f5d47584ab
commit af5ef5ecc2

View file

@ -3071,8 +3071,12 @@ private:
void menu_handler::ai_formula()
{
std::cerr << "showing ai formula...\n";
textbox_info_.show(gui::TEXTBOX_AI,sgettext("prompt^Command:"), "", false, *gui_);
if (network::nconnections() == 0) {
std::cerr << "showing ai formula...\n";
textbox_info_.show(gui::TEXTBOX_AI,sgettext("prompt^Command:"), "", false, *gui_);
} else {
add_chat_message(time(NULL), _("ai"), 0, "Formula commandline not available in network games");
}
}
void menu_handler::clear_messages()