doing a course in Object Oriented Programming
was doing ok, but am stuck in week 2, where I am supposed to enter something in output (a direction in the game i am creating) and it just gets stuck; will not let me input anything and running man is resolutely grey:
while True:
print("\n")
current_room.get_details()
command = input("> ")
current_room = current_room.move(command)
the ‘get_details’ and ‘current_room’ are in another file … up until then it has worked ok
it’s printing the room, describing it and describing its location - but won’t actually allow me to type in the output to tell it where to go next
does that make sense? the course seems to have finished (even though i upgraded) a while ago, so I’m getting zero feedback!
any help appreciated