Skip to content

Commit

Permalink
Update EmulatorWindow.cs
Browse files Browse the repository at this point in the history
Update EmulatorWindow.cs
  • Loading branch information
ChrisFeline committed Nov 18, 2024
1 parent 9e4de43 commit 8bcc45b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Windows/EmulatorWindow.cs
Original file line number Diff line number Diff line change
Expand Up @@ -376,8 +376,8 @@ private void buttonStep_Click(object sender, EventArgs e) {
if (Operation.RoundType == ToNRoundType.Eight_Pages) {
ToNGameState.SetPageCount(ToNGameState.PageCount + 1);
if (ToNGameState.PageCount == 1) OnRoundSetKillers(true);
if (ToNGameState.PageCount == 8) buttonStepEndRound.PerformClick();
buttonStepReveal.Text = "Find Page " + (ToNGameState.PageCount + 1);
else if (ToNGameState.PageCount == 8) buttonStepReveal.Enabled = false;
else buttonStepReveal.Text = "Find Page " + (ToNGameState.PageCount + 1);
} else {
buttonStepReveal.Enabled = false;
OnRoundSetKillers(true);
Expand Down

0 comments on commit 8bcc45b

Please sign in to comment.