lib/mastermind/cli.rb in mastermind-nowsiany-1.0.1 vs lib/mastermind/cli.rb in mastermind-nowsiany-1.0.2
- old
+ new
@@ -28,10 +28,10 @@
end
def process_command
case
when quit? then outstream.puts interact.print_farewell
- when instructions? then outstream.puts interact.print_instructions
+ when instructions? then outstream.puts interact.print_instructions(Mastermind.color_option_string(6))
when play? then Mastermind::PlayGame.new(instream, outstream, interact).run
else outstream.puts interact.print_invalid(command)
end
end