This commit is contained in:
Charles Dang 2016-10-03 02:56:49 +11:00
parent 30d7df8094
commit 16331d6bb0
2 changed files with 2 additions and 2 deletions

View file

@ -474,7 +474,7 @@ void move_result::do_execute()
/*std::vector<map_location> steps*/ route_->steps,
/*::actions::undo_list* undo_stack*/ nullptr,
/*bool continue_move*/ true, ///@todo 1.9 set to false after implemeting interrupt awareness
/*bool show_move*/ preferences::skip_ai_moves(),
/*bool show_move*/ !preferences::skip_ai_moves(),
/*bool* interrupted*/ nullptr,
/*::actions::move_unit_spectator* move_spectator*/ &move_spectator);

View file

@ -903,7 +903,7 @@ void set_modifications(const std::vector<std::string>& value, bool mp)
bool skip_ai_moves()
{
return preferences::get("skip_ai_moves", true);
return preferences::get("skip_ai_moves", false);
}
void set_skip_ai_moves(bool value)