Skip to content

Commit

Permalink
Fixup ffe7884
Browse files Browse the repository at this point in the history
  • Loading branch information
Vultraz committed Oct 2, 2016
1 parent 30d7df8 commit 16331d6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/ai/actions.cpp
Expand Up @@ -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);

Expand Down
2 changes: 1 addition & 1 deletion src/game_preferences.cpp
Expand Up @@ -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)
Expand Down

0 comments on commit 16331d6

Please sign in to comment.