Skip to content

Commit

Permalink
Removed wrong previous patch
Browse files Browse the repository at this point in the history
  • Loading branch information
Fulgurance committed Jan 2, 2025
1 parent 289f9c4 commit ed10c17
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ISM/CommandLine.cr
Original file line number Diff line number Diff line change
Expand Up @@ -1756,9 +1756,9 @@ module ISM
loop do
userInput = gets

if userInput.to_s.downcase == ISM::Default::CommandLine::YesReplyOption.downcase || userInput.to_s.downcase == ISM::Default::CommandLine::YesReplyOption[0].downcase
if userInput == ISM::Default::CommandLine::YesReplyOption.downcase
return true
elsif userInput.to_s.downcase == ISM::Default::CommandLine::NoReplyOption.downcase || userInput.to_s.downcase == ISM::Default::CommandLine::NoReplyOption[0].downcase
elsif userInput == ISM::Default::CommandLine::NoReplyOption.downcase
return false
else
return false
Expand Down

0 comments on commit ed10c17

Please sign in to comment.