From 8bcc45bc37e9a88408f98292148eb4b7acae96cb Mon Sep 17 00:00:00 2001 From: Kittenji <41535779+ChrisFeline@users.noreply.github.com> Date: Mon, 18 Nov 2024 07:33:50 -0500 Subject: [PATCH] Update EmulatorWindow.cs Update EmulatorWindow.cs --- Windows/EmulatorWindow.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Windows/EmulatorWindow.cs b/Windows/EmulatorWindow.cs index cee3dfe..4b4876d 100644 --- a/Windows/EmulatorWindow.cs +++ b/Windows/EmulatorWindow.cs @@ -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);