Skip to content

Commit

Permalink
Healing: Don't heal on side 1 turn 1.
Browse files Browse the repository at this point in the history
Discussed on #3562 (comment)
  • Loading branch information
jostephd committed Oct 21, 2018
1 parent 6df83fe commit 024f3e1
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/play_controller.cpp
Expand Up @@ -486,7 +486,9 @@ void play_controller::do_init_side()
current_team().spend_gold(expense);
}
}
calculate_healing(current_side(), !is_skipping_replay());
if (turn() > 1 || current_side() > 1) {
calculate_healing(current_side(), !is_skipping_replay());
}

// Prepare the undo stack.
undo_stack().new_side_turn(current_side());
Expand Down

0 comments on commit 024f3e1

Please sign in to comment.