Skip to content

Commit

Permalink
Prep game.rb for lab delivery
Browse files Browse the repository at this point in the history
  • Loading branch information
mgarbacz committed Aug 4, 2014
1 parent 8e39b74 commit ee99bba
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions games/game.rb
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ def start

if action == "1"
puts "You sit down at the bar."

elsif action == "2"
puts "You sit down at an empty corner table."

Expand All @@ -23,17 +23,20 @@ def bar_sit
puts "1. Order a cup of coffee"
puts "2. Order a glass of water"



if action == "1"
puts "You order a cup of coffee."
look_around()
#look_around()
elsif action == "2"
puts "You order a glass of water."
look_around()
#look_around()
else
puts "Invalid option."
bar_sit()
end
end

def table_sit
end

end

0 comments on commit ee99bba

Please sign in to comment.