From fe2f8d1748cdca312106fb1e37213468fec04afa Mon Sep 17 00:00:00 2001 From: Sleeping Crows Date: Tue, 5 Dec 2023 00:43:25 -0500 Subject: [PATCH] Bugfix: Resetting setting iteration count wrong. --- Furaffinity/fa.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Furaffinity/fa.sh b/Furaffinity/fa.sh index 578bca9..e5746b7 100755 --- a/Furaffinity/fa.sh +++ b/Furaffinity/fa.sh @@ -147,9 +147,9 @@ done echo "viewed $counts pages so far." read -r -p "😼 Do you want to go another $rep? (Y/n): " answer case $answer in - [Yy]* ) echo "Going for another round!"; i=0;; + [Yy]* ) echo "Going for another round!"; i=1;; [Nn]* ) ((repeat--)); echo "Ok, bye!";; - * ) echo "Going for another round!"; i=0;; + * ) echo "Going for another round!"; i=1;; esac done exit